What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Is it possible...

Is it possible...
Author: Message:
MeEtc
Patchou's look-alike
*****

Avatar
In the Shadow Gallery once again

Posts: 2200
Reputation: 60
38 / Male / Flag
Joined: Nov 2004
Status: Away
RE: Is it possible...
yes, this is possible. I'm doing the exact same thing for the script that I'm working on right now. The easiest way to do this is create a php script for yourself that echos the contents that you want to show. Then you can use an XMLHTTP object to read the contents of the output. here's a snippet:
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", "http://www.domain.com/file.php", true);
xmlhttp.onreadystatechange = function(){
   if(xmlhttp.readyState == 4) {
      if(xmlhttp.status == 200) {
         Debug.Trace('Data returned: ' + xmlhttp.responseText)
      } else {
         Debug.Trace('Error: Could not open web page');
      }
   }
}

[Image: signature/]     [Image: sharing.png]
I cannot hear you. There is a banana in my ear.
08-18-2007 03:38 AM
Profile PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Is it possible... - by Zageron on 08-18-2007 at 03:07 AM
RE: Is it possible... - by ShawnZ on 08-18-2007 at 03:08 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 03:10 AM
RE: Is it possible... - by ShawnZ on 08-18-2007 at 03:12 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 03:13 AM
RE: Is it possible... - by ShawnZ on 08-18-2007 at 03:15 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 03:26 AM
RE: Is it possible... - by MeEtc on 08-18-2007 at 03:38 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 03:47 AM
RE: Is it possible... - by roflmao456 on 08-18-2007 at 04:00 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 04:04 AM
RE: Is it possible... - by roflmao456 on 08-18-2007 at 04:05 AM
RE: Is it possible... - by Zageron on 08-18-2007 at 04:13 AM
RE: Is it possible... - by Matti on 08-18-2007 at 10:04 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