tahlyn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot display youtube video in wordpress 2forgot to mention something else. The reason I have coded the YouTube Flash object inside a SCRIPT is because of the changes to IE7 in regards to how it handles embedded (“active”) content and applications. More information can be found here:
https://www.adobe.com/devnet/activecontent/articles/devletter.html
Forum: Fixing WordPress
In reply to: Cannot display youtube video in wordpress 2I see in my last post the encoded characters didn’t show up properly. The code I see in view source looks like this:
Forum: Fixing WordPress
In reply to: Cannot display youtube video in wordpress 2YouTube video isn’t showing up on my blog either. Here’s my issue. This code works fine in a standard HTML page:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','width','425','height','350','src','https://www.youtube.com/v/fqRJ9GfIJtI','pluginspage','https://www.macromedia.com/go/getflashplayer','wmode','transparent','quality','high','movie','https://www.youtube.com/v/fqRJ9GfIJtI' ); //end AC code
</script>
However, when I paste this code into the wordpress editor (I have the WYSIWYG editor turned off under profiles and options), and click “publish” it doesn’t show up in the browser.
When I view source in the browser, this is the code I see:
<script type="text/javascript"><br />
AC_FL_RunContent( ‘codebase’,'https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0′,’width’,'425′,’height’,'350′,’src’,'https://www.youtube.com/v/fqRJ9GfIJtI’,'pluginspage’,'https://www.macromedia.com/go/getflashplayer’,'wmode’,'transparent’,'quality’,'high’,'movie’,'https://www.youtube.com/v/fqRJ9GfIJtI’ ); //end AC code<br />
</script>
Even with the wordpress editor set to text, the editor seems to be encoding the single quotes and other characters.
How do I turn off encoding for these scripts?
thanks for any help…..