-
Is there a way to simulate keystrokes, so that they will appear in another program? What I want to do is have a list of links that my browser visits on a regular basis, being controlled by a program running in the background. I'd need to know how to do special keystrokes (tab and enter) to do that, though.
Thanks
-
You'll be wanting the SendKeys function then;
Use it in conjunction with AppActivate to activate another (already running) program and then SendKeys to it; (look in Help on SendKeys for more information)
eg;
Code:
AppActivate "Microsoft Word",True
SendKeys "Line of Text{ENTER}",True
Sendkeys "Another line of text{ENTER}",True