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


Click here to return to the 'CORRECT FIX! Use option-equals!!' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
CORRECT FIX! Use option-equals!!
Authored by: Lectrick on Jan 24, '07 01:57:13PM
In the above referenced txt there is a question mark due to a possible encoding error of the character that is formed when you hold down option and press equals (≠). This is a standard applescript "not equals" operator.

So, if you really want to fix this without commenting out the error handling as suggested by others, change

if errnum ? 2 then

to

if errnum ≠ 2 then

Enjoy!

---
In /dev/null, no one can hear you scream

[ Reply to This | # ]

CORRECT FIX! Use option-equals!!
Authored by: Skeeve on Jan 25, '07 01:52:51AM

Oops! Didn't see that you already posted a correct fix. Thanks for that. Unfortunately a not-equal sign seems to be undisplayable here.



[ Reply to This | # ]