Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Embed Flash with HTML extension?
Is there anyway to do this? No flash seems to embed for me? Using code directly like this:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="457" height="288">
<param name="movie" value="http://www.eurolow.com/uploads/caddyhopper.swf">
<param name="quality" value="high">
<parm name="menu" value="false">
<embed src="http://www.eurolow.com/uploads/caddyhopper.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="457" height="288">
</embed>
</object>
0
This discussion has been closed.
Comments
"/<[\/]*(link|iframe|frame|frameset|object|embed|style|applet|meta)[^<]*?>/i",
this is the minimum code required to use swfobject (via their site)
<script type="text/javascript" src="swfobject.js"></script> <div id="flashcontent"> This text is replaced by the Flash movie. </div> <script type="text/javascript"> var so = new SWFObject("movie.swf", "mymovie", "200", "100", "7", "#336699"); so.write("flashcontent"); </script>
this will probably confuse most people. "Whats 200 mean?", "What's #336699?".
If you wanted to use it i suppose you could just upload the folder to the js folder in vanilla, and via htmformatter extension default.php create a new line
$Head->AddScript("js/swfobject.js.");
then use the code above to embed movies.