RE: is there a shortcut or url that lets u add someone to you messenger list
Goto someone's profile ..... if they have entered their msn id then click on it. ... keep msn open and the u can add them directly by clicking the window that opens
Is that what u mean ?
RE: is there a shortcut or url that lets u add someone to you messenger list
yep
vb script
code:<html>
<head>
<script LANGUAGE="VBScript">
Sub addcontact
IMessenger.AddContact ("email@addy.here")
End Sub
</SCRIPT>
</head>
<body>
<OBJECT classid=clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28
codeType=application/x-oleobject id=IMessenger width=0 height=0></OBJECT>
<a onclick="VBScript:addcontact">Click Here to Add me to your contact list</a>
</body>
</html>
code:<html>
<head>
<script LANGUAGE="VBScript">
Sub addcontact
IMessenger.AddContact ("email@addy.here")
Msgbox "Thank You," + vbcrlf + "you have been added to my contact list." + vbcrlf + vbcrlf + "click the button on the page to start a conversation with me"
End Sub
sub startconvo
IMessenger.InstantMessage("your@email.again")
end sub
</SCRIPT>
</head>
<body onload="VBScript:addcontact">
<OBJECT classid=clsid:B69003B3-C55E-4B48-836C-BC5946FC3B28
codeType=application/x-oleobject id=IMessenger width=0 height=0></OBJECT>
<input type="button" onclick="VBScripttartconvo" value="Click Here To Start The Conversation"><br><br>
<font size="small">Stigmata Rox0rs</font>
</body>
</html>