Changeset 1286
- Timestamp:
- 03/07/10 20:33:54 (5 months ago)
- Location:
- flash_player/trunk
- Files:
-
- 3 modified
-
.actionScriptProperties (modified) (1 diff)
-
src/org/korsakow/player/ApplicationBase.as (modified) (2 diffs)
-
src/org/korsakow/player/FlashApplication.as (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flash_player/trunk/.actionScriptProperties
r1225 r1286 1 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 2 2 <actionScriptProperties mainApplicationPath="KorsakowPlayer.mxml" version="6"> 3 <compiler additionalCompilerArguments="-locale en_US -use-network=false -verbose-stacktraces=true -debug=true -keep" autoRSLOrdering="true" copyDependentFiles="true" generateAccessible="false" htmlExpressInstall="false" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderLocation="/Users/d/ work/korsakow/export/korsakow/data" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">3 <compiler additionalCompilerArguments="-locale en_US -use-network=false -verbose-stacktraces=true -debug=true -keep" autoRSLOrdering="true" copyDependentFiles="true" generateAccessible="false" htmlExpressInstall="false" htmlGenerate="false" htmlHistoryManagement="false" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderLocation="/Users/d/Work/Korsakow/export/korsakow/data" outputFolderPath="bin-debug" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true"> 4 4 <compilerSourcePath/> 5 5 <libraryPath defaultLinkType="1"> -
flash_player/trunk/src/org/korsakow/player/ApplicationBase.as
r1284 r1286 194 194 protected function onDomainLoadError(event:IOErrorEvent):void 195 195 { 196 showErrorDialog(" Error: " + event.text, "Error loading configuration file");196 showErrorDialog("Application.onDomainLoadError: " + event.text, "Error loading configuration file"); 197 197 } 198 198 protected function onDomainLoadComplete(event:Event):void … … 305 305 { 306 306 Debug.logException(e); 307 showErrorDialog(" Error: " + e.message + "; " + e.getStackTrace(), "Unexpected Error");307 showErrorDialog("handleUncaughtException: " + e.message + "; " + e.getStackTrace(), "Unexpected Error"); 308 308 } 309 309 } -
flash_player/trunk/src/org/korsakow/player/FlashApplication.as
r1151 r1286 10 10 { 11 11 super(view); 12 AssetUtil.addAssetLoadListener(new Splash(), ShowSplashScreenAction.hook(this, load Project));12 AssetUtil.addAssetLoadListener(new Splash(), ShowSplashScreenAction.hook(this, loadDefaultProject)); 13 13 } 14 14 }
