I believe there are 2 threads mixed here
One about Changing the status on Remote control button push, and one about executing the content of a file, when it changed
Mods? Can I request a split for this?
1. You can definitly use the MSN API for that, try to find some documentation about it
2. MpScripts.net has a code snippet for that, I'm having problem with the site right now, so I will post it later, or maybe you could find it yourself...
I believe it's called 'Messenger API Type library'
Here is a VB example
code:
Public WithEvents msn As Messengerapi.Messenger
Private Sub Form_Load()
Set msn = New Messengerapi.Messenger
end sub
private sub command1_click()
msn.MyStatus = MISTATUS_AWAY
end sub
Haven't tested it, I'm doing it right now