Closed
Bug 290504
Opened 20 years ago
Closed 20 years ago
Macromedia Flash parameters that doesn't work with firefox
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: ninja_script, Assigned: bugzilla)
Details
Attachments
(1 file)
|
124.81 KB,
application/x-zip-compressed
|
Details |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; fr-FR; rv:1.7.6) Gecko/20050318 Firefox/1.0.2
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.0; fr-FR; rv:1.7.6) Gecko/20050318 Firefox/1.0.2
When I look at a page I coded with a Flash animation on it these two paramaters
are just ignored ...
<object...
<param name=menu value=false>
<param name=wmode value=transparent>
Reproducible: Always
Steps to Reproduce:
1.Start a new page
2.Set the parameters in flash
3.Look at the page
Actual Results:
Parameters are ignored
Expected Results:
Background of the flash animation should be transparent
Flash menu should not display
Comment 1•20 years ago
|
||
Example URL ?
Comment 2•20 years ago
|
||
no response
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → INVALID
| Reporter | ||
Comment 3•20 years ago
|
||
(In reply to comment #2)
> no response
I don't have a web hosting so I got no URL to give you I test in my local server
Comment 4•20 years ago
|
||
We have a "create new attachment" link here for such things....
| Reporter | ||
Comment 5•20 years ago
|
||
Comment 6•20 years ago
|
||
"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000'
codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0'
width='780' height='120' id='logo' align=''>";
echo "<param name=movie value='./pix/logo.swf'>";
echo "<param name=quality value=best>";
echo "<param name=menu value=false>";
echo "<param name=wmode value=transparent>";
echo "<param name=bgcolor value=#000000>";
echo "<embed src='./pix/logo.swf' quality=high bgcolor=#000000 width='780'
height='120' name='logo' align='' type='application/x-shockwave-flash'
pluginspage='http://www.macromedia.com/go/getflashplayer'>";
echo "</embed>";
The menu and wmode parameters are only given for the object tag but FF is using
the embed tag if present and there is no transparent tag.
invalid is the corect solution for this bug :-)
You need to log in
before you can comment on or make changes to this bug.
Description
•