//********************************************************************************
// PromoteTW(tweet$,hashtag$)
//********************************************************************************
// A function to post a tweet on twitter
//********************************************************************************
Function PromoteTW(tweet$,hashtag$)
// Local variables
tweet$="https://twitter.com/intent/tweet?text="+tweet$+" &hashtags="+hashtag$+"&original_referer=https://dev.twitter.com/docs/intents#tweet-intent"
// Opens a web page with twitter
OpenBrowser(tweet$)
EndFunction
Sorry for the delay, I was sure I'd already posted this somewhere on the forum but couldn't find it to link it. (That and I forgot to tick the "receive email" box on this thread :/ lol)
This is the function I use to post to twitter. There is no way of telling if it was successful or not tho I am afraid.