Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>I really think you should use swfobject. Download it from here: <a href="http://code.google.com/p/swfobject/downloads/detail?name=swfobject_2_2.zip&amp;can=2&amp;q=" rel="nofollow">http://code.google.com/p/swfobject/downloads/detail?name=swfobject_2_2.zip&amp;can=2&amp;q=</a></p> <p>Then get the expressinstall.swf and the swfobject.js file.</p> <p>Here is an example code for your stuff:</p> <pre><code> &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;SWFObject example&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;meta name="language" content="en" /&gt; &lt;meta name="description" content="" /&gt; &lt;meta name="keywords" content="" /&gt; &lt;script type="text/javascript" src="js/swfobject.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; var fo = new Object(); function initFlash() { fo.flashvars = {}; fo.params = { allowScriptAccess: "sameDomain" }; fo.attributes = {}; swfobject.embedSWF("smedia/camera.swf", "flashcontent", "100%", "100%", "10,1,103", "media/expressInstall.swf", fo.flashvars, fo.params, fo.attributes); } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="flashcontent"&gt;Flash will be placed here by swfobject.&lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt;initFlash();&lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>You can read more about how it works in the <a href="http://code.google.com/p/swfobject/wiki/documentation" rel="nofollow">documentation</a>.</p> <p>Rob</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload