the mac controlKey has its own non-ascii
numbering system as opposed to commandKeyDown
whixh uaes ascii chars:

on controlKey theKey
  if theKey is 1 then # "a"
     choose hand tool
  else if theKey is 2 then
     choose rect tool # "b"
  end if
end controlKey

on commandKeyDown theKey
  if theKey is "a" then
     choose hand tool
  else if theKey is "b" then
     choose rect tool
  end if
end commandKey

any general guidelines for compatability?


=====
[EMAIL PROTECTED]                 http://www.erikhansen.org

__________________________________________________
Do You Yahoo!?
Yahoo! Sports - Coverage of the 2002 Olympic Games
http://sports.yahoo.com
_______________________________________________
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard

Reply via email to