Posts: 312
Name: Jason Eyermann
Location: england bristol
|
thanks for that, and sorry for not looking up one inch and seeing
"How to Add Flash, Video, and Audio to Web Pages"
adam. before i saw your post i used the link above and got the result -
HTML Code:
<object type="application/x-shockwave-flash" data="c.swf?path=indexflashone.swf" width="620" height="145">
<param name="movie" value="c.swf?path=indexflashone.swf" />
<param name="wmode" value="transparent" />
</object>
But the write up said I had to use a holder with some action script in, i named it just c.swf-
HTML Code:
onLoad = function() {
loadMovie("indexflashone.swf" ,0);
}
which is the same as yours expect for the holder.
Just incase you were wondering what the heck the holder is for (but you prob knew it anyway). The website ( http://www.alistapart.com/articles/flashsatay) quotes -
"The only problem with the code I had is that IE/Windows doesn’t stream the movie. It waits for the whole movie to download and then plays it. This is fine for very small movies, as the wait isn’t that noticeable. So, how about creating a very small container movie, which in the first frame loads in the real movie we want to play?"
I'm not really sure if it would make anydifference anyway, plus it's a bit of a hack.
|