| Author |
Message |
Topic: Question about working with Excel |
Hasso
Replies: 5
Views: 190
|
Forum: Ask for Help Posted: Mon Jan 30, 2012 12:44 pm Subject: Question about working with Excel |
Send ^g, wait for the goto dialog, type H16 and ENTER - voilą!
Or
activate the name field and type H16 and ENTER. |
Topic: How to detect if a program is working properly? |
Hasso
Replies: 1
Views: 67
|
Forum: Ask for Help Posted: Mon Jan 23, 2012 3:21 pm Subject: How to detect if a program is working properly? |
| Use a timer in combination wth ImageSearch and if the image of the clock didn't change for a while restart it. |
Topic: running a script in a minimize window... |
Hasso
Replies: 7
Views: 177
|
Forum: Ask for Help Posted: Thu Nov 10, 2011 12:27 pm Subject: running a script in a minimize window... |
What's so hard to understand?
The ControlSend command can send keystrokes to a minimised window.
Toggle = 0
#MaxThreadsPerHotkey 2
$F1::
Toggle := !Toggle
While Toggle{
Co ... |
Topic: firefox active |
Hasso
Replies: 19
Views: 399
|
Forum: Ask for Help Posted: Thu Sep 15, 2011 9:12 am Subject: firefox active |
IfWinExist, Mozilla Firefox ;<-- two spaces
WinActivate ; use the window found above
return
Why did you put two spaces between Mozilla and Firefox in your Code?
This should work:
IfWinEx ... |
Topic: Send {Esc} does not work |
Hasso
Replies: 7
Views: 143
|
Forum: Ask for Help Posted: Thu Sep 15, 2011 8:45 am Subject: Send {Esc} does not work |
#IfWinActive, Microsoft Office Word
#.::send, {ESC}
return
#IfWinActive
Works for me and closes the "not found" window. |
Topic: Pls help noob with COM, retrieving text from a website. |
Hasso
Replies: 14
Views: 519
|
Forum: Ask for Help Posted: Tue Sep 13, 2011 9:10 am Subject: Pls help noob with COM, retrieving text from a website. |
in the original code it read
Msgbox, cells[4].all.tags.("div")[0].innerText |
Topic: Why my code of IFWinActive does nothing?! |
Hasso
Replies: 9
Views: 156
|
Forum: Ask for Help Posted: Tue Sep 13, 2011 8:48 am Subject: Why my code of IFWinActive does nothing?! |
#IfWinActive ahk_class #32770
msgbox,kkkkk
PixelGetColor, color,791,328
if %color%=0xe8e8e8
click 791,328
ControlClick,Button2
#IfWinActive is used to define window specific hotkeys. But you ha ... |
Topic: HLP format (Help files) |
Hasso
Replies: 2
Views: 105
|
Forum: Ask for Help Posted: Tue Sep 13, 2011 8:44 am Subject: HLP format (Help files) |
There are some tools:
Help to RTF. A Shareware version you can get at http://www.herdsoft.com/ftp/downloads.html
WinHelp Decompiler (http://www.helpscribble.com/decompiler.html)
HLP to RTF Convert ... |
Topic: Firefox 6.0.2 - AHK not working |
Hasso
Replies: 8
Views: 268
|
Forum: Ask for Help Posted: Tue Sep 13, 2011 8:33 am Subject: Firefox 6.0.2 - AHK not working |
| If you are using JavaScript with AHK you'll run into problems as Firefox has deactivated the possibility to run JavaSrpt code through the browsers address field. I have been searching for a lot of tim ... |
Topic: How to read text in window |
Hasso
Replies: 6
Views: 214
|
Forum: Ask for Help Posted: Mon Aug 22, 2011 2:09 pm Subject: How to read text in window |
Hello yash.dhiman,
you could select all the content of the page with ^a and then copy it to the clipboard with ^c.
Example (Hotkey: Windows+c):
#IfWinActive, Internet Explorer
#c::
c ... |
Topic: how to move mouse to highlighted? |
Hasso
Replies: 2
Views: 129
|
Forum: Ask for Help Posted: Mon Aug 22, 2011 2:00 pm Subject: how to move mouse to highlighted? |
Hello,
you can get the highlighted region with [url=http://www.autohotkey.com/docs/commands/PixelSearch.htm]PixelSearch. |
Topic: Send cursor to form field |
Hasso
Replies: 2
Views: 114
|
Forum: Ask for Help Posted: Mon Aug 22, 2011 11:07 am Subject: Send cursor to form field |
TrySend, {F6} ;activate the browsers address field
Send, javascript:void(document.getElementById('FirstName').focus()){ENTER} ;pa ... |
Topic: Saving screens in Word document at each mouse click/step |
Hasso
Replies: 3
Views: 121
|
Forum: Ask for Help Posted: Mon Aug 22, 2011 10:55 am Subject: Saving screens in Word document at each mouse click/step |
| Or you use a software like Wink (http://www.debugmode.com/wink/), which lets you take screenshots automatically with each mousecklick or keyboard input and paste these screenshots into Word afterwards ... |
Topic: Script Refuses to Display Multiple Rows of Buttons !!! |
Hasso
Replies: 1
Views: 86
|
Forum: Ask for Help Posted: Tue Aug 16, 2011 1:04 pm Subject: Script Refuses to Display Multiple Rows of Buttons !!! |
the variable h in
ControlGetPos,,,, h, Button%A_Index%
is empty and therefore
rows := _topY // ( h + 3 )
always returns the same value. |
Topic: Using clipboard |
Hasso
Replies: 12
Views: 210
|
Forum: Ask for Help Posted: Mon Aug 08, 2011 3:14 pm Subject: Using clipboard |
Hi bmoore45,
if you copy a cell in Excel the clipboard always not only keeps the cell content but an additional line break. So your clipboard contains "1\n". You only have to remove the l ... |
| |