> I am trying to copy an image that is in a stack for an object image empty,
> but it doesn't work; that makes it is to copy a dirty image for the object
> image.
> 
> Script in the object image "Visor"
> 
> on mouseUp
>     put the imagedata of image "img01" of this stack into tImageData
>     put the tImageData into the imagedata of image "Visor"
> end mouseUp
> 

Try:
   set the imageData of image "Visor" to tImageData

"put" doesn't work with properties, you have to use "set". In fact I
am surprised that this didn't give you an script error.

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

Reply via email to