Topic: Need advice on conversion
I have been using the free Simpleviewer. Purchased Pro to support multi-line captions.
The existing code is, embedded in a more complex web page, is:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="760" height="617" align="middle">
<param name="movie" value="viewer.swf">
<param name="quality" value="high"><param name="SCALE" value="noborder">
<param name="wmode" value="transparent">
<embed src="viewer.swf" width="760" height="617" align="middle" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" scale="noborder" wmode="transparent"></embed>
The equivalent for Pro seems to be:
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
jQuery(document).ready(function () {
SV.simpleviewer.load('sv-container', '100%', '100%', '222222', true);
});
</script>
<div id="sv-container"></div>
Totally different way of launching the viewer. I am not sure how to translate the old to the new. Can someone provide some guidance?