Našel jsem tohle:
OnNewSMS
Event notifies script about new incoming SMS. There can be two parameters used:
Sender - contains name and phone number of sender. If sender name is not stored in phonebook, parameter will contain only his number.
Text - contains text of message.
Example:
'Shut down computer when specific message was received.
'MyNumber constant should contain number of user who is allowed to shut down computer.
Sub OnNewSMS(Sender, Text)
If (Sender = MyNumber) and (LCase(Text) = "shutdown") Then
Shell.Run "shutdown -f -s -t 30"
fma.Disconnect
End If
End Sub
Je to pro vypnutí PC po obdržení sms. Jak by měl vypadat ten skript pro uložení?