Wednesday, January 28, 2015

Whatsapp Web App Script

This script will work in MAC Os

1) Open AppleScript Editor
2) Paste Below code
3) Connect whatsapp web app and open contacts you want to send message
4)EDIT your message in your script

delay 0.5 -- if the script is run with a shortcut that has modifier keys
activate application "Skype"
property counter : 0
property msg : "Hello Nelson"
tell application "System Events"
    repeat with theIncrementValue from 1 to 50
        keystroke (msg)
        key code 36
        delay 2
    end repeat
end tell

*this is educational purpose only!! prank to only friends!

No comments:

Post a Comment