Still not as quite as simple as it seems:

on rawKeyDown RAWK
  switch RAWK
    case 121
      put "Fred Flintstone" into fld "fTEXT"
      break
    case 122
      put "Barney" into fld "fTEXT"
      break
    default
      put "Dino" into fld "fTEXT"
  end switch

  pass rawKeyDown
end rawKeyDown

When I press the 'q' button I get

qDino   in fld "fTEXT"

and when I press the 'y' button I get

yFred Flintstone

which is a REAL problem as I would like
Fred Flintstone without prefixes!

Obviously  pass rawkeydown sends the keydown
of those keys that have already been filtered.
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to