RECIPE

Create a new mainstack.
Create a field, say called TEST, and a button say called TYPE.
put the following script into the button:

on mouseUp
   type "something is missing"
end mouseUp

Make sure that the text in field "test" - the only field - is NOT 
selected, and then click on the button "Type".  You should see the 
hilite of the button flash on and off in a loop which results in a 
freeze until you press command-period on the Mac (which unfortunately 
does not always work) or Control-Alt-Delete on Windows which usually 
forces you to quit Revolution.

On the other hand, if you alter the script to :

on mouseUp
   select text of card field "test"
   type "nothing is missing"
end mouseUp

then everything is fine and dandy.

I think all this proves the point of my earlier emails about the TYPE command.

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

Reply via email to