stopping Handlers
Jerry Muelver
jerry at hytext.com
Thu Jan 12 16:01:15 EST 2006
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
More information about the use-livecode
mailing list