Adobe AIR HTML Application with Window Shadow

I have been building a HTML based AIR application that uses a transparent window. I want the window to have a drop-shadow effect which using a combination of JavaScript and CSS3 I make the shadow change depending on window focus.
The application looks like the following (wireframe diagram):
The red area is the <html> container itself. The blue box is the application content area (a simple <div>) and the black border with green shadow is a container <div> that is positioned absolute on the page. This black container is the application itself in my design.
As you can see the black border (around the blue box) has a subtle green shadow in the outer edges of the <html> page.
The problem is that because the <html> is the application in AIR it means that the application can never touch the edge of the screen due to the fact that AIR is treating the <html> as the application edge rather than the container <div> for the black border.
Any ideas on how to get around this? The only thing I could think of was some crazy JavaScript that could offset the application somehow.... Anyone else had this problem?

I use this function to center the window on the screen. Could I use any parts of this to perhaps always offset the window to handle the spacing around the chrome div?
function centerWindow(instance){
                    //default bounds of nativeWindow
                    var applicationBounds = instance.nativeWindow.bounds;
                    //determine which screen we're located on
                    var screens = air.Screen.getScreensForRectangle(instance.nativeWindow.bounds);
                    var screenBounds = (screens.length > 0) ? screens[0].visibleBounds : air.Screen.mainScreen.visibleBounds;
                    //get initial position
                    x = (screenBounds.width - applicationBounds.width) / 2;
                    y = (screenBounds.height - applicationBounds.height) / 2;
                    //adjust for offset x or offset y (multi monitors)
                    x = screenBounds.x + x;
                    y = screenBounds.y + y;
                    instance.nativeWindow.x = x;
                    instance.nativeWindow.y = y;

Similar Messages

  • Change Encore Project into a adobe air desktop application with password

    Good afternoon,
    I am trying to find a a way that i can change or inport a Encore project into a adobe air desktop application so that a can password protect it. I have a training simulator built in Encore that has a large number of menus and videos that i would like to tern into a tesk top application that i can password protect. Encore out puts this as a swf file. Is there any way to do this? I have bin looking around an the web and can't seem to find any information on this kind of problem. Any help would be greatly appreciated.
    Many thanks,
    Justin

    Hi Justin,
    ok, assuming that your external SWF tries to access some hosting application context (methods/properties) you could try:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/mx"
                                applicationComplete="applicationCompleteHandler(event)">
         <fx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.events.FlexEvent;
                   private var loader:URLLoader = null;
                   protected function applicationCompleteHandler(event:FlexEvent):void
                        loader = new URLLoader();
                        loader.dataFormat = URLLoaderDataFormat.BINARY;
                        var url:String = "MyApplication.swf";
                        loader.load(new URLRequest(url));
                        loader.addEventListener(Event.COMPLETE, loaderCompleteHandler);
                        loader.addEventListener(IOErrorEvent.IO_ERROR, loaderErrorHandler);                   
                   protected function loaderCompleteHandler(event:Event):void
                        // allow cross-scripting in case loaded content tries to access
                        // that context properties or methods
                        var context:LoaderContext = new LoaderContext();
                        context.allowCodeImport = true;
                        swfLoader.loaderContext = context;
                        swfLoader.load(loader.data);
                        cleanup();
                   protected function loaderErrorHandler(errorEvent:IOErrorEvent):void
                        mx.controls.Alert.show(errorEvent.text, "ERROR");
                        cleanup();
                   private function cleanup():void
                        loader.removeEventListener(Event.COMPLETE, loaderCompleteHandler);
                        loader.removeEventListener(IOErrorEvent.IO_ERROR, loaderErrorHandler);
                        loader = null;
              ]]>
         </fx:Script>
         <!-- ui -->
         <s:SWFLoader width="100%" height="100%" id="swfLoader"/>
         <!-- -->
    </s:WindowedApplication>
    See that doc for some details "allowCodeImport":
    http://www.adobe.com/devnet/flashplayer/articles/fplayer10_1_air2_security_changes.html
    note: I'm not sure if that would 100% work. I don't know what Encore authored .swf really do, for that you could ask on Encore forum:
    http://forums.adobe.com/community/encore/encore_general
    regards,
    Peter

  • Adobe Air - HTML, Javascript and Threading

    Hello,
    I am developing an application using Adobe Air - HTML and
    Javascript. What I am trying to do is to implement threading in
    Javascript. I am using implementing threading in Javascript as per
    this Neil blog.
    Click
    Here. It clearly says that this threading works only in Firefox
    2.0 and I am trying to use this in with my Adobe Air, but when I
    try to refer a function , it gives me error saying "unable to find
    it".
    I was wondering if this is the best way to go for threading
    in Adobe Air HTML application or there is some other way also.
    Thanks,
    Jaikishan

    Hi jjalan,
    The yield and generator functionality is only available in
    Firefox's javascript execution engine. When you are executing
    javascript in AIR, it is done by the webkit and squirrelfish. Take
    a look at
    http://webkit.org/blog/189/announcing-squirrelfish/
    If you can find a javascript library that works on safari /
    webkit, chances are high that it may work in AIR.
    Also, you can always do pseudo-threading via the age old
    setTimeout()

  • Adobe air html/js - application act like a browser.

    I just started in Adobe air html/js . In the current application I want to do something like this .
    I want to open the urls/web pages in the application and application should act like a web-browser to them .
    But with that I want to modify the opened pages a little, like add some css/js to them.
    Something like when you open Web pages in Firefox and a plugin (example grease monkey scripts) modifies the displayed content .
    Is it possible ?
    I tried opening in iframe it works , but I cannot add my own  JavaScript to the page (is there any way in air to remove cross domain  strictness?).
    Note: Please don't suggest that I fetch the html content of the page  and add it to the app body.  My app should really act as browser. (Adobe  air is webkit based so I think it can be achieved)

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • Adobe AIR Flash application - fill login and password

    Hi,
    I have Adobe AIR desktop application, which show login form. It is necessary to fill login and password after execute. I would like prepare external application in C# or in Adobe AIR Desktop. My application should executed Adobe AIR Desktop application and fill login and password to text input and press button "Login". I try to use Win32 Api but it is not possible to get handler on input elements. I am nowbie in AIR Desktop. It is possible to get handler to external Adobe AIR Flash application in Adobe AIR application and fill text? I try to find any function for communication with window of external application, but I can not find anything. Can you please help me?

    64bit support will be in the next (v. 16) sdk release and is currently available in beta:
    http://labsdownload.adobe.com/pub/labs/flashruntimes/shared/air16_flashplayer16_releasenot es.pdf

  • Is adobe photoshop cs2 compatable with windows 8?

    Is adobe photoshop CS2 compatable with windows 8?

    I have removed and re-installed CS2 twice now and still get the same library application error.
    DO NOT INSTALL WINDOWS 8 ONTO YOUR COMPUTER IF YOU WANT TO KEEP CS2!
    Telling us to spend more money to upgrade our software to meet OS does not show trust to the users. CS2 should be able to work with new OS systems and if not users should be allowed to update their current program for free to be able to use it on the new OS.
    Thank you,
    Eric

  • Adobe AIR won't install - Windows 7 Ultimate x64

    "Sorry, an error has occurred.
    An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator."
    Well, I asked myself and verified that I am allowed to install any programs I wish to at will.
    I even toyed with adding extra permissions for the .exe and shortcut [see below], to no avail.
    I also checked your Adobe AIR installation troubleshooter section before posting. Unfortunately, none of the solutions 100% applied to my circumstances or OS, yet I tried a few anyway and had it confirmed by a Windows dialogue that I need not have bothered as it assured me that they weren't applicable in my case.
    I found another thread like mine where somebody suggested creating a shortcut with an additional -uninstall parameter added to the .exe path. It didn't work.
    I used Microsoft's Installation Cleanup Utility and that didn't work to "un-confuse" the installer either.
    Do you have any more suggestions?
    Adobe AIR came with the HTC Sync program for my phone, which appears to have dependencies on it where it won't completely work without it.
    Thanks in advance for any input.
    ps. I created a new thread because I couldn't find the "reply" button on a similarly unresolved thread regarding Adobe AIR installation issues on Windows 7.

    I would like to say thanks to artrose54 and to playswithtech for their thoughtful responses to my problem. I finally figured out which number I was to delete, and then, having made a copy of the number in notepad, deleted it. Upon a restart to my computer I then was able to download adobe air 2.7. I found that I still could not download the shutterfly express uploader, however; so I applied the same approach. I went looking for the number in the registry that corresponded to the uploader. I deleted it; restarted the computer; returned to shutterfly; and then was able to download the express uploader. I am sure I will find other uses for Adobe Air in the future.
    From: artrose54 <[email protected]>
    To: Sandra Buchin <[email protected]>
    Sent: Sunday, June 26, 2011 12:37 PM
    Subject: Re: Adobe AIR won't install - Windows 7 Ultimate x64
    Hi everyone,
    Here is the fix that worked for me,
    You need to go to start run and type in regedit
    now press ctrl+f for find and type in "adobe air" without the quotes then click find next
    the first entry it finds is the one I deleted, it is a long number on left side of screen that is greyed just right click and delete it
    I then rebooted the computer and ran adobe air installation
    and it worked with out a problem
    The adobe air log file really doesn't tell u anything but where it tried to find the setup.msi file
    but it doesn't exist because of the registry entry that needs to be deleted which is what causes the error
    If u r not sure of editing the registry then maybe you know someone that can help you
    I hope this helps you out it worked for me

  • Adobe AIR desktop app with an embedded runtime

    Hi,
    Does an Adobe AIR desktop app with an embedded runtime (standalone/portable)  that got published on Windows work on a Mac too?
    Thanks

    No, you need to compile a "bundle" with ADT on each platform. On Windows it creates a directory with an .exe and the AIR runtime. On OS X it creates a .app file.

  • Connecting between two Adobe air mobile applications (On Android)

    Hi There,
    Does an Adobe AIR application can connect and pass parameters somehow (Directly or by http) with another android application?
    Can Adobe AIR mobile application open a listening socket?

    Um, I'm pretty sure this is wrong. You cannot use SocketServer on a mobile app platform for some stupid reason.
    From the doc
    "AIR profile support: This feature is supported on all desktop operating systems, but is not supported on mobile devices or AIR for TV devices"

  • Adobe Air+ Flex applications to build from database

    Hi,
    I know how to create a Flex application from database.But
    when we are developing a flex application from database using Adobe
    AIR,i'm not able to run the application.It is throwing an error
    saying .xml file is missing.Can anyone help me out with
    this?

    In Flex, an application can be created from database by
    following the steps as follows:
    STEP 1. Create a new Flex Project and name it as for example,
    “FLEXDB”. Select the
    application type as “Web Application (runs in Flash
    Player)” and Application server type as
    “ASP.Net”.
    STEP 2. Go to Data->Create application from database.
    Select the project as
    FLEXDB”.Create a new Connection to SqlServer 2005 and
    specify the database and name that connection
    as”TestConn”. Then select any table (for example
    DashboardRegion) from the list of tables and click
    “Next” button.
    STEP 3. Select the Server language as “C# with Web
    Services”. Click “Finish”.
    STEP 4. Then the following files and folders will be created
    under the project “FLEXDB”
    automatically.
    • DashboardRegion.mxml -- is a design page.
    • DashboardRegionScript.as -- defines web service
    object and capture the results and assigns the results to the
    corresponding UI Component.
    • DashboardRegionConfig.as -- calls the Web Service
    file.
    • DashboardRegion.asmx -- calls the Class Files
    (DashboardRegion.cs file).
    • Web.config – defines the Connection string
    • App_Code is a folder which contains the following
    files
    o DashboardRegion.cs that interacts with SQL Server 2005 and
    return the results.
    o TestConn.cs that defines connection to SQL Server 2005.
    STEP 5. Run the application “DashboardRegion.mxml
    ”.We can see the Database results
    Fetched and displayed in the corresponding UI Component in
    the output.
    Now we are trying to create a Similar Flex Application using
    Adobe AIR.
    For this, we have to follow similar steps mentioned as above
    with a slight modification in STEP 1. It will be as follows:
    STEP 1. Create a new Flex Project and name it as for
    example, “FLEXDB”. Select the
    application type as”Desktop Application (runs in Adobe
    AIR)” and Application server type as “ASP.Net”.
    The remaining steps are same as above.
    When we try to run the application
    “DashboardRegion.mxml”, it is throwing an error saying
    “DashboardRegion-app.xml” file is missing. To solve
    this issue we tried creating “DashboardRegion-app.xml”
    file manually, the application is running but, again throwing an
    error saying “Unable to load WSDL. If currently online,
    please verify the URI and/or format of the WSDL
    (../DashBoardRegion.asmx?wsdl)”.
    Can any one please suggest a solution for this?
    Or Help me how to connect sql server 2005 in the Adobe AIR
    application that are buid using Flex builder.

  • Is Adobe Element 11 compatible with Windows 8.1?

    Is Adobe Element 11 compatible with Windows 8.1?

    The creative cloud has nothing to do with photoshop elements 11, so that won't help.
    Make sure you insert the dvd labeled Windows
    Once you insert the dvd, click on the Folder icon (File Explorer) in the Taskbar on the Desktop
    Then you should see the pse 11 dvd listed under Devices and drives
    Right click on the pse 11 dvd icon, click Open and then double click on the AutoPlay.exe

  • Does Adobe Photoshop CS run with windows 7?

    does Adobe Photoshop CS run with windows 7?

    That also applies to photoshop cs owners as well.
    The reason the specs say windows 2000/xp is because those were the current operating systems cs2 supported when released in 2005, well before windows 7.
    Photoshop cs2 should work on windows 7, but as always there is no guarantee photoshop cs2 will work without some glitches on windows 7.
    If your hesitate about trying it, you can always buy photoshop cs6 or subscribe to photoshop cc 2014, both of which are specified to work well on windows 7.
    System requirements | Photoshop

  • Adobe AIR HTML/JS application and Windows Native Installer

    Hi,
    I am building an Adobe AIR application with HTML and Javascript and I would like to know how to make an Windows Native Installer.
    I am trying to build it with Flash Pro but it keeps returning the error 'Invalid SWF file'. At the application.xml file the <content> points to my index.html file. I don't use any SWF file. When I change this to point to the SWF it does build tha installer but the application loads the SWF.
    Is there any way to build a Windows Native Installer and the initial content be an HTML file?
    p.s. I tried to extract the files from the installer file and edit the application.xml there to point to the index.html. But I can't repackage the files to a valid air native installer.
    Thank you.

    Hi,
    Thank you for reporting this. The internal bug number for the issue is #2740755. The issue is currently under review and will be investigated by one of AIR team members.
    Regards,
    Catalin

  • Adobe AIR HTML Native Full Screen on Mac OS X

    I am building an application in Adobe AIR for Mac in HTML/JavaScript.
    What I want to do is when the application loads, make the application go into full-screen mode using the correct native full-screen found in OS X Lion and above.
    e.g.
    This is NOT using the displayState that Flash/Flex uses.
    If the users decides to exit full screen mode they will see the app in a native window and can re-enter full screen mode using the icon you get in the top-right of a window.
    I've found some information about an extension here: http://forums.adobe.com/thread/1209193
    FREObject _EnableFullScreenMode(FREContext ctx, void* functionData, uint32_t argc, FREObject argv[])
            //We should be okay to do this, even on 10.6, according to this post:
            //http://www.cocoabuilder.com/archive/cocoa/311124-implementing-full-screen-for-10-7-but-app-should-also-run-on-10-6.html
            //We can't use [NSApp mainWindow] - didn't appear to work
            //This seems to though:
            NSArray * allWindows = [NSApp windows];
            if (allWindows.count > 0)
                NSWindow *mainWindow = [allWindows  objectAtIndex: 0];
                NSWindowCollectionBehavior behavior = [mainWindow collectionBehavior];
                behavior |= NSWindowCollectionBehaviorFullScreenPrimary;
                [mainWindow setCollectionBehavior:behavior];
            //TODO: Return a boolean instead depending on if we found the main window
            return NULL;
    That looks to do what I want! But after reading the Adobe AIR docs I can't get my head around where this code should live in my app directory and how I can call it on app load.
    So in my index.html I have:
    $(document).ready(function() {  // Make window full-screen // CALL THE EXTENSION TO MAKE THE APPLICATION FULL_SCREEN  // Make window active window.nativeWindow.activate();  // Make it visible window.nativeWindow.visible = true;  });
    The initialWindow is not visible by default using <visible>false</false> in the application descriptor XML file. And is made visible and active on the document ready as shown above.
    The missing piece is loading in the extension and making the window go native full-screen.
    To break this question up:
    Where does the extension code go? E.g. do I create an extension file and put it in any particular location in the app directory?
    How do I then load the extension into the application
    Finally how do I then do the full-screen on document ready
    What happens in OS X below Lion? How did full-screen work before it was introduced?
    Hopefully I can get pointed in the right direction as the docs have totally baffled me and don't explain how the extension file is created (to me at least).

    Extensions require both native code and ActionScript code and are packed by the native extension compiler by Adobe to an ANE file. Check this tutorial: http://www.adobe.com/devnet/air/articles/building-ane-ios-android-pt1.html
    After compiling the extension, you can put the extensionId into your <extensions> branch in the application.xml and add the .ane as an excluded library into your AS3 project. Then you can use the extension like any other external library (swc file).
    It's also helpful to download and play around with extisting ANEs. There are some nice open source libraries here: https://github.com/freshplanet

  • Unable to Install Adobe Air 2.0 on Windows Vista

    I have been having trouble with Adobe Air for a while now. I had Adobe Air installed for TweetDeck, but in the past couple months, every time I tried to update TweetDeck, I get the error, "Installation may not be allowed by your administrator. Please contact your administrator." Then I tried uninstalling Adobe Air through Add/Remove programs in Control Panel and that did not work. I tried uninstalling through Command Line, but I kept getting a fail message. Finally, I removed it manually by removing the Adobe Air folder from my Common Files and then was able to remove Adobe Air from Add/Remove Programs. Now I am trying to reinstall Adobe Air 2.0 and I am getting the same error message. "An error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator." Your Support page says to use Windows Installer Cleanup Utility but it is no longer available. Please help.

    hello,
    look likes same problem here
    after update for bayardkids application, popup error and unable to uninstall air
    win xp
    my log
    [2010-07-19:18:41:16] Starting combined app/runtime update
    [2010-07-19:18:41:17] UI SWF load is complete
    [2010-07-19:18:41:17] stateRunningAppInstaller: appinstaller -runtime C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR771.tmp -update -withRuntime "c:\program files\bayardkids\bayardkids.exe" file:///C:/Documents%20and%20Settings/PEH/Application%20Data/bayardKids.08AE7BFC096D057FB A48C7E4F898C35F7FA11BBA.1/Local%20Store/%23ApplicationUpdater/update.air 2.4.24
    [2010-07-19:18:41:17] Starting update of c:\program files\bayardkids\bayardkids.exe
    [2010-07-19:18:41:17] Updating from file:///C:/Documents%20and%20Settings/PEH/Application%20Data/bayardKids.08AE7BFC096D057FB A48C7E4F898C35F7FA11BBA.1/Local%20Store/%23ApplicationUpdater/update.air
    [2010-07-19:18:41:17] Updating to version 2.4.24
    [2010-07-19:18:41:18] UI SWF load is complete
    [2010-07-19:18:41:19] UI initialized
    [2010-07-19:18:41:19] beginning UI styling
    [2010-07-19:18:41:19] UI styling complete
    [2010-07-19:18:41:19] Unpackaging to C:\Documents and Settings\PEH\Local Settings\Temp\fla772.tmp
    [2010-07-19:18:41:34] unpackaging/validation is complete
    [2010-07-19:18:41:34] application is bound to this version of the runtime
    [2010-07-19:18:41:34] app id bayardKids
    [2010-07-19:18:41:34] pub id 08AE7BFC096D057FBA48C7E4F898C35F7FA11BBA.1
    [2010-07-19:18:41:34] Application located at c:\program files
    [2010-07-19:18:41:35] Waiting for user confirmation
    [2010-07-19:18:41:35] User confirmed action: install
    [2010-07-19:18:41:35] creating native installer in: C:\Documents and Settings\PEH\Local Settings\Temp\fla773.tmp
    [2010-07-19:18:41:37] native installer creation complete
    [2010-07-19:18:41:37] Starting install
    [2010-07-19:18:41:37] using conversion output in C:\Documents and Settings\PEH\Local Settings\Temp\fla773.tmp
    [2010-07-19:18:41:37] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-07-19:18:41:37] Scheduling an MSI install operation
    [2010-07-19:18:41:37] Beginning install
    [2010-07-19:18:41:37] Installing C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR771.tmp\setup.msi
    [2010-07-19:18:41:45] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR771.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:41:45] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR771.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:41:45] Installing C:\Documents and Settings\PEH\Local Settings\Temp\fla773.tmp\setup.msi
    [2010-07-19:18:42:02] Execution complete; beginning commit phase
    [2010-07-19:18:42:02] Commit complete
    [2010-07-19:18:42:02] Re-launching application from c:\program files\bayardKids\bayardKids.exe
    [2010-07-19:18:42:02] starting cleanup of temporary files
    [2010-07-19:18:42:04] application installer exiting
    [2010-07-19:18:42:04] App installer completed successfully
    [2010-07-19:18:42:04] begin quitting
    [2010-07-19:18:42:04] attempting launch of bayardKids
    [2010-07-19:18:44:15] Performing runtime install
    [2010-07-19:18:44:15] UI SWF load is complete
    [2010-07-19:18:44:16] UI initialized
    [2010-07-19:18:44:16] starting user confirmation
    [2010-07-19:18:44:16] Version of this installer: 2.0.2.12610
    [2010-07-19:18:44:16] Installation type: new
    [2010-07-19:18:44:19] starting install
    [2010-07-19:18:44:19] Scheduling runtime installation operations
    [2010-07-19:18:44:19] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-19:18:44:19] Scheduling an MSI repair operation
    [2010-07-19:18:44:19] Beginning runtime installation
    [2010-07-19:18:44:19] Beginning install
    [2010-07-19:18:44:19] Reinstalling c:\docume~1\peh\locals~1\temp\air8b9.tmp\setup.msi
    [2010-07-19:18:44:24] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla8BD.tmp\temp
    [2010-07-19:18:44:24] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:44:24] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR8B9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:44:25] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla8BE.tmp\temp
    [2010-07-19:18:44:25] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:44:25] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR8B9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:44:25] Execution complete; beginning commit phase
    [2010-07-19:18:44:25] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla8BD.tmp\temp
    [2010-07-19:18:44:25] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla8BE.tmp\temp
    [2010-07-19:18:44:25] Commit complete
    [2010-07-19:18:44:25] install complete
    [2010-07-19:18:44:26] begin quitting
    [2010-07-19:18:44:26] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-19:18:53:53] Performing runtime install
    [2010-07-19:18:53:53] UI SWF load is complete
    [2010-07-19:18:53:55] UI initialized
    [2010-07-19:18:53:55] starting user confirmation
    [2010-07-19:18:53:55] Version of this installer: 2.0.2.12610
    [2010-07-19:18:53:55] Installation type: new
    [2010-07-19:18:53:58] starting install
    [2010-07-19:18:53:58] Scheduling runtime installation operations
    [2010-07-19:18:53:58] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-19:18:53:58] Scheduling an MSI repair operation
    [2010-07-19:18:53:58] Beginning runtime installation
    [2010-07-19:18:53:58] Beginning install
    [2010-07-19:18:53:58] Reinstalling c:\docume~1\peh\locals~1\temp\air1f6.tmp\setup.msi
    [2010-07-19:18:54:04] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla1FA.tmp\temp
    [2010-07-19:18:54:04] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:54:04] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR1F6.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:54:04] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla1FB.tmp\temp
    [2010-07-19:18:54:04] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:54:04] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR1F6.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:54:04] Execution complete; beginning commit phase
    [2010-07-19:18:54:04] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla1FA.tmp\temp
    [2010-07-19:18:54:04] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla1FB.tmp\temp
    [2010-07-19:18:54:04] Commit complete
    [2010-07-19:18:54:04] install complete
    [2010-07-19:18:54:07] begin quitting
    [2010-07-19:18:54:07] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-19:18:58:39] UI SWF load is complete
    [2010-07-19:18:58:39] stateRunningAppInstaller: appinstaller -runtime C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR210.tmp -playerVersion=10,1,53,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://media2.bayardkids.com/app/prod/builds/BayardKids.air -- "installed from web"
    [2010-07-19:18:58:40] Starting app install of http://media2.bayardkids.com/app/prod/builds/BayardKids.air
    [2010-07-19:18:58:40] UI SWF load is complete
    [2010-07-19:18:58:41] UI initialized
    [2010-07-19:18:58:41] beginning UI styling
    [2010-07-19:18:58:41] UI styling complete
    [2010-07-19:18:58:41] Unpackaging to C:\Documents and Settings\PEH\Local Settings\Temp\fla211.tmp
    [2010-07-19:18:58:58] unpackaging/validation is complete
    [2010-07-19:18:58:58] application is bound to this version of the runtime
    [2010-07-19:18:58:58] app id bayardKids
    [2010-07-19:18:58:58] pub id 08AE7BFC096D057FBA48C7E4F898C35F7FA11BBA.1
    [2010-07-19:18:58:58] Application not located
    [2010-07-19:18:58:58] Waiting for user confirmation
    [2010-07-19:18:59:32] User confirmed action: install
    [2010-07-19:18:59:32] creating native installer in: C:\Documents and Settings\PEH\Local Settings\Temp\fla212.tmp
    [2010-07-19:18:59:34] native installer creation complete
    [2010-07-19:18:59:34] Starting install
    [2010-07-19:18:59:34] using conversion output in C:\Documents and Settings\PEH\Local Settings\Temp\fla212.tmp
    [2010-07-19:18:59:34] Destination for installed application is C:\Program Files
    [2010-07-19:18:59:34] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-19:18:59:34] Scheduling an MSI repair operation
    [2010-07-19:18:59:34] Beginning install
    [2010-07-19:18:59:34] Reinstalling C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR210.tmp\setup.msi
    [2010-07-19:18:59:38] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla217.tmp\temp
    [2010-07-19:18:59:38] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:59:38] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR210.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:18:59:38] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla218.tmp\temp
    [2010-07-19:18:59:38] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:59:38] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR210.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:18:59:38] Installing C:\Documents and Settings\PEH\Local Settings\Temp\fla212.tmp\setup.msi
    [2010-07-19:18:59:41] Execution complete; beginning commit phase
    [2010-07-19:18:59:42] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla217.tmp\temp
    [2010-07-19:18:59:42] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla218.tmp\temp
    [2010-07-19:18:59:42] Commit complete
    [2010-07-19:18:59:42] Re-launching application from C:\Program Files\bayardKids\bayardKids.exe
    [2010-07-19:18:59:42] Sending browser invocation
    [2010-07-19:18:59:47] starting cleanup of temporary files
    [2010-07-19:18:59:48] application installer exiting
    [2010-07-19:18:59:48] App installer completed successfully
    [2010-07-19:18:59:48] begin quitting
    [2010-07-19:20:20:21] Performing runtime install
    [2010-07-19:20:20:21] UI SWF load is complete
    [2010-07-19:20:20:23] UI initialized
    [2010-07-19:20:20:23] starting user confirmation
    [2010-07-19:20:20:23] Version of this installer: 2.0.2.12610
    [2010-07-19:20:20:23] Installation type: new
    [2010-07-19:20:20:31] starting install
    [2010-07-19:20:20:31] Scheduling runtime installation operations
    [2010-07-19:20:20:31] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-19:20:20:31] Scheduling an MSI repair operation
    [2010-07-19:20:20:31] Beginning runtime installation
    [2010-07-19:20:20:31] Beginning install
    [2010-07-19:20:20:31] Reinstalling c:\docume~1\peh\locals~1\temp\airff.tmp\setup.msi
    [2010-07-19:20:20:35] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla105.tmp\temp
    [2010-07-19:20:20:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:20:36] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIRFF.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:20:36] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla106.tmp\temp
    [2010-07-19:20:20:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:20:36] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIRFF.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:20:36] Execution complete; beginning commit phase
    [2010-07-19:20:20:36] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla105.tmp\temp
    [2010-07-19:20:20:36] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla106.tmp\temp
    [2010-07-19:20:20:36] Commit complete
    [2010-07-19:20:20:36] install complete
    [2010-07-19:20:20:40] begin quitting
    [2010-07-19:20:20:40] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-19:20:24:36] Performing runtime install
    [2010-07-19:20:24:37] UI SWF load is complete
    [2010-07-19:20:24:38] UI initialized
    [2010-07-19:20:24:38] starting user confirmation
    [2010-07-19:20:24:38] Version of this installer: 2.0.2.12610
    [2010-07-19:20:24:38] Installation type: new
    [2010-07-19:20:24:40] begin quitting
    [2010-07-19:20:25:00] Performing runtime install
    [2010-07-19:20:25:00] UI SWF load is complete
    [2010-07-19:20:25:02] UI initialized
    [2010-07-19:20:25:02] starting user confirmation
    [2010-07-19:20:25:02] Version of this installer: 2.0.2.12610
    [2010-07-19:20:25:02] Installation type: new
    [2010-07-19:20:25:04] starting install
    [2010-07-19:20:25:04] Scheduling runtime installation operations
    [2010-07-19:20:25:04] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-07-19:20:25:04] Scheduling an MSI install operation
    [2010-07-19:20:25:04] Beginning runtime installation
    [2010-07-19:20:25:05] Beginning install
    [2010-07-19:20:25:05] Installing c:\docume~1\peh\locals~1\temp\air19c.tmp\setup.msi
    [2010-07-19:20:25:09] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla1A2.tmp\temp
    [2010-07-19:20:25:09] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:25:09] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR19C.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:25:09] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla1A3.tmp\temp
    [2010-07-19:20:25:09] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:25:09] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR19C.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:25:09] Execution complete; beginning commit phase
    [2010-07-19:20:25:09] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla1A2.tmp\temp
    [2010-07-19:20:25:09] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla1A3.tmp\temp
    [2010-07-19:20:25:09] Commit complete
    [2010-07-19:20:25:09] install complete
    [2010-07-19:20:25:11] begin quitting
    [2010-07-19:20:25:11] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-19:20:28:53] Performing runtime install
    [2010-07-19:20:28:54] UI SWF load is complete
    [2010-07-19:20:28:55] UI initialized
    [2010-07-19:20:28:55] starting user confirmation
    [2010-07-19:20:28:55] Version of this installer: 2.0.2.12610
    [2010-07-19:20:28:55] Installation type: new
    [2010-07-19:20:28:58] starting install
    [2010-07-19:20:28:58] Scheduling runtime installation operations
    [2010-07-19:20:28:58] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-19:20:28:58] Scheduling an MSI repair operation
    [2010-07-19:20:28:58] Beginning runtime installation
    [2010-07-19:20:28:58] Beginning install
    [2010-07-19:20:28:59] Reinstalling c:\docume~1\peh\locals~1\temp\air235.tmp\setup.msi
    [2010-07-19:20:29:02] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla239.tmp\temp
    [2010-07-19:20:29:03] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:29:03] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR235.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:29:03] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla23A.tmp\temp
    [2010-07-19:20:29:03] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:29:03] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR235.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:29:03] Execution complete; beginning commit phase
    [2010-07-19:20:29:03] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla239.tmp\temp
    [2010-07-19:20:29:03] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla23A.tmp\temp
    [2010-07-19:20:29:03] Commit complete
    [2010-07-19:20:29:03] install complete
    [2010-07-19:20:29:05] begin quitting
    [2010-07-19:20:29:05] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-19:20:31:08] UI SWF load is complete
    [2010-07-19:20:31:08] stateRunningAppInstaller: appinstaller -runtime C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR254.tmp -playerVersion=10,1,53,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://media2.bayardkids.com/app/prod/builds/BayardKids.air -- "installed from web"
    [2010-07-19:20:31:08] Starting app install of http://media2.bayardkids.com/app/prod/builds/BayardKids.air
    [2010-07-19:20:31:08] UI SWF load is complete
    [2010-07-19:20:31:10] UI initialized
    [2010-07-19:20:31:10] beginning UI styling
    [2010-07-19:20:31:10] UI styling complete
    [2010-07-19:20:31:10] Unpackaging to C:\Documents and Settings\PEH\Local Settings\Temp\fla255.tmp
    [2010-07-19:20:31:26] unpackaging/validation is complete
    [2010-07-19:20:31:26] application is bound to this version of the runtime
    [2010-07-19:20:31:26] app id bayardKids
    [2010-07-19:20:31:26] pub id 08AE7BFC096D057FBA48C7E4F898C35F7FA11BBA.1
    [2010-07-19:20:31:26] Application not located
    [2010-07-19:20:31:26] Waiting for user confirmation
    [2010-07-19:20:31:40] User confirmed action: install
    [2010-07-19:20:31:40] creating native installer in: C:\Documents and Settings\PEH\Local Settings\Temp\fla256.tmp
    [2010-07-19:20:31:42] native installer creation complete
    [2010-07-19:20:31:42] Starting install
    [2010-07-19:20:31:42] using conversion output in C:\Documents and Settings\PEH\Local Settings\Temp\fla256.tmp
    [2010-07-19:20:31:42] Destination for installed application is C:\Program Files
    [2010-07-19:20:31:42] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-07-19:20:31:42] Scheduling an MSI install operation
    [2010-07-19:20:31:42] Beginning install
    [2010-07-19:20:31:42] Installing C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR254.tmp\setup.msi
    [2010-07-19:20:31:46] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla25D.tmp\temp
    [2010-07-19:20:31:46] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:31:46] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR254.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-19:20:31:46] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla25E.tmp\temp
    [2010-07-19:20:31:46] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:31:46] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR254.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-19:20:31:46] Installing C:\Documents and Settings\PEH\Local Settings\Temp\fla256.tmp\setup.msi
    [2010-07-19:20:31:50] Execution complete; beginning commit phase
    [2010-07-19:20:31:50] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla25D.tmp\temp
    [2010-07-19:20:31:50] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla25E.tmp\temp
    [2010-07-19:20:31:50] Commit complete
    [2010-07-19:20:31:50] Re-launching application from C:\Program Files\bayardKids\bayardKids.exe
    [2010-07-19:20:31:50] Sending browser invocation
    [2010-07-19:20:31:56] starting cleanup of temporary files
    [2010-07-19:20:31:56] application installer exiting
    [2010-07-19:20:31:57] App installer completed successfully
    [2010-07-19:20:31:57] begin quitting
    [2010-07-21:22:45:45] Performing runtime install
    [2010-07-21:22:45:46] UI SWF load is complete
    [2010-07-21:22:45:47] UI initialized
    [2010-07-21:22:45:47] starting user confirmation
    [2010-07-21:22:45:47] Version of this installer: 2.0.2.12610
    [2010-07-21:22:45:47] Installation type: new
    [2010-07-21:22:45:53] starting install
    [2010-07-21:22:45:53] Scheduling runtime installation operations
    [2010-07-21:22:45:53] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-07-21:22:45:53] Scheduling an MSI install operation
    [2010-07-21:22:45:53] Beginning runtime installation
    [2010-07-21:22:45:53] Beginning install
    [2010-07-21:22:45:53] Installing c:\docume~1\peh\locals~1\temp\aird9.tmp\setup.msi
    [2010-07-21:22:45:57] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\flaDF.tmp\temp
    [2010-07-21:22:45:57] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-21:22:45:57] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIRD9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-21:22:45:57] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\flaE0.tmp\temp
    [2010-07-21:22:45:57] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-21:22:45:57] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIRD9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-21:22:45:58] Execution complete; beginning commit phase
    [2010-07-21:22:45:58] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\flaDF.tmp\temp
    [2010-07-21:22:45:58] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\flaE0.tmp\temp
    [2010-07-21:22:45:58] Commit complete
    [2010-07-21:22:45:58] install complete
    [2010-07-21:22:46:03] begin quitting
    [2010-07-21:22:46:03] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:04:12] Performing runtime install
    [2010-07-26:11:04:12] UI SWF load is complete
    [2010-07-26:11:04:13] UI initialized
    [2010-07-26:11:04:13] starting user confirmation
    [2010-07-26:11:04:13] Version of this installer: 2.0.2.12610
    [2010-07-26:11:04:13] Installation type: new
    [2010-07-26:11:04:16] starting install
    [2010-07-26:11:04:16] Scheduling runtime installation operations
    [2010-07-26:11:04:16] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-26:11:04:16] Scheduling an MSI repair operation
    [2010-07-26:11:04:16] Beginning runtime installation
    [2010-07-26:11:04:17] Beginning install
    [2010-07-26:11:04:17] Reinstalling c:\docume~1\peh\locals~1\temp\air61d.tmp\setup.msi
    [2010-07-26:11:04:25] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla621.tmp\temp
    [2010-07-26:11:04:25] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:04:25] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR61D.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:04:25] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla622.tmp\temp
    [2010-07-26:11:04:25] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:04:25] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR61D.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:04:25] Execution complete; beginning commit phase
    [2010-07-26:11:04:25] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla621.tmp\temp
    [2010-07-26:11:04:25] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla622.tmp\temp
    [2010-07-26:11:04:25] Commit complete
    [2010-07-26:11:04:25] install complete
    [2010-07-26:11:04:31] begin quitting
    [2010-07-26:11:04:31] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:04:41] Performing runtime install
    [2010-07-26:11:04:41] UI SWF load is complete
    [2010-07-26:11:04:42] UI initialized
    [2010-07-26:11:04:42] starting user confirmation
    [2010-07-26:11:04:42] Version of this installer: 2.0.2.12610
    [2010-07-26:11:04:42] Installation type: new
    [2010-07-26:11:04:47] starting install
    [2010-07-26:11:04:47] Scheduling runtime installation operations
    [2010-07-26:11:04:47] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-26:11:04:47] Scheduling an MSI repair operation
    [2010-07-26:11:04:47] Beginning runtime installation
    [2010-07-26:11:04:47] Beginning install
    [2010-07-26:11:04:47] Reinstalling c:\docume~1\peh\locals~1\temp\air62f.tmp\setup.msi
    [2010-07-26:11:04:51] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla633.tmp\temp
    [2010-07-26:11:04:51] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:04:51] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR62F.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:04:51] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla634.tmp\temp
    [2010-07-26:11:04:52] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:04:52] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR62F.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:04:52] Execution complete; beginning commit phase
    [2010-07-26:11:04:52] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla633.tmp\temp
    [2010-07-26:11:04:52] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla634.tmp\temp
    [2010-07-26:11:04:52] Commit complete
    [2010-07-26:11:04:52] install complete
    [2010-07-26:11:04:53] begin quitting
    [2010-07-26:11:04:53] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:15:52] Performing runtime install
    [2010-07-26:11:15:53] UI SWF load is complete
    [2010-07-26:11:15:54] UI initialized
    [2010-07-26:11:15:54] starting user confirmation
    [2010-07-26:11:15:54] Version of this installer: 2.0.2.12610
    [2010-07-26:11:15:54] Installation type: new
    [2010-07-26:11:15:56] starting install
    [2010-07-26:11:15:56] Scheduling runtime installation operations
    [2010-07-26:11:15:56] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-07-26:11:15:56] Scheduling an MSI install operation
    [2010-07-26:11:15:56] Beginning runtime installation
    [2010-07-26:11:15:57] Beginning install
    [2010-07-26:11:15:57] Installing c:\docume~1\peh\locals~1\temp\air6c9.tmp\setup.msi
    [2010-07-26:11:15:59] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\PEH\Local Settings\Temp\fla6CF.tmp\temp
    [2010-07-26:11:15:59] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:15:59] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR6C9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-07-26:11:16:00] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\PEH\Local Settings\Temp\fla6D0.tmp\temp
    [2010-07-26:11:16:00] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:16:00] Copying C:\DOCUME~1\PEH\LOCALS~1\Temp\AIR6C9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-07-26:11:16:00] Execution complete; beginning commit phase
    [2010-07-26:11:16:00] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla6CF.tmp\temp
    [2010-07-26:11:16:00] Deleting C:\Documents and Settings\PEH\Local Settings\Temp\fla6D0.tmp\temp
    [2010-07-26:11:16:00] Commit complete
    [2010-07-26:11:16:00] install complete
    [2010-07-26:11:16:02] begin quitting
    [2010-07-26:11:16:02] error in stateQuitting: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:28:27] UI SWF load is complete
    [2010-07-26:11:28:27] starting uninstall
    [2010-07-26:11:28:27] Scheduling an MSI uninstall operation for active product GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-26:11:28:27] error during install: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:28:27] runtime install entering error state: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:28:27] begin quitting
    [2010-07-26:11:30:35] UI SWF load is complete
    [2010-07-26:11:30:35] starting uninstall
    [2010-07-26:11:30:35] Scheduling an MSI uninstall operation for active product GUID {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-07-26:11:30:35] error during install: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:30:35] runtime install entering error state: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception TypeError: Error #1009" errorID=1009]
    [2010-07-26:11:30:35] begin quitting

