Documenting Custom Properties
Posted: Mon Oct 26, 2009 1:32 am
Anyone know of a utility that will display/print all the custom properties for all or objects in a group/card/stack?
Thanks,
Pete
Thanks,
Pete
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on mouseUp
repeat for the number of cards in the mousestack
add one to cardNumber
repeat for the number of controls of card cardNumber
add one to controlNumber
put the customproperties of control controlNumber into theArray[the short name of the mousestack][the short name of card cardNumber of the mousestack && the ID of card cardNumber of the mousestack][the name of control controlNumber && the ID of control controlNumber]
end repeat
end repeat
end mouseUp