AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Suggestions on documentation improvements
Goto page Previous  1, 2, 3, 4  Next
 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports
View previous topic :: View next topic  
Author Message
PhiLho



Joined: 27 Dec 2005
Posts: 6702
Location: France (near Paris)

PostPosted: Wed Feb 15, 2006 11:55 am    Post subject: Reply with quote

"Small documentation glitches"
"Suggestions on documentation improvements"
"Please tidy up this f... doc!" (f for frightening...) Just joking! Wink

Etc.
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
JSLover



Joined: 20 Dec 2004
Posts: 542
Location: LooseChange911.com... the WTC attacks were done by the US Gov't... the official story is a lie...

PostPosted: Wed Feb 15, 2006 12:19 pm    Post subject: Reply with quote

SanskritFritz wrote:
Suggestions please Rolling Eyes
Chris wrote:
Please continue to report typos in the documentation whenever you notice them.

Documentation typos
_________________

LooseChange911.com • See Loose Change (click image!) • LC Blog
Back to top
View user's profile Send private message
PhiLho



Joined: 27 Dec 2005
Posts: 6702
Location: France (near Paris)

PostPosted: Wed Feb 15, 2006 12:28 pm    Post subject: Reply with quote

JSLover wrote:
Documentation typos

Why not, but a bit restrictive: when I suggest to add a link to a related page, for example, this is not a typo.
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
SanskritFritz



Joined: 17 Feb 2005
Posts: 283
Location: Hungary, Budapest

PostPosted: Wed Feb 15, 2006 3:14 pm    Post subject: Reply with quote

"Suggestions on documentation improvements" should make it
Smile
_________________
Is there another word for synonym?
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10450

PostPosted: Wed Feb 15, 2006 7:32 pm    Post subject: Reply with quote

I've corrected the items mentioned a few posts back. Thanks.
Back to top
View user's profile Send private message Send e-mail
cf
Guest





PostPosted: Sat Feb 18, 2006 5:06 am    Post subject: Reply with quote

The link http://www.autohotkey.com/docs/misc/commands/_IfWinActive.htm on this page http://www.autohotkey.com/docs/misc/Remap.htm leads to a document not found error.
Back to top
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10450

PostPosted: Sat Feb 18, 2006 4:29 pm    Post subject: Reply with quote

That's been fixed; thanks.
Back to top
View user's profile Send private message Send e-mail
SanskritFritz



Joined: 17 Feb 2005
Posts: 283
Location: Hungary, Budapest

PostPosted: Tue Apr 10, 2007 3:23 pm    Post subject: Reply with quote

Again, in WinMenuSelectItem, "If this and the other 3 window parameters are blank or omitted" seems to be wrong.
_________________
Is there another word for synonym?
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10450

PostPosted: Wed Apr 11, 2007 1:54 pm    Post subject: Reply with quote

It seems okay because there's an ExcludeTitle and ExcludeText parameter at the end of the parameter list, which makes a total of four window parameters. But maybe I'm missing something.
Back to top
View user's profile Send private message Send e-mail
SanskritFritz



Joined: 17 Feb 2005
Posts: 283
Location: Hungary, Budapest

PostPosted: Thu Apr 12, 2007 8:45 am    Post subject: Reply with quote

Oops, yes true. Sorry for that, I was too quick to report it!
_________________
Is there another word for synonym?
Back to top
View user's profile Send private message
toralf



Joined: 31 Jan 2005
Posts: 3842
Location: Bremen, Germany

PostPosted: Thu May 24, 2007 4:16 pm    Post subject: Reply with quote

In the manual on FileSelectFolder
is an example how to remove a backslash
Code:
FileSelectFolder, Folder
StringRight, LastChar, Folder, 1
if LastChar = \
    StringTrimRight, Folder, Folder, 1 ; Remove the trailing backslash
With RegEx, this can be simplified to
Code:
FileSelectFolder, Folder
Folder  := RegExReplace(Folder, "\\$")  ; Remove trailing backslash

_________________
Ciao
toralf
Back to top
View user's profile Send private message Send e-mail Visit poster's website
PhiLho



Joined: 27 Dec 2005
Posts: 6702
Location: France (near Paris)

PostPosted: Thu May 24, 2007 5:38 pm    Post subject: Reply with quote

Just in case, to reflect the conditional:
Code:
FileSelectFolder, Folder
Folder  := RegExReplace(Folder, "\\?$")  ; Remove trailing backslash if any

_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10450

PostPosted: Fri May 25, 2007 10:16 pm    Post subject: Reply with quote

Thanks; I've changed it to use that method.
PhiLho wrote:
Just in case, to reflect the conditional.
I omitted the question mark because it doesn't seem necessary; but maybe I missed something.
Back to top
View user's profile Send private message Send e-mail
PhiLho



Joined: 27 Dec 2005
Posts: 6702
Location: France (near Paris)

PostPosted: Sat May 26, 2007 8:23 am    Post subject: Reply with quote

You are right, if the trailing backslash isn't here, the RE won't match and the string won't be changed. So my remark was useless.
_________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")
Back to top
View user's profile Send private message Visit poster's website
engunneer



Joined: 30 Aug 2005
Posts: 5957
Location: Pacific Northwest, US

PostPosted: Sat Jun 02, 2007 7:10 pm    Post subject: Reply with quote

minor typo - key list - special keys section

detectible -> detectable
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Bug Reports All times are GMT
Goto page Previous  1, 2, 3, 4  Next
Page 2 of 4

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group