Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: fs command - 2nd posting |
From: | Jason Bouwmeester |
Date: | Thu, 27 Apr 2000 16:39:31 +0100 |
As far as I know that script has to be within the html code of the page that
the movie is embedded in...
Soz mang,
jb
-----Original Message-----
From: Simon Webster [swebsterministryofsound [dot] com (mailto:swebsterministryofsound [dot] com)]
Sent: Wednesday, April 26, 2000 7:28 AM
To: flasherchinwag [dot] com
Subject: FLASH: fs command - 2nd posting
Hi all, apologises if this appears twice.
I'm trying to call a particular frame in my movie from an html page. The
javascript used is as follows
<script language="JavaScript"><!--
var moviename = "rm";
var movie_ready = "false";
function movieobject(moviename)
{
//IE and Netscape refer to the movie object differently.
//This function returns the appropriate syntax depending on the browser.
if (navigator.appName.indexOf ("Microsoft") !=-1)
{
return window[moviename]
}
else
{
return document[moviename]
}
}
function go()
{
if(movie_ready == "false")
{
while(movie_ready == "false")
{
if(movieobject(moviename).PercentLoaded() ==
100)
{
movieobject(moviename).GotoFrame(100);
movie_ready = "true";
}
}
}
else
{
movieobject(moviename).GotoFrame(100);
}
}
// -->
</script>
This script works fine if it is on the page where the swf is embedded.
However, if I am calling it from a different html file it doesn't work, the
error "movieobject has no properties. " (due, I believe, to it requiring the
ID and NAME tags which are not present unless the movie is embedded into the
html page).
How do I get around this? Should I be using a different script?
All help welcomed on this wet, cold and windy day.
Simon
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the last 100 messages from the flasher list NOW
http://www.chinwag.com/flasher/last100.shtml
Flash books http://www.chinwag.com/flasher/books.shtml
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the last 100 messages from the flasher list NOW
http://www.chinwag.com/flasher/last100.shtml
Flash books http://www.chinwag.com/flasher/books.shtml
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]