PDA

View Full Version : DISPLAYING URL IN STATUS BAR ON IE



jdscams
April 28th, 2005, 02:06 PM
I need to have my url displayed in the bottom of internet explorer. so when I create a link in flash to an external site it displays link on the bottom of IE link any html page links do.

Is this possible to do threw actionscript or would i have to shoot it out to a external java script to make it display down there?

glkngs
April 28th, 2005, 02:09 PM
You would have to go with a java script function, that gets triggered from within flash
:)

claudio
April 28th, 2005, 02:22 PM
this.url = "http://www.kirupa.com"
getURL("javascript:window.status = '"+this.url+"';void(0);");

glkngs
April 28th, 2005, 02:29 PM
oh.. :worried:

claudio
April 28th, 2005, 02:34 PM
;)

jdscams
May 2nd, 2005, 09:25 AM
this.url = "http://www.kirupa.com"
getURL("javascript:window.status = '"+this.url+"';void(0);");

Thanks allot
apreciate it.

1 more question how would I apply that to a on roll over
Never embeded javascript in flash before

daveFelton
May 2nd, 2005, 09:28 AM
same as any action...

button.onRollOver = function() {
this.url = "http://www.kirupa.com"
getURL("javascript:window.status = '"+this.url+"';void(0);");
}

claudio
May 2nd, 2005, 09:31 AM
Anytime jdscams ;)

jdscams
May 2nd, 2005, 10:33 AM
same as any action...

button.onRollOver = function() {
this.url = "http://www.kirupa.com"
getURL("javascript:window.status = '"+this.url+"';void(0);");
}


yes but wont that open the url?
On the roll over I want the url to be displayed on the window status not open the url.
Sorry I wasnt to clear about that.

claudio
May 2nd, 2005, 10:46 AM
That wont open a new window since im using the void operator.