You could also try changing the Flash 'quality' param.
Possible values are low, autolow, autohigh, medium, high and best.
See here for details: http://kb2.adobe.com/cps/127/tn_12701.h … ble_values
You should set the param in the following manner:
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var params={};
params.quality="best";
jQuery(document).ready(function () {
SV.simpleviewer.load("sv-container", "75%", "75%", "transparent", true, null, params, null, false);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
Steven Speirs
SimpleViewer Support Team