Page 1 of 1

Documenting Custom Properties

Posted: Mon Oct 26, 2009 1:32 am
by phaworth
Anyone know of a utility that will display/print all the custom properties for all or objects in a group/card/stack?
Thanks,
Pete

Posted: Mon Oct 26, 2009 11:05 pm
by BvG
how about this (untested):

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
there all in an easy to parse array, i'm sure you can go on from here.

Posted: Tue Oct 27, 2009 1:34 am
by phaworth
Thanks, I'll give that a try.
Pete