on rawKeyUp
if the number of chars in me = the number of chars in field
"MyField" then JobIsDone --
end rawKeyUp
on JobIsDone
if me = field "MyField" then
put field "MyField" into field "MyName"
else beep
go to card 1
if end
end JobIsDone
The ref
ME is where I type in a input from the keyboard, using a text field, can't
it be used like that?
At 11:19 PM 3/21/2005, you wrote:
Paul
There are a couple of potential problems here.
First, "me" is a reserved Revolution keyword (see the Dictionary in the docs).
Second, whatever you decide to
Paul
There are a couple of potential problems here.
First, "me" is a reserved Revolution keyword (see the Dictionary in the
docs).
Second, whatever you decide to replace "me" with needs to be a global
variable or both handlers can't access its value.
Dan
On Mar 21, 2005, at 8:28 PM, Paul Sa
on rawKeyUp
if the number of chars in me = the number of chars in field "MyField"
then JobIsDone --
end rawKeyUp
on JobIsDone
if me = field "MyField" then
put field "MyField" into field "MyName"
else beep
go to card 1
if end
end JobIsDone
Dear Re