tags:

views:

10

answers:

3

as in topic, this is working fine in bin debug , but now outside i use this construciton

bm = BrowserManager.getInstance();
bm.init("","Welcome!");
var o:Object = URLUtil.stringToObject(bm.fragment, "&");
first.text = o.firstPar;
A: 

event this not workign in bin-release

first.text = ExternalInterface.call("window.location.href.toString");

but it is working really great in bin-debug

try first.text = ExternalInterface.call("eval", "window.location.href");
adamcodes
A: 

Did you copy the HTML in bin-debug to bin-release.. if not, try copying it and open again. maybe you coded the javascript in bin-debug but not in bin-release

Treby
A: 

solution was that i cant't run flex and read querry par on local, there is need to run in on localhost or on remot server