What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Auto Refresh? twitter

Auto Refresh? twitter
Author: Message:
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
32 / Male / Flag
Joined: Apr 2004
RE: Auto Refresh? twitter
The reason why it didn't work is quite simple in fact: the request object isn't defined in the context of processReadyStateChange.
You could've fixed this by defining the processReadyStateChange function inside your getData function, like this:
code:
function getData()
{
   var TYPE = "GET"; //use GET to request information and POST to send information
   var URI = "http://twitter.com/statuses/user_timeline/__XD__.json";  //whatever server and or form you want to communicate with
   var ASYNC = true;  //if false script will pause until the request is complete
   request.open(TYPE, URI, ASYNC);
   request.onreadystatechange = processReadyStateChange;
   request.send(null);

   function processReadyStateChange()
   {
      Messenger.MyPersonalMessage = "Twitter: Loading...";
      if(request.readyState == 4 && request.status == 200)
      {
       json = eval( request.responseText )
       Messenger.MyPersonalMessage = "Twitter: " + json[0].text
      }
   }
}
When you do this, the request variable will still be defined in the scope of processReadyStateChange when it's been called by the XMLHTTP request (which is also the case in your method). You can choose which method you want to use, the method above may be a bit nicer to read but there's nothing wrong with the way you did it. :)
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
06-21-2008 06:55 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Auto Refresh? twitter - by Lamonte on 06-20-2008 at 12:25 AM
RE: Auto Refresh? twitter - by Eljay on 06-20-2008 at 12:37 AM
RE: Auto Refresh? twitter - by Lamonte on 06-20-2008 at 12:41 AM
RE: Auto Refresh? twitter - by Eljay on 06-20-2008 at 01:06 AM
RE: Auto Refresh? twitter - by Lamonte on 06-20-2008 at 01:11 AM
RE: Auto Refresh? twitter - by Lamonte on 06-20-2008 at 11:18 PM
RE: Auto Refresh? twitter - by Matti on 06-21-2008 at 06:55 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On