AutoHotkey Community

It is currently May 27th, 2012, 10:42 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 192 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 13  Next
Author Message
 Post subject:
PostPosted: February 15th, 2006, 11:55 am 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
"Small documentation glitches"
"Suggestions on documentation improvements"
"Please tidy up this f... doc!" (f for frightening...) Just joking! :wink:

Etc.

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 15th, 2006, 12:19 pm 
Offline
User avatar

Joined: December 20th, 2004, 12:19 pm
Posts: 798
Location: LooseChange911.com Ask Questions, Demand Answers █ The WTC bldgs █ shouldn't have fallen █ that fast
SanskritFritz wrote:
Suggestions please :roll:
Please continue to report typos in the documentation whenever you notice them.

Documentation typos

_________________
AutoHotkey-Hotstring.ahk - Helping the world spell "AutoHotkey" correctly! (btw, it's a lowercase k!)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 15th, 2006, 12:28 pm 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
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.

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 15th, 2006, 3:14 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
"Suggestions on documentation improvements" should make it
:-)

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 15th, 2006, 7:32 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
I've corrected the items mentioned a few posts back. Thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 18th, 2006, 5:06 am 
The link http://www.autohotkey.com/docs/misc/com ... Active.htm on this page http://www.autohotkey.com/docs/misc/Remap.htm leads to a document not found error.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 18th, 2006, 4:29 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
That's been fixed; thanks.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 10th, 2007, 3:23 pm 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
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?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 11th, 2007, 1:54 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 12th, 2007, 8:45 am 
Offline

Joined: February 17th, 2005, 10:06 am
Posts: 280
Location: Hungary, Budapest
Oops, yes true. Sorry for that, I was too quick to report it!

_________________
Is there another word for synonym?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 24th, 2007, 4:16 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
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
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 24th, 2007, 5:38 pm 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
Just in case, to reflect the conditional:
Code:
FileSelectFolder, Folder
Folder  := RegExReplace(Folder, "\\?$")  ; Remove trailing backslash if any

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 25th, 2007, 10:16 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
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.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 26th, 2007, 8:23 am 
Offline

Joined: December 27th, 2005, 1:46 pm
Posts: 6837
Location: France (near Paris)
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.

_________________
Image vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2")


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 2nd, 2007, 7:10 pm 
Offline
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8667
Location: Salem, MA
minor typo - key list - special keys section

detectible -> detectable

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 192 posts ]  Go to page Previous  1, 2, 3, 4, 5 ... 13  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 3 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