Just tried it again, same result, I mistyped the script though, it should be:


function CheckKey theKey
    if theKey is a number then return true
    if theKey is "," then return true
    if theKey is "-" then return true
    return false
end CheckKey

Not that it matter too much since the crash happen regardless of the contents of theKey, haven't tried it, cos I don't want to crash again, but, yes, I think it's the 'a' that is causing the problem, since I am pretty sure I've used"


theKey is a ","

Contruct before.

All the Best
Dave


Dave,

Can't check for a crash right now.. It would be a surprise and not good
behavior but...

My guess is your script would work fine if you didn't use the "a" word... As
in:

function CheckKey theKey
    if theKey is a number then return true
    if theKey is "," then return false
    if theKey is "-" then return false
    return true
end CheckKey

The worst thing your script should do is generate an error "," is an
undefined property or some such thing.

--
Jim

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to