I am using this method which comes with the zipped file to update my
status:
public function setStatus(statusString:String):void
{
if (statusString.length <= 140)
{
var request : URLRequest = twitterRequest ("http://twitter.com/
statuses/update.xml");
request.method = "POST"
var variables : URLVariables = new URLVariables ();
variables.status = statusString;
request.data = variables;
try
{
_setStatusLoader.load (request);
} catch (error : Error)
{
trace ("Unable to set status");
}
} else
{
trace ("STATUS NOT SET: status limited to 140 characters");
}
}
Anything I can change to set the source here?
Cheers
--
Alex Payne
http://twitter.com/al3x
On Oct 25, 8:43 am, "Alex Payne" <a...@al3x.net> wrote:
> Please email me off-list and I'll set you up with a source link. Thanks.
>