AutoHotkey Community

It is currently May 26th, 2012, 3:17 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: March 8th, 2009, 11:01 am 
Offline

Joined: October 28th, 2007, 10:41 am
Posts: 75
Location: Hungary, Érd
The new Autohotkey has very good features, for example support WheelRight. It requires at least Windows Vista. But AutoHotkey doesn't support “at least” os version check, I must use
Code:
if ( A_OSVersion == "WIN_VISTA" )

and update it if a new windows released, or I can use
Code:
if A_OSVersion in WIN_NT4,WIN_95,WIN_98,WIN_ME,WIN_2000,WIN_XP,WIN_2003

and it is maybe a little slow.

So, it can be easier:
Code:
if ( A_OSVersionInteger >= 8 )

_________________
Portable Keyboard Layout
Happy Sunday


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2009, 2:17 pm 
Offline

Joined: October 17th, 2006, 4:15 pm
Posts: 7502
Location: Australia
An alternative:
Code:
A_OSMajorVersion := DllCall("GetVersion") & 0xff
A_OSMinorVersion := DllCall("GetVersion") >> 8 & 0xff
MsgBox % A_OSMajorVersion "." A_OSMinorVersion

For A_OSVersion >= WIN_VISTA:
Code:
if A_OSMajorVersion >= 6
See MSDN: Operating System Version

Note that if compatibility mode is in effect for AutoHotkey.exe, A_OSVersion and GetVersion() report the "fake" version number, but WheelLeft/WheelRight may still be supported if the script is really running on Vista+.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: March 8th, 2009, 9:56 pm 
Offline

Joined: October 28th, 2007, 10:41 am
Posts: 75
Location: Hungary, Érd
Thank you for the very fast reply, and this is an useful alternative!

_________________
Portable Keyboard Layout
Happy Sunday


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC [ DST ]


Who is online

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