AutoHotkey Community

It is currently May 21st, 2012, 4:50 pm

All times are UTC [ DST ]


Search found 5 matches
Search these results:

Author Message

 Forum: Support   Topic: Need script

Posted: March 17th, 2010, 7:14 am 

Replies: 12
Views: 427


Try like this #NoEnv #Persistent SetTitleMatchMode, 2 SetTimer, SendF1, 5000 ; this will send F1 to an active (or inactive/minimised) window every 5 seconds Click, right, 1259, 351 ; this will just right click, it doesn't matter which window is active Return SendF1: ControlSend,, {F1&#...

 Forum: Support   Topic: Need script

Posted: March 16th, 2010, 10:04 pm 

Replies: 12
Views: 427


MasterFocus wrote:
Use ahk_class or ahk_id intead.

ahk_class of my programm is "1234" (for example)
Instead of windowname write "1234"?

WindowName := "1234"

or no?

 Forum: Support   Topic: Need script

Posted: March 16th, 2010, 9:38 pm 

Replies: 12
Views: 427


Do you want to be able to send something to one window that is not active (or minimised), and still be able to click in another window that is active? Try the below, open notepad and minimise it. Then start the script. It will right click at the co-ordinates you put, but also will put some text to ...

 Forum: Support   Topic: Need script

Posted: March 14th, 2010, 1:02 pm 

Replies: 12
Views: 427


Murx wrote:
Code:
#Persistent
SetTimer, PressF1, 500
Return

PressF1:
   Send {F1}
   Sleep, 4500
   MouseClick, Right, 1259, 351 ; better choose --> ControlClick
   Return
?

No :)
It's script for active window, but need for turn window, that i can work with another window

 Forum: Support   Topic: Need script

 Post subject: Need script
Posted: March 13th, 2010, 10:59 pm 

Replies: 12
Views: 427


Hi all The script on button F1 pressing is necessary each 5 seconds, but still it is necessary that the script worked with the curtailed window How it is possible to make? Sorry for my english. I'm russian. Rus FAQ don't work :( It is my script: loop { send {F1} sleep 4500 } mous...
Sort by:  
Page 1 of 1 [ Search found 5 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group