 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
fincs
Joined: 05 May 2007 Posts: 82 Location: Seville, Spain
|
Posted: Mon Jul 16, 2007 5:10 pm Post subject: |
|
|
The documentation typo:
| engunneer wrote: | | Built-in Functions wrote: |
<snip>
WinActive(WinTitle [, WinText, ExcludeTitle, ExcludeText])
<snip>
WinExist(WinTitle [, WinText, ExcludeTitle, ExcludeText])
<snip>
|
should be
| Built-in Functions wrote: |
<snip>
WinActive([WinTitle , WinText, ExcludeTitle, ExcludeText])
<snip>
WinExist([WinTitle , WinText, ExcludeTitle, ExcludeText])
<snip>
|
|
it's not fixed in the CHM file. I'm using AHK v1.0.47.01. _________________ Sorry my poor English
Fincs
MsgBox % RegExReplace("Fernando Incs.", "^(\w).*\s+I(\w{3})\w*\.$", "$1i$2") |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 5957 Location: Pacific Northwest, US
|
Posted: Mon Jul 16, 2007 7:45 pm Post subject: |
|
|
that is because he released the CHM on 08 Jul 07, and the change was made on 10 Jul 07. All documentation changes propagate from the web to the CHM next time it is released. _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
Fuco
Joined: 21 Mar 2006 Posts: 49 Location: Slovakia, Europe :)
|
Posted: Wed Aug 22, 2007 6:02 pm Post subject: |
|
|
minor typo
http://www.autohotkey.com/docs/commands/LoopFile.htm
(also in autohotkey.chm file )
To retrieve files' relative paths instead of absolute paths during a recursive search.....
should be file's _________________ RegExReplace("C:\Program Files\AutoHotkey", "(^C)(?=\W).{4}((?i)[GOD])\w{1,4}\s(\D)(?:\w+)*\\(?3)(u|o).*?(k).*" , "$3$4$l1$5$2") |
|
| Back to top |
|
 |
corrupt
Joined: 29 Dec 2004 Posts: 2328
|
Posted: Fri Aug 24, 2007 1:00 am Post subject: |
|
|
I'm pretty sure the sentence is correct since in this case the word file is plural . The sentence could instead read something like: To retrieve relative paths for files instead of absolute paths during a recursive search... |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 2364 Location: Australia, Qld
|
Posted: Sat Aug 25, 2007 1:59 pm Post subject: |
|
|
| documentation: ListView: ListView Remarks wrote: | | To use a picture as a background behind a ListView, create the picture control after the ListView and include 0x4000000 (which is WS_CLIPSIBLINGS) in the picture's Options. | I think this is misleading - it implies the background can be (seen) behind the ListView, when it can only be (seen) around the ListView. |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10450
|
Posted: Mon Aug 27, 2007 10:28 pm Post subject: |
|
|
| Thanks; I've clarifed it to be: "A picture may be used as a background around a ListView (that is, to frame the ListView). To do this, create the picture control after the ListView and include 0x4000000 (which is WS_CLIPSIBLINGS) in the picture's Options." |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 5957 Location: Pacific Northwest, US
|
|
| Back to top |
|
 |
Superfraggle
Joined: 02 Nov 2004 Posts: 753 Location: London, UK
|
Posted: Sat Mar 22, 2008 3:03 am Post subject: |
|
|
The code example on pixelgetcolor is missing a semicolon.
| Code: | ^!z:: Control+Alt+Z hotkey.
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
MsgBox The color at the current cursor position is %color%.
return | I believe this was intended to be
| Code: | ^!z:: ; Control+Alt+Z hotkey.
MouseGetPos, MouseX, MouseY
PixelGetColor, color, %MouseX%, %MouseY%
MsgBox The color at the current cursor position is %color%.
return |
_________________ Steve F AKA Superfraggle
http://r.yuwie.com/superfraggle |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|