If you embed a flash video the video lays over the toolbar and you are no more able to click any of the toolbar items. For e.g. take any youtube video and add it to a node, than scroll the node bottom until the flash overlays the toolbar.

CommentFileSizeAuthor
#8 Google ChromeScreenSnapz001.png100.45 KBrobbdavis

Comments

bleen’s picture

Status: Active » Closed (fixed)

Are you using wmode=transparent or wmode=opaque in your tags? This is not really a Drupal issue, but rather its a Flash issue. Unless you explicitly set a wmode Flash ignores all z-index handling and forces itself on top of everything else on the page. Check out http://joshuaink2006.johnoxton.co.uk/blog/82/flash-content-and-z-index

hass’s picture

Status: Closed (fixed) » Active

Seems not working in Firefox 3.5 with transparent:

<object width="640" height="505">
  <param value="http://www.youtube.com/v/foo" name="movie"/>
  <param value="true" name="allowFullScreen"/>
  <param value="always" name="allowscriptaccess"/>
  <param value="transparent" name="wmode"/>
  <embed width="640" height="505" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/foo"/>
</object>
bleen’s picture

Status: Active » Closed (fixed)

Actually ... only Internet Explorer recognizes the <param> tag; Firefox, Safari & Chrome rely on the <embed> tag. Try this:

<object width="640" height="505">
  <param value="http://www.youtube.com/v/foo" name="movie"/>
  <param value="true" name="allowFullScreen"/>
  <param value="always" name="allowscriptaccess"/>
  <param value="transparent" name="wmode"/>
  <embed width="640" height="505" allowfullscreen="true" allowscriptaccess="always" type="application/x-shockwave-flash" src="http://www.youtube.com/v/foo"  wmode="transparent"  />
</object>

If that doesn't work, please provide a URL

hass’s picture

Category: bug » support
Status: Closed (fixed) » Fixed

Ok, this works... I thought EMBED is IE only and OBJECT for all others... :-(

bleen’s picture

Status: Fixed » Closed (fixed)

this was never a bug, so there was nothing to fix ... issue closed

hass’s picture

Status: Closed (fixed) » Fixed

This was a support fix and it was solved, therefore fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

robbdavis’s picture

Version: 7.x-dev » 7.0-rc2
Priority: Normal » Major
Status: Closed (fixed) » Needs review
StatusFileSize
new100.45 KB

Hi,

I am having a major problem with the embedding of a you tube / flash video into a node. The video overlays and blocks out the menu and administration windows.

Seeing as the new administration overlay is so key to drupal 7, I don't think you can just say it's a flash issue. Embedding a you tube video is very common and I can see this leading to major problems with any newbie.

Is there a module I'm supposed to use to embed flash code (as it is copied from youtube) into text areas so that it doesn't conflict with the administration overlay?

robbdavis’s picture

Status: Needs review » Closed (duplicate)

I moved the above problem to a new issue que related to d7 overlay module specifically.

So I'm closing this one.