Shoutbox

PHP scripts for MSN - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: PHP scripts for MSN (/showthread.php?tid=20595)

PHP scripts for MSN by lylesback2 on 01-17-2004 at 05:33 PM

Is there a web site with open sources that have any php scripts to like.. add contact, open window, etc?

or any web based scripts!


RE: PHP scripts for MSN by bach_m on 01-17-2004 at 05:36 PM

* bach_m doesn't know if its possible, since PHP is server side.....

and no, i dont know any :P


RE: PHP scripts for MSN by Stigmata on 01-17-2004 at 05:40 PM

http://daniel.msnfanatic.com???


RE: PHP scripts for MSN by LeCastor2001 on 01-17-2004 at 05:41 PM

LeCastor thinks it's possible, only if you can access Messenger API in PHP...

I believe in ASP, it's possible (I say maybe, so don't trust me 100% :D), but PHP, no idea...


RE: PHP scripts for MSN by lylesback2 on 01-17-2004 at 05:45 PM

i've seen signatures that have www.blahblahblah.com/add.php?=email@hotmail.com and stuff, and theres seem to work


RE: PHP scripts for MSN by Banks on 01-17-2004 at 06:37 PM

that's me i did it with javascript

http://banks.ineedhosting.net/add.php?mail=someone@hotmail.com  will open up the add contact UI


RE: PHP scripts for MSN by Guido on 01-17-2004 at 07:26 PM

quote:
Originally posted by LeCastor2001
LeCastor thinks it's possible, only if you can access Messenger API in PHP...

I believe in ASP, it's possible (I say maybe, so don't trust me 100% :D), but PHP, no idea...
Yes but for that you would need to enter the password, what he's looking for is a way to interact with the MSN Messenger client software.

It's not possible with PHP, CGI, ASP, JSP, whatever because they are server-side as someone said.

There is a method using an ActiveX control that sometimes work, do a Google search for it.

RE: PHP scripts for MSN by lylesback2 on 01-17-2004 at 07:54 PM

Banks, is that an open source?


RE: PHP scripts for MSN by lylesback2 on 01-17-2004 at 07:59 PM

quote:
Originally posted by Guido
Yes but for that you would need to enter the password, what he's looking for is a way to interact with the MSN Messenger client software.

It's not possible with PHP, CGI, ASP, JSP, whatever because they are server-side as someone said.

There is a method using an ActiveX control that sometimes work, do a Google search for it.
NO, no, i wa slooking for away to open up the contact window with Xemail@email.com and talk with them, while they are running MSN.
RE: PHP scripts for MSN by leito on 01-17-2004 at 08:03 PM

I made one, (I just organize it, its danielīs script) http://www.mailsdeahuevo.com/sendMsgform.php It just sends a message, to myself, but is not open source, since is not my work, but you could ask daniel.

Edit:
When you send a message plz, put your name or email cuz, I never know who is talking hahahaha, I receive things like "hello",

Edit 2:
I receive messages like "test:P" hahahaha, I donīt know who send the messages, so plz put your name


RE: PHP scripts for MSN by Guido on 01-17-2004 at 08:10 PM

quote:
Originally posted by lylesback2
NO, no, i wa slooking for away to open up the contact window with Xemail@email.com and talk with them, while they are running MSN.
And that's what I was explaining :rolleyes:

RE: PHP scripts for MSN by lylesback2 on 01-17-2004 at 10:39 PM

quote:
Originally posted by leito.gt
I made one, (I just organize it, its danielīs script) http://www.mailsdeahuevo.com/sendMsgform.php It just sends a message, to myself, but is not open source, since is not my work, but you could ask daniel.

Edit:
When you send a message plz, put your name or email cuz, I never know who is talking hahahaha, I receive things like "hello",

Edit 2:
I receive messages like "test:P" hahahaha, I donīt know who send the messages, so plz put your name
does it only work when your online?  and it's not what i was looking for.
RE: PHP scripts for MSN by CookieRevised on 01-18-2004 at 01:47 AM

