Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE INTEGER keybd_event IN Win32API INTEGER, INTEGER, INTEGER, INTEGER
* in short:
* 1st param: virtual key code (look into the MSDN docs)
* 2nd param: press or release key.
* as a sample this emulates pressing the PRINT key
keybd_event(44, 0, 0, 0) && press key
keybd_event(44, 0, 2, 0) && release key
Run this code, then star mspaint.exe and paste the screenshot.
[URL unfurl="true"]http://msdn.microsoft.com/en-us/library/ms927178.aspx[/URL]
oWsh = CREATEOBJECT("wscript.shell")
* Run Notepad
oWsh.Run("Notepad")
* Give Notepad a moment to load
WAIT TIMEOUT 0.5
* Type something into Notepad
oWsh.Sendkeys("Hello World")