Creating swf file from one swf
Hi,
Can i create a another swf fie when clicking from main swf.
i did this but its giving me an output into another IE browser. i want to open a new window like main swf and not into IE browser i had this code,
videoBtn.addEventListener(MouseEvent.CLICK,openSwf1 );
function openSwf1(event:MouseEvent):void
{
var request:URLRequest=new URLRequest("whateverswf.swf");
navigateToURL(request);
}
can anyone help me to do that?
Thanks