linking .swf or .fla to flash?
I have these three files in the folder:
Character-Animation.swf
Character-Animation.fla
Viz.as
MovieClip in the libarary save as: vishh
Output the way I want is stage should be EMPTY and animation play on a MOUSE CLICK.
this is the current code I have worked on...
package
{
import flash.display.MovieClip;
import flash.events.MouseEvent;
public class Viz extends MovieClip
{
public function Viz()
{
stage.addEventListener(MouseEvent.CLICK, onClick);
}
function onClick(event:MouseEvent):void
{
// code...
}
}
}
I am a beginner to this, please help!!!