Question
Flash Animate AS 3.0 - reset game fx issue
reset game function issue when publishing to an .exe
Code...
//Reset Game Function
function resetGame(event:MouseEvent){
var url:String = stage.loaderInfo.url;
var request:URLRequest = new URLRequest(url);
navigateToURL(request,"_level0");
}
The above code works in the .swf format but when published as a Win projector file (.exe), it only returns a blank screen after it is initiated. How do I fix this?
