Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

Since you seem to be using Flex, there is no need for JavaScript injection. You can use an IBrowserManager to access this information:

var url:String = BrowserManager.getInstance().url;

This interface offers quite a few other possibilities to interact with the browser, which you can read about in the docs.

share|improve this answer

" If its possible to Read the address Bar URL"

Yes it is possible using:

import flash.external.*;
var curUrl:String =  String( ExternalInterface.call(" function(){ return document.location.href.toString();}"));
share|improve this answer
nope not possible... If different servers... – Akshay Nov 26 '12 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.