Thread: Putting flash into a website.
Results 1 to 2 of 2
Related
-
Auto install flash player to the client where the flash.exe was located on server Forum: Graphics Forum
Replies: 1 -
Install flash game on website Forum: HTML Forum
Replies: 5 -
Putting a music player on my website Forum: HTML Forum
Replies: 0 -
I need help with putting more music in my website Forum: HTML Forum
Replies: 1
-
06-21-2003, 08:38 PM #1
Putting flash into a website.
What's the HTML coding for this?
-
06-22-2003, 11:14 AM #2
taken off www.dejanews.com hope it helps
************************************************
You can't with current implementations. It's an either/or deal
You can have:
Mozilla and Opera or:
MSIE and Opera:
but *not* MSIE and Mozilla.
For Mozilla and Opera use as above adding the PARAMs you want, but not a
"src" or "movie" PARAM.
For MSIE and Opera:
<object data="some.swf" classid="whateverthatlongnumberIEneeds">
<param name="src" value="some.swf">
...
</object>
Opera uses the data attribute and ignores the classid attribute.
MSIE does the opposite. Works well.
Unfortunately, (If anyone knows different, please say!) Mozilla doesn't
ignore the classid attribute and gets all confused by this.
************************************************