From: "liamlambert"
Hi all
I have this script in a button which calls three handlers
the if statement checks the fld for the card number was filled in
if it was not I want to stop calling the fsave and the fTotalSeats
Handlers
on mouseUp
if fld "paymenttype" = "credit card" then fcredit
fSave
TotalSeats
end mouseUp
Thank's
How about :
on mouseUp
if fld "paymenttype" = "credit card" then
fcredit
fSave
TotalSeats
end if
end mouseUp
------ Jerry Muelver
_______________________________________________
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