Re: Twitter AS3 API - Connection Problem

2008-10-28 Thread Michael
Take a look at Twitter's crossdomain.xml (http://twitter.com/ crossdomain.xml). It was changed earlier this year so that requests coming from pages on other domains are denied. Your code could run fine inside an AIR app, otherwise you will need to use server proxy. Alternatively, use the search AP

Re: Twitter AS3 API - Connection Problem

2008-10-27 Thread Shahid Faiz
Hi, Flash player has a security model due to which your flash movie can't connect to any site other than from which it is loaded. For this, you will have to make few configurations on the site to which flash movie wants to connect. flash player security topics will help you. - shahid On Sun, Oc

Twitter AS3 API - Connection Problem

2008-10-26 Thread [EMAIL PROTECTED]
Hi guys, import twitter.api.Twitter; import twitter.api.events.TwitterEvent var twitter:Twitter = new Twitter(); twitter.loadUserTimeline("flasherblog"); twitter.addEventListener("onUserTimelineResult",return_); function return_(e:TwitterEvent) { twit_txt.text = e.data[0].text } This m