[rnbrowse-commits] SF.net SVN: rnbrowse:[151] branches/RNBGUI/src/RNBGUI.mxml
Brought to you by:
cjsoftuk
|
From: <dav...@us...> - 2008-08-01 20:59:42
|
Revision: 151
http://rnbrowse.svn.sourceforge.net/rnbrowse/?rev=151&view=rev
Author: davidisofox
Date: 2008-08-01 20:59:40 +0000 (Fri, 01 Aug 2008)
Log Message:
-----------
Modified Paths:
--------------
branches/RNBGUI/src/RNBGUI.mxml
Modified: branches/RNBGUI/src/RNBGUI.mxml
===================================================================
--- branches/RNBGUI/src/RNBGUI.mxml 2008-08-01 20:38:47 UTC (rev 150)
+++ branches/RNBGUI/src/RNBGUI.mxml 2008-08-01 20:59:40 UTC (rev 151)
@@ -23,16 +23,16 @@
<mx:SetEventHandler target="{linkbutton1}" name="click" handler="currentState=''"/>
<mx:SetProperty target="{linkbutton1}" name="label" value="Browser"/>
<mx:AddChild relativeTo="{hbox1}" position="lastChild">
- <mx:Button label="Start" click="ssStart()" icon="@Embed(source='../images/control_play_blue.png')"/>
+ <mx:Button label="Start" click="ssStart()" icon="@Embed(source='../images/control_play_blue.png')" width="73" height="22"/>
</mx:AddChild>
<mx:AddChild relativeTo="{hbox1}" position="lastChild">
- <mx:Button label="Previous" click="ssPrev()" icon="@Embed(source='../images/control_start_blue.png')"/>
+ <mx:Button label="Previous" click="ssPrev()" icon="@Embed(source='../images/control_start_blue.png')" width="94" height="22"/>
</mx:AddChild>
<mx:AddChild relativeTo="{hbox1}" position="lastChild">
- <mx:Button label="Next" click="ssNext()" icon="@Embed(source='../images/control_end_blue.png')"/>
+ <mx:Button label="Next" click="ssNext()" icon="@Embed(source='../images/control_end_blue.png')" width="71" height="22"/>
</mx:AddChild>
<mx:AddChild relativeTo="{hbox1}" position="lastChild">
- <mx:Button label="Stop" click="ssStop()" id="button3" icon="@Embed(source='../images/control_stop_blue.png')"/>
+ <mx:Button label="Stop" click="ssStop()" id="button3" icon="@Embed(source='../images/control_stop_blue.png')" width="70" height="22"/>
</mx:AddChild>
<mx:AddChild relativeTo="{hbox1}" position="lastChild">
<mx:Label text="[picname]" id="file" />
@@ -262,15 +262,15 @@
<mx:Canvas width="100%" height="100%" id="vbox1">
<mx:TileList doubleClickEnabled="true" top="0" bottom="88" right="0" itemRenderer="FileViewRender" id="files" allowMultipleSelection="true" left="0"/>
<mx:VBox height="80" styleName="upload" id="vbox2" bottom="0" left="0" right="0">
- <mx:HBox width="100%" id="hbox1" verticalAlign="middle">
- <mx:Button label="Upload" id="btnUpload" click="asUpload();" icon="@Embed(source='../images/arrow_up.png')"/>
+ <mx:HBox id="hbox1" verticalAlign="middle" height="22">
+ <mx:Button label="Upload" id="btnUpload" click="asUpload();" icon="@Embed(source='../images/arrow_up.png')" width="83" height="22"/>
<mx:ProgressBar id='pbStatus' labelPlacement="center" height="22" width="131" label=" " mode="manual" indeterminate="false"/>
</mx:HBox>
- <mx:HBox width="100%">
- <mx:Button label="Download All Files" id="btnDLAll" icon="@Embed(source='../images/package.png')" click="asDLFolder();"/>
- <mx:Button label="Download Selected" icon="@Embed(source='../images/arrow_down.png')" id="btnDlSel" click="asDLSelFiles();"/>
+ <mx:HBox height="22">
+ <mx:Button label="Download All Files" id="btnDLAll" icon="@Embed(source='../images/package.png')" click="asDLFolder();" width="147" height="22"/>
+ <mx:Button label="Download Selected" icon="@Embed(source='../images/arrow_down.png')" id="btnDlSel" click="asDLSelFiles();" width="152" height="22"/>
</mx:HBox>
- <mx:Button label="Delete Selected" id="button1" icon="@Embed(source='../images/cross.png')"/>
+ <mx:Button label="Delete Selected" id="button1" icon="@Embed(source='../images/cross.png')" height="22" width="134"/>
</mx:VBox>
</mx:Canvas>
</mx:HDividedBox>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|