PANmedia / raptor-editor

Raptor, an HTML5 WYSIWYG content editor!
www.raptor-editor.com
GNU General Public License v3.0
532 stars 136 forks source link

"Click to begin editing" button appears below embedded Flash #89

Open SirFizX opened 11 years ago

SirFizX commented 11 years ago

After embedding flash within an element, the "Click to begin editing" button appears below the Flash.

See image of example: flash occlusion example

I am using Flash in an iframe. I have tried to no avail setting the z-index of iframes very low in css.

faceleg commented 11 years ago

Hi @SirFizX, thanks for letting us know about this issue.

Would you please be able to provide me with an example of the embed code you're using?

I have a hunch that we might have to look at adding the <param name="wmode" value="transparent" /> or its equivalent to it.

SirFizX commented 11 years ago

Hello Michael,

Thank you for the feedback. The users of my web application will most likely be embedding YouTube videos with the iframe code such as:

AFAIK the tag fix will only work in the case of the old style object embed code such as:

I would like to avoid restricting my users to using the approach seeing as it would present a user-unfriendly hurdle in the way of their productivity.

On another note; I like your clean modular approach to coding the Raptor Editor. I intend to shortly begin creating a few plugins, namely for superscript, subscript, mathematical and greek characters, and insert table. If you know of anyone else who has already begun or finished these types of plugins, please let me know.

Petah commented 11 years ago

Hi,

On another note; I like your clean modular approach to coding the Raptor Editor. I intend to shortly begin creating a few plugins, namely for superscript, subscript, mathematical and greek characters, and insert table. If you know of anyone else who has already begun or finished these types of plugins, please let me know.

These have all been developed and will be available in the next release (currently on the experimental branch).

https://github.com/PANmedia/Raptor/tree/experimental/src/plugins

SirFizX commented 11 years ago

Thanks for the heads up.