My application is integrated with the Other application as a Tab in the IFrame of Parent Application.
I want To read the Browser Address Bar URL.
Is it Possible to read.
<iframe id="myIFrameID123" src="http://192.168.1.102:8080/om/om.html?ucode=" width="100%" height="600"></iframe>
And trying to Access the Parent app URL
var search:String = ExternalInterface.call("window.location.search.toString");
var vars:URLVariables = new URLVariables(search);
If its possible to Read the address Bar URL ll be Fine... Both app running in Different JBOS.
