What is the best practice for progressively adding data to a customProperty 
that you want to be an array?  both inserting new keys into that property as 
well as changing values in the existing keys.

In this case i want an image(s) in a stack to have a custom property containing 
the necessary info for Animation Engine to do some effects. This seems like a 
good way to store this vs saving it anywhere else.

1) create image
2) add new custom property “uMyEffects”

on a button I have this:


on mouseUp

   put the rect of the last image into tRect

   set the uMyEffects["startsize"] of the last image to tRect

   CheckEffects



end mouseUp


command CheckEffects

   put the uMyEffects of the last image into tEffects

   put the keys of tEffects

end CheckEffects


result is nothing…I’m expecting to see the key


startsize


 so I’m not doing the right thing to insert a new key + data into the 
customProperty… Note that I would also want to later poke another value into 
the some custom property like


uMyEffects[“finalLoc”]



BR
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to