PDA

View Full Version : Window Status Bar


toxalot
10-18-2002, 10:20 PM
Is there some way to change the window status bar from within Flash?

Jennifer

jimburton
10-18-2002, 11:33 PM
yes, with javascript in a getURL:

getURL("javascript:window.status='No one looks at the status bar!';return true;");

but it will stay that way then until you set it back to something else...

toxalot
10-18-2002, 11:54 PM
That gives me an error

'return' statement outside of function

Jennifer

jimburton
10-19-2002, 12:39 AM
you're right, sorry I've tried a good few variations and it's not happening for me - someone come to our rescue...

toxalot
10-19-2002, 12:50 AM
Which Brighton are you from?

Jennifer

jimburton
10-19-2002, 12:59 AM
There's more than one? :eek: The one with the bad weather...

toxalot
10-19-2002, 01:34 AM
That still doesn't say a whole lot. :)

I just asked cuz I'm from Brighton.

Jennifer

tg
10-19-2002, 08:13 AM
not sure, but try:

getURL("javascript:window.status='" + msg + "';void(0)");

jimburton
10-19-2002, 07:48 PM
nice one tg, that's it - void(0) having the same effect as return false would in a function...thx