[Flashcoders] Adding metadata by using as3 in Flash CS4?

2009-07-11 Thread ACE Flash
Hi There, I am curious that if there is a way to add the metadata by using as3? You are able to see the metadata window by click File => File info. Is that possible? Thank you ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chatty

Re: [Flashcoders] No MOUSE_UP event when dragged under another sprite

2009-07-11 Thread Andrei Thomaz
on mouse down, you could add a listener to stage to MOUSE_UP event, so you can be notified when the user releases the mouse. If I understood your problem correctly, that should work. best, andrei On Sat, Jul 11, 2009 at 3:56 PM, Alexander Farber < alexander.far...@gmail.com> wrote: > Good day, >

[Flashcoders] No MOUSE_UP event when dragged under another sprite

2009-07-11 Thread Alexander Farber
Good day, I have a class representing draggable playing cards: public dynamic class Card extends Sprite { public function Card() { addEventListener(MouseEvent.MOUSE_DOWN, handleDown); addEvent