| Author |
Message |
Topic: Fire an action when left click is hold down for one second |
Extreminador
Replies: 2
Views: 158
|
Forum: Ask for Help Posted: Thu May 22, 2008 12:55 pm Subject: Fire an action when left click is hold down for one second |
| Check the GetKeyState help |
Topic: Monitor a Window, on Title change set a new title? |
Extreminador
Replies: 10
Views: 231
|
Forum: Ask for Help Posted: Wed May 21, 2008 8:58 pm Subject: Monitor a Window, on Title change set a new title? |
| WinGetTitle |
Topic: Monitor a Window, on Title change set a new title? |
Extreminador
Replies: 10
Views: 231
|
Forum: Ask for Help Posted: Wed May 21, 2008 8:21 pm Subject: Monitor a Window, on Title change set a new title? |
You donīt need to activate the window, you can use the class or the id ot whatever to set the title with out activated.
WinSetTitle, ahk_class triuiScreen, , NetWork Monitor
|
Topic: Help with a hotkey |
Extreminador
Replies: 1
Views: 114
|
Forum: Ask for Help Posted: Wed May 21, 2008 8:07 pm Subject: Help with a hotkey |
;Execute the label WheelUp_Button when you mouse Wheel Up
Hotkey, WheelUp, WheelUp_Button, On
return
WheelUp_Button:
;This simulate a keystroke send. In this case the w key
Send, w
retu ... |
Topic: Detect Pixel Color |
Extreminador
Replies: 1
Views: 124
|
Forum: Ask for Help Posted: Wed May 21, 2008 6:44 pm Subject: Detect Pixel Color |
| Check in the help for the command PixelSearch |
Topic: hotkey doesn't wait for click |
Extreminador
Replies: 7
Views: 250
|
Forum: Ask for Help Posted: Wed May 21, 2008 5:47 pm Subject: hotkey doesn't wait for click |
;Execute the label Up_Button when you click on the UP button arrow
Hotkey, Up, Up_Button, On
;Execute the label Down_Button when you clikc on the DOWN button arrow
Hotkey, Down, Down_Button, On
... |
Topic: Retrieving data from a gui edit box? |
Extreminador
Replies: 5
Views: 232
|
Forum: Ask for Help Posted: Wed May 21, 2008 5:20 pm Subject: Retrieving data from a gui edit box? |
I am not sure what you want to do, but if the edit have only Server2 the only way to modify that result is after the getText you add manualy the rest.
Servers = Server1
Complete = gridA1,%Server ... |
Topic: hotkey doesn't wait for click |
Extreminador
Replies: 7
Views: 250
|
Forum: Ask for Help Posted: Wed May 21, 2008 3:11 pm Subject: hotkey doesn't wait for click |
that is not any problem you need to use a if command.
Check the example that you have on the command GetKeyState. |
Topic: wait a botton |
Extreminador
Replies: 1
Views: 67
|
Forum: Ask for Help Posted: Wed May 21, 2008 3:07 pm Subject: wait a botton |
| use the command KeyWait |
Topic: Searching .txt for a value & copy that line and NEXT lin |
Extreminador
Replies: 3
Views: 158
|
Forum: Ask for Help Posted: Wed May 21, 2008 2:29 pm Subject: Searching .txt for a value & copy that line and NEXT lin |
| Use the command FileReadLine instead and read the lines one by one... |
Topic: hotkey doesn't wait for click |
Extreminador
Replies: 7
Views: 250
|
Forum: Ask for Help Posted: Wed May 21, 2008 2:02 pm Subject: hotkey doesn't wait for click |
; this enables the hotkey - i.e. "begins waiting for LButton"
Hotkey, LButton, left_button, On
The HotKey dosenīt wait for any thing , the only thing that HotKey does is:
Creates, ... |
Topic: Retrieving data from a gui edit box? |
Extreminador
Replies: 5
Views: 232
|
Forum: Ask for Help Posted: Wed May 21, 2008 12:11 am Subject: Retrieving data from a gui edit box? |
Hi.
You need to use the ControlGetText.
Example using the calc.exe
ControlGetText, CalcValue, Edit1, ahk_class SciCalc
MsgBox, The value on the calc.exe edit is %CalcValue%
Good luck |
Topic: Change Button Title? |
Extreminador
Replies: 8
Views: 232
|
Forum: Ask for Help Posted: Tue May 20, 2008 6:44 pm Subject: Change Button Title? |
Hi.
I have already try the code above with the window title chage to Calculadora, but the scripot donīt work.
Have chanhe the code to use with ahk_class and itīs not working weither why ?
Here ... |
Topic: getting Individual output screens |
Extreminador
Replies: 3
Views: 296
|
Forum: Wish List Posted: Fri May 16, 2008 12:18 am Subject: Re: getting Individual output screens |
Oh My! Are you using OCR software on a Command Prompt window to extract text ?
lool
naaa. i am not using any OCR toolīs and i am not using the comand prompt window either.
My prin ... |
Topic: getting Individual output screens |
Extreminador
Replies: 3
Views: 296
|
Forum: Wish List Posted: Thu May 15, 2008 11:59 pm Subject: getting Individual output screens |
Hi.
Donīt know if is possible or not to do what i will propose and mybe if it is it will be hard ( i think ) to add that feature.
All program have an individual output to screen that will united to ... |
| |