[Captivate 6] non scalable swf project
Hi there,
We have a requirement to publish our eLearning projects in swf format with 1000x700 resolution, however when we publish the project it get displayed as 100% browser window size, which results in blurry images..
I did some research and some suggest adding instruction to the html file to force specific width and height but I don't seem to find the way to do it.
here is the html file for your reference :
-------------------------------------------------------
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- Copyright [2012] Adobe Systems Incorporated. All rights reserved -->
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="captivate.css" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>STAN Training Module</title>
<!-- Include external JS files -->
<script language="JavaScript1.2" src="standard.js" ></script>
<script language="JavaScript1.2" src="scormdriver.js" ></script>
<script language="JavaScript1.2" src="SCORM_utilities.js" ></script>
<script language="JavaScript1.2" src="Utilities.js" ></script>
<script language="JavaScript1.2">
//Register event handlers
window.onkeypress = CheckForDebugCommand;
window.onload = OnloadActivities;
window.onbeforeunload = Finish;
window.onunload = Finish;
document.onkeypress = CheckForDebugCommand;
</script>
</head>
<body>
<div id = "CaptivateContent">
<noscript>
This course requires JavaScript to be enabled in your browser.
Please enable JavaScript, then relaunch the course.
</noscript>
</div>
</body>
</html>
---------------------------------------------
