Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Make an AppleScript Studio application self-update' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Make an AppleScript Studio application self-update
Authored by: geowar1 on Sep 15, '11 04:00:27PM

Mac OS X 10.4 added "considering numeric strings" so that version strings will compare correctly ("10.6.2" < "10.6.10").

on CompareVersionStrings(v1, v2)
considering numeric strings
set isLess to (v1 < v2)
end considering numeric strings
return isLess
end -- on CompareVersionStrings



[ Reply to This | # ]