Closed
Bug 180378
Opened 22 years ago
Closed 13 years ago
macromedia.com - Flash ought to support <param name="movie..."> in addition to data attribute
Categories
(Tech Evangelism Graveyard :: English US, defect)
Tech Evangelism Graveyard
English US
Tracking
(Not tracked)
RESOLVED
INCOMPLETE
People
(Reporter: arun, Unassigned)
References
Details
(Whiteboard: [plugin])
This bug follows on the heels of bug 161891 in which we decided against
implementing special invocation params for plugins. Here is the issue:
Currently, Flash player can be invoked in Netscape/Mozilla browsers with markup
of the following kind:
<object id="myFlash" data="someFlash.swf" type="application/x-shockwave-flash"
width="366" height="142">
<param name="quality" value=high>
<param name="swliveconnect" value="true">
</object>
This is great, because we use the W3C approved "data" attribute in the object
tag. But it does not work if we use <param name="movie" src="someFlash.swf">.
For some reason, Flash in Gecko does not recognize the <param name="movie"..."
invocation, but does recognize the data attribute invocation.
It would be nice if Flash could support *all* their params, including param
name="movie" which is a very well known way of invoking Flash.
Reporter | ||
Comment 1•22 years ago
|
||
The attachment that goes with bug 161891 shows what goes wrong:
http://bugzilla.mozilla.org/attachment.cgi?id=94992&action=view
Reporter | ||
Comment 2•22 years ago
|
||
Incidentally, IE does NOT recognize data attribute, but only recognizes param
name="movie" param. Thus, IE has the reverse problem that we have. One single
object tag that works in IE and Mozilla might be:
<object id="myFlash" data="javascript_to_flash.swf"
type="application/x-shockwave-flash" width="366" height="142">
<param name="movie" value="javascript_to_flash.swf">
<param name="quality" value=high>
<param name="swliveconnect" value="true">
</object>
But here, data is ignored by IE, but respected by Mozilla. The param
name="movie "... is respected by IE, but ignored by Mozilla.
I have the same problem in this page:
http://spazioinwind.libero.it/magicdice/about/
and putting the "data" attribute in the object tag hasn't solved the problem.
Updated•22 years ago
|
Whiteboard: [plugin]
Comment 4•22 years ago
|
||
SPAM: New Components
Assignee: aruner → english-us
Component: Plugins → English US
QA Contact: mgalli → english-us
Updated•22 years ago
|
Summary: Flash ought to support <param name="movie..."> in addition to data attribute → macromedia.com - Flash ought to support <param name="movie..."> in addition to data attribute
*** Bug 272343 has been marked as a duplicate of this bug. ***
Updated•19 years ago
|
OS: Windows 2000 → All
Hardware: PC → All
Comment 6•13 years ago
|
||
We do forward the value to Flash, and this is a product decision on the Flash side, I don't see any reason to continue tracking it from the Mozilla side.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → INCOMPLETE
Updated•10 years ago
|
Product: Tech Evangelism → Tech Evangelism Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•