Re: [Flashcoders] status bar humbug

2006-01-11 Thread Amanda Kuek
Thanks for your reply Paul, What I found was happening was, something like window.status=msg only had effect if one was getting it off the webserver. It didn't work on the version on my local machine. Glad that's sorted out! On 10/01/06, Paul BH <[EMAIL PROTECTED]> wrote: > The solution I am usi

Re: [Flashcoders] status bar humbug

2006-01-09 Thread Paul BH
The solution I am using is much the same as yours: //JavaScript: function displayStatus(theStatus){ var msg = theStatus; window.status = msg; } Bear in mind though that this will not work in Firefox (and possibly Safari - havent checked on a mac) - on these browsers, Javascript ca

[Flashcoders] status bar humbug

2006-01-08 Thread Amanda Kuek
Hello Listites, I'm having a great deal of difficulty getting a message to show in the browser window status bar from my swf. I wanted the appropriate button rollovers to show the URL of the page they linked to. I thought the following code should do the trick: //On the button on (rollOver) {