Changeset 49 for trunk/earthplayer

Show
Ignore:
Timestamp:
04/07/08 15:56:24 (9 months ago)
Author:
silver
Message:
 
Location:
trunk/earthplayer/home/src/com/earthplayer/ui/widget
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/earthplayer/home/src/com/earthplayer/ui/widget/FunctionWindow.as

    r2 r49  
    1111                        super(); 
    1212                        //this.addEventListener(CloseEvent.CLOSE,closeMe);                       
    13                         this.setStyle("roundedBottomCorners",true); 
    14                         this.showCloseButton = true; 
     13                        this.setStyle("roundedBottomCorners",true);                      
     14                        this.showCloseButton = true;                     
    1515                } 
    1616                         
  • trunk/earthplayer/home/src/com/earthplayer/ui/widget/SelfConfigureWindow.mxml

    r2 r49  
    22<FunctionWindow backgroundAlpha="0.5" borderAlpha="0.5"  styleName="v1" title="设置个人信息"  
    33        xmlns="com.earthplayer.ui.widget.*" dragEnabled="true" creationComplete="init()"  
    4         layout="absolute" verticalGap="0" showCloseButton="false"  
     4        layout="absolute" verticalGap="0" showCloseButton="false"        
    55        xmlns:mx="http://www.adobe.com/2006/mxml"> 
    66            
     
    137137        <mx:NumberValidator id="imValidator" source="{qq_number}" required="false" property="text" listener="{qq_number}" minValue="10000" maxValue="999999999999999" /> 
    138138         
    139         <mx:VBox id="form"> 
     139        <mx:VBox id="form" width="100%" height="100%"  
     140                paddingTop="30" paddingBottom="10" paddingLeft="20" paddingRight="20"> 
    140141                <mx:HBox>                
    141142                        <mx:ViewStack id="mediaStack" resizeToContent="true"  
     
    179180                </mx:HBox>       
    180181        </mx:VBox>   
    181         <mx:Label text="简介" y="135"/> 
    182         <mx:TextArea id="user_intro" text="{LocalInfo.getInstance().user.userIntro}" width="180" height="50" y="155" maxChars="26" backgroundAlpha="0.5" backgroundColor="#a7faf3" borderStyle="none"/>  
     182        <mx:Label text="简介" x="20" y="135"/> 
     183        <mx:TextArea id="user_intro" text="{LocalInfo.getInstance().user.userIntro}" width="180" height="50"  
     184                x="20" y="165" maxChars="26" backgroundAlpha="0.5" backgroundColor="#a7faf3" borderStyle="none"/>  
    183185</FunctionWindow>