AutoHotkey Community

It is currently May 27th, 2012, 4:27 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 192 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10 ... 13  Next
Author Message
 Post subject:
PostPosted: February 5th, 2010, 11:38 am 
Offline

Joined: June 17th, 2008, 7:51 am
Posts: 243
Hi Chris,

could you please add a "Related"-link on UrlDownloadToFile to the FileCopy-Command.

Thanks

_________________
Greetings
Rog


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 26th, 2010, 3:21 pm 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7503
Location: Australia
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.


Report this post
Top
 Profile  
Reply with quote  
PostPosted: March 20th, 2010, 12:52 pm 
Offline

Joined: April 4th, 2009, 9:59 am
Posts: 130
20March2010

Greetings.
Please see»
http://www.autohotkey.com/forum/viewtop ... 082#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
Æ


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Very Tiny Typo
PostPosted: April 20th, 2010, 3:08 pm 
Offline

Joined: March 24th, 2004, 2:34 pm
Posts: 299
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject: Down - Up, not Up - Down
PostPosted: April 24th, 2010, 8:03 pm 
Offline

Joined: October 9th, 2006, 8:19 pm
Posts: 236
Location: Finland
''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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 26th, 2010, 9:50 am 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 9th, 2010, 6:49 pm 
Offline

Joined: October 7th, 2006, 4:50 pm
Posts: 3157
Location: MN, USA
Suggested adjustment to the sentence about forcing an expression: http://www.autohotkey.com/forum/viewtopic.php?p=361589#361589.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 19th, 2010, 12:34 pm 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7503
Location: Australia
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 19th, 2010, 9:19 pm 
Offline

Joined: March 2nd, 2007, 7:25 am
Posts: 57
Location: Germany
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 25th, 2010, 2:03 am 
Offline

Joined: October 7th, 2006, 4:50 pm
Posts: 3157
Location: MN, USA
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 25th, 2010, 7:22 am 
Offline
User avatar

Joined: December 26th, 2005, 4:40 pm
Posts: 8776
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 31st, 2010, 6:36 am 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7503
Location: Australia
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".


Report this post
Top
 Profile  
Reply with quote  
PostPosted: August 10th, 2010, 2:19 am 
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.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2010, 1:25 pm 
Offline

Joined: October 9th, 2006, 8:19 pm
Posts: 236
Location: Finland
An explicit error:
SplashTextOn / SplashTextOff wrote:
ControlSetText, Static1, NewText, <insert title of splash window>

(Should be "text of splash window")

EDIT: NEVER MIND :oops:

_________________
Pekka Vartto


Last edited by svi on August 24th, 2010, 6:18 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 24th, 2010, 4:28 pm 
svi wrote:
(Should be "text of splash window")

...huh? I don't think so...


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 192 posts ]  Go to page Previous  1 ... 4, 5, 6, 7, 8, 9, 10 ... 13  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: Google Feedfetcher and 2 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group