Changeset 1286

Show
Ignore:
Timestamp:
03/07/10 20:33:54 (5 months ago)
Author:
dreisch
Message:

-added debugging info

Location:
flash_player/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • flash_player/trunk/.actionScriptProperties

    r1225 r1286  
    11<?xml version="1.0" encoding="UTF-8" standalone="no"?> 
    22<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"> 
    44    <compilerSourcePath/> 
    55    <libraryPath defaultLinkType="1"> 
  • flash_player/trunk/src/org/korsakow/player/ApplicationBase.as

    r1284 r1286  
    194194                protected function onDomainLoadError(event:IOErrorEvent):void 
    195195                { 
    196                         showErrorDialog("Error: " + event.text, "Error loading configuration file"); 
     196                        showErrorDialog("Application.onDomainLoadError: " + event.text, "Error loading configuration file"); 
    197197                } 
    198198                protected function onDomainLoadComplete(event:Event):void 
     
    305305                { 
    306306                        Debug.logException(e); 
    307                         showErrorDialog("Error: " + e.message + "; " + e.getStackTrace(), "Unexpected Error"); 
     307                        showErrorDialog("handleUncaughtException: " + e.message + "; " + e.getStackTrace(), "Unexpected Error"); 
    308308                } 
    309309        } 
  • flash_player/trunk/src/org/korsakow/player/FlashApplication.as

    r1151 r1286  
    1010                { 
    1111                        super(view); 
    12                         AssetUtil.addAssetLoadListener(new Splash(), ShowSplashScreenAction.hook(this, loadProject)); 
     12                        AssetUtil.addAssetLoadListener(new Splash(), ShowSplashScreenAction.hook(this, loadDefaultProject)); 
    1313                } 
    1414        }