Maybe you are looking for

  • Error while reading from device

    I just upgraded from a 3gs to the iPhone 4 32GB. I upgraded to the newest iTunes. The phone is still using iOS 4.0. When syncing large movies that worked fine on the 3gs, I get the message "Attempting to copy to the "my phone name" failed. An error o

  • Read from a internal table whose name is decided in runtime

    Dear ABAPers I've an internal table's name in a variable, the name is populated in runtime (user_command->ls_selfield-tabname). Now that using the name (in the variable) i need to read a row from that particular internal table (which is populated int

  • ORA-00354, ORA-00353 on RAC 11gR2

    Hello All, I have a database Oracle RAC 11gR2 on OEL linux 5.5 32bit. When i am trying startup my database I am facing the below errors: this error is occuring on the startup of any node ERROR at line 1: ORA-00354: corrupt redo log block header ORA-0

  • Can open pdf in CS3 with embedded images, put when opened in CS6 or CC the images are missing

    Hi, Would really appreciate some help on this. I frequently get artwork from clients saved as illustrator eps and pdfs files, that can be opened within CS3 and printed, no problem. Having recently gone to CS6 and now CC I sometime find I can't open a

  • Macos not starting anymore after Time Capsule restore

    Hello, I changed the hard drive of my mac book. Then I restored the system from my time capsule. When I start my macbook it boots but the process seems to stop after a while. I made a permissions repair but it didnot help. Tried to boot in safe mode