AutoHotkey Community

It is currently May 27th, 2012, 11:04 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 22 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Pre-1.0.26 Changes
PostPosted: January 13th, 2005, 4:17 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following change has been applied to the installer:

Fixed := so that it's not necessary to have a space to its left. [thanks unnamed.ahk]


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 15th, 2005, 10:18 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following change has been applied to the installer:

Improved FileSelectFile with a easier multi-select option. Although the old multi-select option will continue to function as before, it has been marked obsolete in the help file due to the difficulty of parsing its results. [thanks 3tones]


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 15th, 2005, 10:43 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following change has been applied to the installer:

Fixed crash when the := operator was used to compare the result of a sub-expression to a non-numeric string. [thanks unnamed.ahk]


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 16th, 2005, 3:11 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following change has been applied to the installer:

Fixed string concatenation such as Var = %Var% Test, which was partially broken by v1.0.25. This affected only concatenations that required one or more spaces to be trimmed from the left side due to AutoTrim being ON. [thanks namazu(catfish)]


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 20th, 2005, 12:03 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following changes have been applied to the installer:

Fixed mouse button hotkeys that use only WIN or ALT as a modifier so that they do not display the Start Menu or activate the active window's menu bar, respectively. This problem occurred only in scripts that were not using the keyboard hook. [thanks Kijuto Riddle]

Fixed scripts that assign the mouse to be AltTab, ShiftAltTab, and other alt-tab actions so that they activate the keyboard hook, which is required for their proper operation. [thanks Jonny]

Improved StringReplace with an option to store the number of replacements in ErrorLevel.

Also, a no-install (zip file) version is now available at the link above.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 24th, 2005, 12:18 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
v1.0.25.06 has been released. See the changelog for details.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 25th, 2005, 1:56 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following changes have been applied to the installer:

Changed SplitPath to better support URLs. See SplitPath for details.

Added built-in variables true and false, which contain 1 and 0. They can be used to make a script more readable. Example: CaseSensitive := true


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 26th, 2005, 12:14 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
The following changes have been applied to the installer:

Fixed hotstrings: Previously, when you pressed Enter to trigger a replacement, Ctrl+Enter was sent instead of Enter. [thanks Trinity & h67o]

Fixed slider controls so that a starting position outside the range 0-100 is possible upon creation. [thanks bahri]


By the way, does anyone know how in HTML to indicate that a page (preferably just part of it) should always refresh when a visitor visits it? Currently, visiting the download page sometimes requires a manual refresh to see the latest version. Thanks.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 26th, 2005, 12:50 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5347
Location: UK
Chris wrote:
By the way, does anyone know how in HTML to indicate that a page (preferably just part of it) should always refresh when a visitor visits it? Currently, visiting the download page sometimes requires a manual refresh to see the latest version. Thanks.
See http://www.learnthat.com/courses/computer/metatags/refresh.html
Edit: you could refresh part of a page by using iframe (with no border).


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 26th, 2005, 1:53 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Thanks.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 26th, 2005, 11:09 pm 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
the recent change in installer that adds "" to ahk's path in reg entries has broken many scripts, including IntelliSense.

please confirm if this is going to remain so. i'll need to modify quite some scripts (local and in forum).

_________________
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2005, 3:26 am 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
I think it should stay that way unless someone says it prevents the open/run/compile context menu items from working. This change was made because it was reported that on some systems, those menu items fail to work without the quotes.

Sorry for the inconvenience.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2005, 8:17 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
earlier i had StringTrimLeft on my mind to fix those scripts. but now i've used StringReplace, so even if u someday go back to old usage, the scripts won't need a fix. :)

_________________
Image


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 27th, 2005, 2:27 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Good idea. If any of your scripts in the showcase or inside the installer or help file need updating, please let me know. I know I still have to add your latest script to the showcase.


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 28th, 2005, 7:40 am 
Offline

Joined: March 28th, 2004, 3:53 pm
Posts: 1870
The Intellisense included in installer is broken. The TextPad installation script also uses the same routine so that should also require the fix. I've fixed my local scripts and the ones in forum. The only fix needed is the last line of this code:
Code:
;Gets path to AutoHotkey folder
RegRead, AHKPATH, HKEY_CLASSES_ROOT, AutoHotkeyScript\Shell\Run\Command,
StringGetPos, POS, AHKPATH, \AutoHotkey.exe
StringLeft, AHKPATH, AHKPATH, %POS%
StringReplace, AHKPATH, AHKPATH, ",, A

_________________
Image


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 22 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot 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