Archive for February 10th, 2008

10
Feb

Mouse Event - over

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

In AS3 mouse event a handled differently than in AS2. Here is the general procedure for adding a mouse over event to a object.

Mouse Event - over
// you will need a movieclip on the stage with an instance name of cir_mc
// or just download the file above (www.flashcs.org)

cir_mc.addEventListener(MouseEvent.MOUSE_OVER, clickListner);

function clickListner(ev:MouseEvent):void{
	trace("Mouse Over Circle");
}

Found this useful? How about buying me a coffee - simply click here.

10
Feb

Creating ActionScript 3.0 components in Flash

It’s so massive that its currently only available as a series of PDFs. It’s the article everyone has been waiting for from Adobe:

Create ActionScript 3.0 components in Flash CS3 Professional

Found this useful? How about buying me a coffee - simply click here.




Close
E-mail It