blob: 3d53c3b6bd13d86a954ac9b3cb4c021316d2dee7 [file] [log] [blame]
<mx:VBox xmlns="*" xmlns:mx="http://www.adobe.com/2006/mxml" horizontalAlign="left" width="100%" height="100%">
<mx:Script>
<![CDATA[
[Embed(source="../../../../Assets/Images/PanelImages/PanelBackgroundSkin.swf")]
public var panelSkinSWF:Class;
[Bindable]
[Embed(source="../../../../Assets/Images/smallredrect.jpg")]
public var ticon:Class;
]]>
</mx:Script>
<mx:Style>
@namespace "library://ns.adobe.com/flex/mx";
.myPanel
{
borderSkin: ClassReference("component_Panel_SWF_BorderSkin_panelSkinSWF");
}
</mx:Style>
<mx:Panel id="myPanelBSswf" titleIcon="{ticon}" width="550" height="400" title="Title" status="{String(myBtnswf.width)}" styleName="myPanel" paddingBottom="40" paddingLeft="25" paddingTop="60" paddingRight="25" color="white" headerHeight="60" >
<mx:Canvas width="100%" height="100%" borderStyle="solid" borderColor="red">
<mx:Button id="myBtnswf" width="{myhsbs.value}" label="My Button" />
<mx:Button label="Center Button" horizontalCenter="0" verticalCenter="0" />
</mx:Canvas>
<mx:ControlBar>
<mx:HSlider id="myhsbs" minimum="0" maximum="800" value="100" width="100%" snapInterval="2"/>
</mx:ControlBar>
</mx:Panel>
<mx:Button id="BtnSwf" label="Change Panel Height and Width" click="myPanelBSswf.width=500 ;myPanelBSswf.height=400;" />
</mx:VBox>