チェンジセット 3194
- コミット日時:
- 2009/10/29 18:34:33 (2 年前)
- ファイル:
-
- as3/GeniusFramework/branches/2.0/.flexLibProperties (更新) (2 diffs)
- as3/GeniusFramework/branches/2.0/app-template/libs/Genius2.swc (更新) (変更前)
- as3/GeniusFramework/branches/2.0/app-template/script/debug (更新) (1 diff)
- as3/GeniusFramework/branches/2.0/app-template/script/templates/FileDownloadServiceThread.as (更新) (3 diffs)
- as3/GeniusFramework/branches/2.0/app-template/script/templates/FileUploadServiceThread.as (更新) (2 diffs)
- as3/GeniusFramework/branches/2.0/lib/AS3YAML_041.swc (削除)
- as3/GeniusFramework/branches/2.0/lib/as3corelib.swc (削除)
- as3/GeniusFramework/branches/2.0/lib/as3unit-1.2-async.swc (削除)
- as3/GeniusFramework/branches/2.0/lib/swfwheel-1.1.swc (削除)
- as3/GeniusFramework/branches/2.0/src/org (追加)
- as3/GeniusFramework/branches/2.0/src/org/libspark (追加)
- as3/GeniusFramework/branches/2.0/src/org/libspark/ui (追加)
- as3/GeniusFramework/branches/2.0/src/org/libspark/ui/SWFWheel.as (追加)
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/GeniusFramework/branches/2.0/.flexLibProperties
r3100 r3194 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 <flexLibProperties version="1">2 <flexLibProperties includeAllClasses="false" version="1"> 3 3 <includeClasses> 4 4 <classEntry path="com.flashdynamix.utils.SWFProfiler"/> … … 36 36 <classEntry path="jp.seagirl.genius.threads.SleepThread"/> 37 37 <classEntry path="jp.seagirl.containers.GeniusCanvas"/> 38 <classEntry path="org.libspark.ui.SWFWheel"/> 38 39 </includeClasses> 39 40 <includeResources/> as3/GeniusFramework/branches/2.0/app-template/script/debug
r2588 r3194 5 5 6 6 ant -buildfile ${path}/build.xml build 7 open -a Safari${path}/../bin-debug/index.html7 open ${path}/../bin-debug/index.html as3/GeniusFramework/branches/2.0/app-template/script/templates/FileDownloadServiceThread.as
r3181 r3194 29 29 } 30 30 31 override protected function finalize():void32 {33 model.isLoading = false;34 }35 36 31 private function selectHandler(event:Event):void 37 32 { … … 50 45 trace('downloaded "', file.name, '" at ', new Date()); 51 46 model.notify('ダウンロードしました。'); 47 model.isLoading = false; 52 48 } 53 49 … … 55 51 { 56 52 alert(event.text); 53 model.isLoading = false; 57 54 } 58 55 as3/GeniusFramework/branches/2.0/app-template/script/templates/FileUploadServiceThread.as
r3181 r3194 67 67 alert("データ形式が正しくありません。"); 68 68 } 69 70 model.isLoading = false; 69 71 } 70 72 … … 72 74 { 73 75 alert(event.text); 76 model.isLoading = false; 74 77 } 75 78

