|
|||
|
when i had already loaded a page by using
createControl("Shell.Explorer.2", 00,00, 100, 100); then there is a link in that page, how do i track it's URL after i click it's link. like: document.URL (javascript) Thanks for your kindness |
|
|||
|
I have got it.
By doing this. //Initialize var _baseIE = createControl("Shell.Explorer.2", 1000,1000, 0, 0); var _baseURL; _baseIE.activex.NavigateComplete2 = function (control, url) { _baseIE.window.move(0, 0, 400, 250); //Dialogs.msgBox(url); _baseURL=url; } var _url="http://localhost/test.html"; _baseIE.activex.navigate2(_url); and //Trace Dialogs.msgBox(_baseURL); ================================== *in .swf c.onRelease = function() { fscommand("ffish_run", "Trace"); } This will show u current URL. Thanks for your Great Tool. |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|