チェンジセット 3194

差分発生行の前後
無視リスト:
コミット日時:
2009/10/29 18:34:33 (2 年前)
コミッタ:
seagirl
ログメッセージ:

SWFWheel は Flex 用にちょっと改造して使う

ファイル:

凡例:

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

    r3100 r3194  
    11<?xml version="1.0" encoding="UTF-8" standalone="no"?> 
    2 <flexLibProperties version="1"> 
     2<flexLibProperties includeAllClasses="false" version="1"> 
    33  <includeClasses> 
    44    <classEntry path="com.flashdynamix.utils.SWFProfiler"/> 
     
    3636    <classEntry path="jp.seagirl.genius.threads.SleepThread"/> 
    3737    <classEntry path="jp.seagirl.containers.GeniusCanvas"/> 
     38    <classEntry path="org.libspark.ui.SWFWheel"/> 
    3839  </includeClasses> 
    3940  <includeResources/> 
  • as3/GeniusFramework/branches/2.0/app-template/script/debug

    r2588 r3194  
    55 
    66ant -buildfile ${path}/build.xml build 
    7 open -a Safari ${path}/../bin-debug/index.html 
     7open ${path}/../bin-debug/index.html 
  • as3/GeniusFramework/branches/2.0/app-template/script/templates/FileDownloadServiceThread.as

    r3181 r3194  
    2929                } 
    3030                 
    31                 override protected function finalize():void 
    32                 { 
    33                         model.isLoading = false; 
    34                 } 
    35                  
    3631                private function selectHandler(event:Event):void 
    3732                { 
     
    5045                        trace('downloaded "', file.name, '" at ', new Date()); 
    5146                        model.notify('ダウンロードしました。'); 
     47                        model.isLoading = false; 
    5248                } 
    5349                 
     
    5551                { 
    5652                        alert(event.text); 
     53                        model.isLoading = false; 
    5754                } 
    5855                 
  • as3/GeniusFramework/branches/2.0/app-template/script/templates/FileUploadServiceThread.as

    r3181 r3194  
    6767                                alert("データ形式が正しくありません。"); 
    6868                        } 
     69                         
     70                        model.isLoading = false; 
    6971                } 
    7072                 
     
    7274                { 
    7375                        alert(event.text); 
     76                        model.isLoading = false; 
    7477                } 
    7578