ch_bowen
03-22-2005, 03:26 PM
Hello,
I am trying to move our application to use lps 3.x and everything seems to work fine except now, the application doesn't scale and it is a fixed size at the top left hand corner of my browser window. Is there any reason for this or am I missing anything in moving to 3.x?
I am using a servlet that uses a Velocity template to take any request parameters to generate my html wrapper. Here is the code:
<html>
<body>
<!-- data="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile" width="700" height="700" -->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
<param name="movie" value="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile"/>
<param name="quality" value="high"/>
<param name="scale" value="exactfit"/>
<embed src="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile&_section=$section&_subsection=$subsection" scale='exactfit' width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" data="lzx/proxy.swf" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width='0' height='0'>
<param name="movie" value="lzx/proxy.swf"/>
<param name="quality" value="high"/>
<embed src="lzx/proxy.swf" quality="high" width='0' height='0' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</object>
</body>
</html>
I am trying to move our application to use lps 3.x and everything seems to work fine except now, the application doesn't scale and it is a fixed size at the top left hand corner of my browser window. Is there any reason for this or am I missing anything in moving to 3.x?
I am using a servlet that uses a Velocity template to take any request parameters to generate my html wrapper. Here is the code:
<html>
<body>
<!-- data="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile" width="700" height="700" -->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%">
<param name="movie" value="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile"/>
<param name="quality" value="high"/>
<param name="scale" value="exactfit"/>
<embed src="lzx/raconteur.lzx?lzt=swf&debug=$debug&_group=$group&_profile=$profile&_section=$section&_subsection=$subsection" scale='exactfit' width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" data="lzx/proxy.swf" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width='0' height='0'>
<param name="movie" value="lzx/proxy.swf"/>
<param name="quality" value="high"/>
<embed src="lzx/proxy.swf" quality="high" width='0' height='0' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
</object>
</body>
</html>