i have an exe file of a game made in construct2 tool..i am trying to run it from my as3 code using url requset..but my code is not working what should i do? here is my code..
btn1.addEventListener(MouseEvent.CLICK, f_testURLOpener);
function f_testURLOpener(event:MouseEvent):void
{
var url:String = "UserGuide/carrace(banjonborno).exe";
var request:URLRequest=new URLRequest(url);
navigateToURL(request);
}
when i click btn 1 to run the game it is showing the programm's publisher could not be verified.. are construct 2 made exe files not runnable from as3?