Projects - Flex Builder - Hslider Application

Hslider.mxml code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:HBox top="10" left="10">
<mx:HSlider minimum="-30" maximum="30" value="-10" toolTip="Rotation" change="myimg.rotation=event.currentTarget.value" liveDragging="true" />
<mx:HSlider minimum="100" maximum="300" value="100" toolTip="Size" change="myimg.height=event.currentTarget.value" liveDragging="true" />
<mx:CheckBox label="Visible" change="myimg.visible=event.currentTarget.selected" selected="true" />
</mx:HBox>
<mx:Image id="myimg" source="@Embed('assets/luke.jpg')" height="100" top="60" left="30" rotation="-10">
<mx:filters>
<mx:DropShadowFilter />
</mx:filters>
<mx:showEffect>
<mx:Fade alphaFrom="0" alphaTo="1" duration="1000" />
</mx:showEffect>
<mx:hideEffect>
<mx:Fade alphaFrom="1" alphaTo="0" duration="1000" />
</mx:hideEffect>
</mx:Image>
</mx:Application>

html code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="Hslider" width="37%" height="51%"
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="Hslider.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#869ca7" />
<param name="allowScriptAccess" value="sameDomain" /><embed src="Hslider.swf" quality="high" bgcolor="#869ca7"
width="100%" height="100%" name="Hslider" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed> </object>