I am using flash CS5.5. I want create alert popup window in flash. When I publish LMS Meanwhile Google Chrome or Interenet Expoler used so i need to popup message.
This My code:
import flash.external.ExternalInterface; //for invoking JavaScript in
alert_btn.addEventListener(MouseEvent.CLICK, btnExitHandler);
function btnExitHandler(e:Event):void
{
ExternalInterface.call("closeCourseWindow");
}
This is my code.. What am I doing wrong?