On 10/12/05 2:22 PM, "Jim Hurley" <[EMAIL PROTECTED]> wrote:
> What puzzles me is that the card apparently gets the keyDown message > before the field does. That is exactly what I am looking for, but I > don't quite see why. If I'm typing in a field, why doesn't the > field get the message before the card? Is that the priority that is > set when the text is not locked, i.e. card first, field last? No... in fact I created a simple test stack with a field with this script: on keyDown put "Field" after msg pass keydown end keyDown and a card script that said: on keyDown put "Card" after msg pass keydown end keyDown And when I clicked in the field, the message box read: FieldCard So the field is definitely getting the message first (which is what I would expect). Ken Ray Sons of Thunder Software Web site: http://www.sonsothunder.com/ Email: [EMAIL PROTECTED] _______________________________________________ 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
