So simply putting a temporary button on card 1 of the stack, containing the following script allowed me to lock text in all fields and make the fields not focusable:
on mouseUp repeat with j = 1 to the number of cards go card j repeat with x = 1 to the number of fields set the traversalOn of field x to false --make field not focusable end repeat end repeat end mouseUp
repeat with j = 1 to the number of cards
go card j
repeat with x = 1 to the number of fields
set the traversalOn of field x to false
end repeat
end repeatM
On Jun 30, 2004, at 5:24 PM, Marian Petrides wrote:
I have a stack with a very large number of cards. Now that I am done entering text into the fields on these cards, I want to be sure that each field is locked and that it is not focusable.
Is there a way to set these properties from script? I'd hate to have to check each and every one manually.
And, yes, I did look in the dox, even searched but I don't see a property called focusable, nor one called locked.
Thanks.
M
_______________________________________________ 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
