チェンジセット 3927: as3/GeniusFramework

差分発生行の前後
無視リスト:
コミット日時:
2010/05/24 18:37:53 (2 年前)
コミッタ:
seagirl
ログメッセージ:

flex 3.5 を標準にする

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/GeniusFramework/branches/2.0/.actionScriptProperties

    r3100 r3927  
    11<?xml version="1.0" encoding="UTF-8" standalone="no"?> 
    22<actionScriptProperties mainApplicationPath="Genius2.as" projectUUID="b96a7f6a-4ff8-4cae-b833-2386b84f0cb6" version="6"> 
    3   <compiler additionalCompilerArguments="" autoRSLOrdering="true" copyDependentFiles="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="app-template/libs" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="true" useDebugRSLSwfs="true" verifyDigests="true" warn="true"> 
     3  <compiler additionalCompilerArguments="" autoRSLOrdering="true" copyDependentFiles="false" fteInMXComponents="false" generateAccessible="false" htmlExpressInstall="true" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="app-template/libs" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="true" useDebugRSLSwfs="true" verifyDigests="true" warn="true"> 
    44    <compilerSourcePath/> 
    55    <libraryPath defaultLinkType="1"> 
  • as3/GeniusFramework/branches/2.0/bin/build.properties

    r2553 r3927  
    1 FLEX_HOME=/Applications/Adobe Flex Builder 3/sdks/3.2.0 
     1FLEX_HOME=/Applications/Adobe Flash Builder 4/sdks/3.5.0 
    22 
    33name=MyApp 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/containers/GeniusViewStack.as

    r3100 r3927  
    4343                                } 
    4444                                else 
    45                                 { 
     45                                {                                       
    4646                                        selectedIndex = newIndex;        
    4747                                } 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/threads/ChangeStateThread.as

    r2588 r3927  
    1818                        { 
    1919                                newState[key2] = data[key2]; 
     20                                 
     21                                if (data[key2] == null) 
     22                                        delete newState[key2]; 
    2023                        } 
    2124                         
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/genius/views/ApplicationDelegate.as

    r3383 r3927  
    6565                } 
    6666                 
     67                public function get browserScroll():Boolean 
     68                { 
     69                        return SWFWheel.browserScroll; 
     70                } 
     71                 
     72                public function set browserScroll(value:Boolean):void 
     73                { 
     74                        SWFWheel.browserScroll = value; 
     75                } 
     76                 
    6777                protected function createConfig():Config 
    6878                { 
  • as3/GeniusFramework/branches/2.0/src/jp/seagirl/validators/ValidatorManager.as

    r3357 r3927  
    2626package jp.seagirl.validators 
    2727{ 
     28        import mx.events.ValidationResultEvent; 
    2829        import mx.validators.EmailValidator; 
    2930        import mx.validators.NumberValidator; 
     
    179180                } 
    180181                 
     182                public function clearAllErrorStrings():void 
     183                { 
     184                        repository.forEach( 
     185                                function (element:Validator, index:int, array:Array):void 
     186                                { 
     187                                        element.dispatchEvent(new ValidationResultEvent(ValidationResultEvent.VALID)); 
     188                                } 
     189                        ); 
     190                         
     191                        return; 
     192                } 
     193                 
    181194                /** 
    182195                 * リポジトリに登録された全てのValidatorを使って妥当性を判断します。