 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
ruespe
Joined: 17 Jun 2008 Posts: 243
|
Posted: Fri Feb 05, 2010 10:38 am Post subject: |
|
|
Hi Chris,
could you please add a "Related"-link on UrlDownloadToFile to the FileCopy-Command.
Thanks _________________ Greetings
Rog |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7299 Location: Australia
|
Posted: Fri Feb 26, 2010 2:21 pm Post subject: |
|
|
WinMove implies the X and Y parameters are required ...
| Quote: | | WinMove, WinTitle, WinText, X, Y [, Width, Height, ExcludeTitle, ExcludeText] | ... but the behaviour documented for Width and Height appears to also apply for X and Y:
| Quote: | | If either is omitted, blank, or the word DEFAULT, the size/position in that dimension will not be changed. | I suggest adding the above for X, Y. The [ should probably be left where it is since omitting X and its trailing comma (and subsequent parameters) causes the two-parameter mode (WinMove, X, Y) to be used. |
|
| Back to top |
|
 |
AEN007
Joined: 04 Apr 2009 Posts: 129
|
Posted: Sat Mar 20, 2010 11:52 am Post subject: ExcludeText & WSpy TabbedWindowBug |
|
|
20March2010
Greetings.
Please see»
http://www.autohotkey.com/forum/viewtopic.php?p=341082#341082
All of the related AHK documentation regarding ExcludeText
is incorrect, inaccurate - misleading. The AHK WSpy documentation
does not account for the "TabbedWindowBug".
Thank you.
Regards,
AEN
Æ |
|
| Back to top |
|
 |
JDN
Joined: 24 Mar 2004 Posts: 299
|
Posted: Tue Apr 20, 2010 2:08 pm Post subject: Very Tiny Typo |
|
|
If the following is indeed a typo, I will wager it is the smallest typo ever reported to you.
In the Help file,
Keyboard Control - Hotkeys and Hotstrings - #Hotstring - Endchars - Specify the word EndChars followed a single space - should be "followed by a single space"
I seem to be wrong most of the time I report typos. So, if I am wrong here, I apologize in advance. |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 236 Location: Finland
|
Posted: Sat Apr 24, 2010 7:03 pm Post subject: Down - Up, not Up - Down |
|
|
| ''Hotkey [Hotkeys (Mouse, Joystick and Keyboard Shortcuts)] - UP - Limitations'' wrote: | | An "Up" hotkey without a normal/down counterpart hotkey will completely take over that key to prevent it from getting stuck down. |
Also if the normal/down hotkey is defined after the "Up" hotkey, the "Up" hotkey is ignored!
The following script's first line doesn't perform anything although it's listed in "Hotkeys and their methods":
| Code: | ~Ctrl Up:: ToolTip Ctrl Up
~Ctrl:: ToolTip Ctrl Down | Q.E.D. _________________ Pekka Vartto |
|
| Back to top |
|
 |
Guest
|
Posted: Wed May 26, 2010 8:50 am Post subject: |
|
|
Hey, sorry if i'm wrong about this. But i think that that fileappend will not create a file if the folder it's supposed to be inside of does not exist.
Recommend adding a note about that. |
|
| Back to top |
|
 |
jaco0646
Joined: 07 Oct 2006 Posts: 3113 Location: MN, USA
|
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7299 Location: Australia
|
Posted: Sat Jun 19, 2010 11:34 am Post subject: |
|
|
| I think that the example for FileReadLine encourages the use of that command in a loop, which is inefficient and error-prone. Perhaps users would be less likely to make mistakes like this one if the loop was removed (i.e. the example simplified). The existing "File-reading loop" links on that page should be sufficient to cover that functionality. |
|
| Back to top |
|
 |
Barney9
Joined: 02 Mar 2007 Posts: 57 Location: Germany
|
Posted: Sat Jun 19, 2010 8:19 pm Post subject: |
|
|
The documentation of the "KeyWait" command says:
| Quote: | | Waits for a key or mouse/joystick button to be released or pressed down. |
and
| Quote: | | If this parameter is blank, the command will wait indefinitely for the specified key or mouse/joystick button to be physically released by the user |
I think it is unclear whether ...released... means released state or the release event/action. |
|
| Back to top |
|
 |
jaco0646
Joined: 07 Oct 2006 Posts: 3113 Location: MN, USA
|
Posted: Fri Jun 25, 2010 1:03 am Post subject: |
|
|
| On the SetFormat page, in the padding section, it should be explicitly stated that integers are not padded. They must be converted to floats first. |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
Posted: Fri Jun 25, 2010 6:22 am Post subject: |
|
|
| jaco0646 wrote: | | On the SetFormat page, in the padding section, it should be explicitly stated that integers are not padded. They must be converted to floats first. |
+1
Also the part of following example creates confusion:
| Code: | Var = 11.333333
SetFormat, float, 6.2
Var -= 1 ; Sets Var to be 10.33 with one leading space because the total width is 6.
SetFormat, float, 0.2
Var += 1 ; Sets Var to be 11.33 with no leading spaces.
SetFormat, float, 06.0
Var += 0 ; Sets Var to be 000011
; Convert a decimal integer to hexadecimal:
SetFormat, IntegerFast, hex
Var += 0 ; Sets Var (which previously contained 11) to be 0xb.
Var .= "" ; Necessary due to the "fast" mode.
SetFormat, IntegerFast, d |
Could be altered as
| Code: | Var = 11.333333
SetFormat, float, 6.2
Var -= 1 ; Sets Var to be 10.33 with one leading space because the total width is 6.
SetFormat, float, 0.2
Var += 1 ; Sets Var to be 11.33 with no leading spaces.
SetFormat, float, 0
Var += 0 ; Rounds-off Var to 11
SetFormat, float, 06.0
Var += 0.0 ; Sets Var to be 000011
; Convert a decimal integer to hexadecimal:
SetFormat, IntegerFast, hex
Var += 0 ; Sets Var (which previously contained 11) to be 0xb.
Var .= "" ; Necessary due to the "fast" mode.
SetFormat, IntegerFast, d |
|
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7299 Location: Australia
|
Posted: Sat Jul 31, 2010 5:36 am Post subject: |
|
|
From DllCall - Structure Example:
| Code: | MsgBox % "Left " . NumGet(Rect, 0, true) . " Top " . NumGet(Rect, 4, true)
. " Right " . NumGet(Rect, 8, true) . " Bottom " . NumGet(Rect, 12, true) | It seems to be based on the initially planned syntax, where true for that parameter meant "signed". |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 10, 2010 1:19 am Post subject: Re: Suggestions on documentation improvements |
|
|
| FormatTime wrote: | | ; This method is used to support more than 24 hours worth of sections. |
...I believe it means...
| FormatTime should've wrote: | | ; This method is used to support more than 24 hours worth of seconds. |
...interestingly, this is all over the site/forum, from people copy/pasting...
...(too many, that I couldn't tell if it this was already reported or just used in examples).
Of course, I don't expect Chris to come out of Hibernation just to fix that. Speaking of which, shouldn't someone ask Chris for write access to the site?...or at least to the docs?...or even complete access to take over AutoHotkey?...since/if he's never coming back. |
|
| Back to top |
|
 |
svi
Joined: 09 Oct 2006 Posts: 236 Location: Finland
|
Posted: Tue Aug 24, 2010 12:25 pm Post subject: |
|
|
An explicit error: | SplashTextOn / SplashTextOff wrote: | | ControlSetText, Static1, NewText, <insert title of splash window> |
(Should be "text of splash window")
EDIT: NEVER MIND  _________________ Pekka Vartto
Last edited by svi on Tue Aug 24, 2010 5:18 pm; edited 1 time in total |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Aug 24, 2010 3:28 pm Post subject: |
|
|
| svi wrote: | | (Should be "text of splash window") |
...huh? I don't think so... |
|
| 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
|