few examples: http://daniel.msnfanatic.com/


RE: RE: PHP scripts for MSN by Banks on 01-18-2004 at 02:28 AM

quote:
Originally posted by lylesback2
Banks, is that an open source?

sure:P
code:
<?
if ($mail == ""){
    echo "<form action='{$_SERVER['PHP_SELF']}' METHOD='POST'>
        E-mail Address<input type='text' value='E-MAIL' name='mail'><input type='submit' name='create page'>
        </form>";
} if ($mail != ""){
echo "<head>
<style>
p{ color: gray;}
a{ color: gray;}
</style>
<script language='javascript' type='text/javascript'>
function add() {var msnControl = new ActiveXObject('Messenger.UIAutomation.1');
msnControl.AddContact(0, '$mail')}
</script>
<script language='javascript' type='text/javascript'>
function msg() {var msnControl = new ActiveXObject('Messenger.UIAutomation.1');
msnControl.InstantMessage('$mail')}
</script>
</head>
<body>
<script language='javascript'>add()</script>
<center><p size='4'><B>attempting to add <a href='mailto:$mail'>$mail</a></B></p>
<BR>If you would like to send this page to others send them to the following URL:<BR>
<a href='{$_SERVER['PHP_SELF']}?mail=$mail'>{$_SERVER['SERVER_NAME']}{$_SERVER['PHP_SELF']}?mail=$mail</a>
<BR>click <a href='javascript:msg()'>here</a> to send a mesage to $mail
<BR><BR>&copycopyright 2004 Jeremy Banks<BR>Thanks to <a href='http://www.ineedhosting.net'>I need hosting</a> for the webspace and php support.</center>";}
?>


RE: PHP scripts for MSN by Guido on 01-18-2004 at 02:42 AM

quote:
var msnControl = new ActiveXObject('Messenger.UIAutomation.1');
That's the ActiveX control I was referring to. I believe it's described somewhere in MSDN.
RE: PHP scripts for MSN by Banks on 01-18-2004 at 02:46 AM

yes, it is i stole it from there

EDIT: punctuation made it sound like i was correcting you.


RE: PHP scripts for MSN by Stigmata on 01-19-2004 at 07:37 PM

quote:
Originally posted by CookieRevised
few examples: http://daniel.msnfanatic.com/


allready posted :P
RE: PHP scripts for MSN by stonesour on 01-22-2004 at 03:47 AM

does anyone have a php script, or know where i can get one for an online/offline indicator??

All of them i've found so far are for the old protocol


RE: PHP scripts for MSN by lylesback2 on 01-22-2004 at 05:19 AM

quote:
Originally posted by stonesour
does anyone have a php script, or know where i can get one for an online/offline indicator??

All of them i've found so far are for the old protocol
post your own topic ^o) lol.

answer my question first.. and banks, it doesn't work :P
RE: PHP scripts for MSN by Tochjo on 01-22-2004 at 01:52 PM

quote:
Originally posted by stonesour
does anyone have a php script, or know where i can get one for an online/offline indicator??
quote:
Originally posted by lylesback2
post your own topic ^o) lol.
It's quite related, I think :-/
Anyway, have you (stonesour) tried http://www.onlinestatus.org?
RE: RE: PHP scripts for MSN by stonesour on 01-23-2004 at 01:03 AM

quote:
It's quite related, I think :-/
Anyway, have you (stonesour) tried http://www.onlinestatus.org?


online.org uses javascript for theirs, i want pure php
RE: RE: PHP scripts for MSN by Banks on 01-23-2004 at 12:37 PM

quote:
Originally posted by lylesback2
banks, it doesn't work :P


what error does it give you?
RE: PHP scripts for MSN by lylesback2 on 01-23-2004 at 04:53 PM

quote:
Originally posted by Banks
what error does it give you?
no errors... just doesn't add them to my contact list :P
sorry.. my popup blocker was on.. when disabled it worked :P