Login or Sign up Help | Site Map
Connecting Tech Pros Worldwide

onload function won't run flash in NS7

Question posted by: btopenworld (Guest) on July 20th, 2005 11:38 AM
I have a Flash movie with parameter 'autoplay' set to false. The movie is
started using a Macromedia javascript function via onload. This is OK in IE
but Netscape 6 doesn't run the movie - it appears to be waiting for
something, even though everything else is downloaded. If I set the movie to
autoplay it runs fine but of course begins too early.

This is the Macromedia script:

function MM_controlShockwave(objStr,x,cmdName,frameNum) { //v3.0
var obj=MM_findObj(objStr);
if (obj)
eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?fr ameNum:'')+')');
}

It calls the standard Macromedia findObj function - the movie is named
'movie1'.

Any ideas gratefully received.

John


Would you like to answer this question?
Sign up for a free account, or Login (if you're already a member).
Martin Honnen's Avatar
Martin Honnen
Guest
n/a Posts
July 20th, 2005
11:38 AM
#2

Re: onload function won't run flash in NS7


btopenworld wrote:
[color=blue]
> I have a Flash movie with parameter 'autoplay' set to false. The movie is
> started using a Macromedia javascript function via onload. This is OK in IE
> but Netscape 6 doesn't run the movie - it appears to be waiting for
> something, even though everything else is downloaded. If I set the movie to
> autoplay it runs fine but of course begins too early.
>
> This is the Macromedia script:
>
> function MM_controlShockwave(objStr,x,cmdName,frameNum) { //v3.0
> var obj=MM_findObj(objStr);
> if (obj)
> eval('obj.'+cmdName+'('+((cmdName=='GotoFrame')?fr ameNum:'')+')');
> }
>
> It calls the standard Macromedia findObj function - the movie is named
> 'movie1'.
>
> Any ideas gratefully received.[/color]

Scripting of Flash depends on the Netscape and the Flash version, if I
remember it correctly then Netscape 6.0 and 6.1 can't script Flash and
Netscape 6.2 and Netscape 7 can only do it with some Flash version 6.5x
or later. And if you are using MM_something functions then better ask in
a Macromedia Flash support group, if they provide something that doesn't
work then they should fix it, and other users are more likely able to
tell you whether it should work.
Here in the group you will find hardly anyone suggesting to use eval, I
guess
if (obj && typeof obj[cmdName] != 'undefined') {
if (cmdName == 'GotoFrame') {
obj[cmdName](frameNum);
}
else {
obj[cmdName]();
}
}
should do without any need for eval.

--

Martin Honnen
http://JavaScript.FAQTs.com/


Paul Gorodyansky's Avatar
Paul Gorodyansky
Guest
n/a Posts
July 20th, 2005
11:39 AM
#3

Re: onload function won't run flash in NS7
Hi,

Martin Honnen wrote:[color=blue]
>
>
> --
>
> Martin Honnen
> http://JavaScript.FAQTs.com/[/color]

Martin, your site does not work sowehow today (I used it before)... :(


--
Regards,
Paul Gorodyansky
"Cyrillic (Russian): instructions for Windows and Internet":
http://ourworld.compuserve.com/homepages/PaulGor/

Martin Honnen's Avatar
Martin Honnen
Guest
n/a Posts
July 20th, 2005
11:40 AM
#4

Re: onload function won't run flash in NS7


Paul Gorodyansky wrote:
[color=blue]
> Martin Honnen wrote:[color=green]
>> http://JavaScript.FAQTs.com/[/color]
>
>
> Martin, your site does not work sowehow today (I used it before)... :([/color]

I can't remedy that myself as the whole www.faqts.com server has
problems serving its content but I have asked the guys running faqts to
look after it.

--

Martin Honnen
http://JavaScript.FAQTs.com/


 
Not the answer you were looking for? Post your question . . .
184,038 Experts ready to help you find a solution.
Sign up for a free account, or Login (if you're already a member).

Latest Articles: Read & Comment
  • Didn't find the answer you were looking for?
    Post Your Question
  • Top Community Contributors