Forum Moderators: open
Always a newbie in html etc.... I am building my pages with dreamweaver and here is an example of the embedded code
<script type="text/javascript">
AC_AX_RunContent( 'width','250','height','250','src','http://www.youtube.com/v/XIVAGY3Jvuc&hl=en&fs=1','type','application/x-shockwave-flash','allowscriptaccess','always','allowfullscreen','true','movie','http://www.youtube.com/v/XIVAGY3Jvuc&hl=en&fs=1' ); //end AC code
</script><noscript><object width="250" height="250">
<param name="movie" value="http://www.youtube.com/v/XIVAGY3Jvuc&hl=en&fs=1" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
<embed src="http://www.youtube.com/v/XIVAGY3Jvuc&hl=en&fs=1" width="250" height="250" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true"></embed>
</object></noscript>
any ideas on how this can be fixed?
That Javascript "AC_AX_RunContent..." is probably what's hosing up the works. For YouTube video, you can go to your video on YouTube and just copy and paste that code, eliminating everything else. It's not valid code (an <embed> inside <object>) but it will get the job done.
<object width="250" height="250"><param name="movie" value="http://www.youtube.com/your youtube video url"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.comyour youtube video url" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="250" height="250"></embed></object>
[edited by: eelixduppy at 6:01 am (utc) on Aug. 8, 2009]
[edit reason] disabled smileys [/edit]