Is there an easy way to know how many scripts and lines of scripts do I have wrote in my application?
I only know this code
Code: Select all
put the number of lines of the script of stack "A"
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Code: Select all
put the number of lines of the script of stack "A"
Code: Select all
on mouseUp
put the name of the mousestack & return & the script of the mousestack & return & return into theResult
repeat for the number of cards in the mousestack
add one to cardNumber
put the name of card cardNumber & return & the script of the card cardNumber & return & return after theResult
repeat for the number of controls of card cardNumber
add one to controlNumber
put the name of control controlNumber & return & the script of control controlNumber & return & return after theResult
end repeat
end repeat
put theResult into field "result"
end mouseUp