| Summary: | [Website] Screencast does not show up in IE7 | ||
|---|---|---|---|
| Product: | [RT] RAP | Reporter: | Ralf Sternberg <rsternberg> |
| Component: | Website | Assignee: | Project Inbox <rap-inbox> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | tbuschto |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Ralf Sternberg
The same applies to IE 8 Try this:
<object width="600" height="375">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=12665551&server=vimeo.com&show_title=1&show_byline=0&show_portrait=0&color=ffffff&fullscreen=1" />
<object data="http://vimeo.com/moogaloop.swf?clip_id=12665551&server=vimeo.com&show_title=1&show_byline=0&show_portrait=0&color=ffffff&fullscreen=1"
type="application/x-shockwave-flash"
allowfullscreen="true" allowscriptaccess="always"
width="600" height="375" >
<p> NO PLUGIN TEXT </p>
</object>
</object>
Apparently my code works in IE8, but not IE7. Next try: This should manage to render the "NO PLUGIN TEXT" in all version of IE.
<object width="600" height="375">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie"
value="http://vimeo.com/moogaloop.swf?clip_id=12665551&server=vimeo.com&show_title=1&show_byline=0&show_portrait=0&color=ffffff&fullscreen=1"
/>
<!--[if !IE]>-->
<object
data="http://vimeo.com/moogaloop.swf?clip_id=12665551&server=vimeo.com&show_title=1&show_byline=0&show_portrait=0&color=ffffff&fullscreen=1"
type="application/x-shockwave-flash"
allowfullscreen="true" allowscriptaccess="always"
width="600" height="375" >
<!--<![endif]-->
<p> NO PLUGIN TEXT </p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
Source: http://perishablepress.com/press/2007/04/17/embed-flash-or-die-trying/#nested
IE6 has bigger issues however, with the main content not being displayed at all. (Has nothing to do with the flash stuff.)
Fixed and committed to CVS HEAD. |