Adobe AIR 3.7 - iOS run error

Hi,
I have set up a simple project to test the latest release of Adobe Air 3.7 which allow loading external swf with bytecode inside.
The project use the krpano_as3_interface, load the main krpano.swf, and after a simple xml file.
Building and running in iOs SImulator using my Flex IDe works fine, the panorama load.
Building and trying runnig on an iOs Device connected with USB doesn't works.
I get this error :
Trying to connect to Player
Player connected; session starting.
[trace] krpano_load
[trace] krpano_load_complete
[Fault] exception, information=Error: Error #3747: Multiple application domains are not supported on this operating system.
Following this blog article, http://blogs.adobe.com/airodynamics/2012…ir-apps-on-ios/, i correctly load krpano swf file. But it seems that adding krpano content on stage is not possible.
Any idea ?
[code]
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               applicationDPI="160"
               applicationComplete="krpano_load()"
               width="100%" height="100%" usePreloader="false"
        >
    <fx:Script>
                    <![CDATA[
        import mx.core.UIComponent;
        import mx.events.FlexEvent;
        import mx.core.FlexGlobals;
        import mx.events.ResizeEvent;
        import flash.system.Security;
        import krpano_as3_interface;
        public var krpano:krpano_as3_interface = null;
        public var area:Object;
        public var _krpano:*;
        public function krpano_load():void
            trace("krpano_load");
            var loaderContext:LoaderContext = new LoaderContext(false, ApplicationDomain.currentDomain, null);
            loaderContext.allowLoadBytesCodeExecution = true;
            loaderContext.allowCodeImport = true;
            var krpanoloader:Loader = new Loader();
            krpanoloader.contentLoaderInfo.addEventListener(Event.COMPLETE, krpano_load_complete);
            krpanoloader.load(new URLRequest("./krpano.swf"), loaderContext);
        public function krpano_load_complete(event:Event):void
            trace("krpano_load_complete");
            (event.target.content as Object).embeddedstartup(stage, krpano_ready);
            _krpano = (event.target.content as Object);
        public function krpano_ready(krpanointerface:krpano_as3_interface):void
            trace("krpano_ready");
            krpano = krpano_as3_interface.getInstance();
            krpano.call("showlog(true);");
            area = krpano.get("area");
            area.x      = 0;
            area.y      = 0;
            area.width  = stage.stageWidth;
            area.height = stage.stageHeight;
            krpano.call("loadpano(./krpano.xml,null,MERGE,BLEND(1));");
        ]]>
          </fx:Script>
</s:Application>

The error #3747: "Multiple application domains are not supported on this operating system." occurs when the Applicationdomain is not set to currentDomain. Can you please debug if the ApplicationDomain is getting set to currentDomain rather than the default one?
Thanks,
Nimisha

Similar Messages

  • Adobe Air 3.0 iOS streaming H264/Speex over RTMP -- No Video

    Problem:
    H264/Speex RTMP stream from Flash Media Server doesn't display video.  Audio plays fine.
    Conditions:
    Adobe Air 3.0
    iOS device (iPad 2, iOS4.3)
    App settings:
    <renderMode>direct</renderMode>
    Flash Builder 4.5.1 compiler settings:
    -swf-version=13
    -target-player=11.0.0
    I have tried using both stageVideo and the regular Video object to render an H264 signal streaming from Flash Media Server over rtmp, but with no luck.  I can hear the audio, but the video is never rendered.
    I CAN see H263 video when streamed over RTMP using this setup (with just the Video object). 
    I can also stream a locally stored mp4 (H264/AAC) file over rtmp from the iOS device and play it locally just fine (using a stageVideo object).
    I have attempted this with both stageVideo (which works fine when streaming an mp4 file from the iOS device) and with the regular Video object (the regular Video object handles H263 just fine streaming down from FMS over rtmp).  I've also played around with backgroundAlpha = "0" for this case, all with no luck.
    I've followed all the online instructions and tutorials to get this working for the past week, but have not had any luck.  I'm happy to post more code, but this approach is fairly straight forward and has been described multiple times around these forums and in the adobe blog posts.  It goes like this:
         - instantiate NetConnection (_nc) to FMS and wait for successful connection:
                   _ns = new NetConnection();  
                   _nc.connect(serverAddress);
         - instantiate NetStream (_ns) and connect using NetConnection: 
                   _ns = new NetStream(_nc);
         - setup listener for StageVideoAvailabilityEvent; if stageVideo becomes available, attach _ns: 
                  _stageVideo = stage.stageVideos[0];
                  _stageVideo = _stageVideo.attachNetStream(_ns);
         - if stageVideo ISN'T available, fall back to Video object:
                   _video = new Video();
                   _video.attachNetStream(_ns);
                   stage.addChild(_video);
         - play netStream app:
                   _ns.play(appName);
    My renderMode is set correctly ("direct"), and from what I can tell, this isn't a backgroundAlpha issue.
    I have seen this problem described elsewhere on this forums and on the net. 
    I'd like to know from Adobe: are there any compatibility issues with this approach?  There doesn't seem to be any type of compatibility chart listing which video codecs and transport protocols are available on the different mobile platforms.  Since mobile deployment is so heaviliy fragmented, a descriptive chart or table like this would be helpful for those of us developing -- at least for the main mobile platforms predominantly in use.
    Other forum posts similar to this problem:
    http://forums.adobe.com/message/3981541#3981541
    http://forums.adobe.com/message/3954578#3954578
    Thanks in advance!

    I do hope someone from Adobe is "hearing" this, guys. The lack of RTMP-based H.264 video on the Air for iOS is a major problem, indeed.
    As Fabio Sonnati mentioned in http://sonnati.wordpress.com/2011/04/26/air-2-6-for-ios-and-video-play back/, AIR for iOS does support HTTP streaming (via HLS) of h.264 videos. However, when streaming via RTMP, AIR for iOS only supports VP6 and Spark – a couple of old, retired codecs.
    While HTTP streaming (HLS) seems to be a good option for those who simply want to “play a video” in iOS, I do believe it has some severe limitations, especially for live-communications. I’d like to share some of these thoughts with you.
    1. HLS has ridiculously high latency for live videos (around 40 seconds), when compared to RTMP. Although this may not be a problem for on-demand videos, it sure is a great problem for anyone doing serious live-communications applications (such as webconferencing, live webcasting with audience interaction or Skype-like video chats), which require near-zero latency.
    2. Perhaps someone can correct me on this (hopefully!), but as far as I know, HTTP streaming will not allow cuepoints to be read from videos. This is particularly painful for anyone doing video-triggered actions, such as slide changes (for webinar apps), subtitling or live closed captioning, etc. I read somewhere that OSMF player allows cuepoints (or "temporal metadata". See http://blogs.adobe.com/osmf/2009/11/cue_point_support_in_osmf.html), but I haven't been able to test it myself.
    3. Although HLS it is quite compatible with firewalls (since it flows through port 80), RTMP with tunnelling also flows through port 80 or 443, which adds great compatibility, even on very restricted networks. Our experience with very large clients proves that, hands down.
    In other words, HTTP/HLS streaming is Ok. But it simply does *not* fit into every shoe that RTMP does. We do believe that RTMP remains as our best option for live streaming or serious streaming-oriented *apps* (in which things more complex than “mere video playing in a window” actually happen).
    That all said, I do believe we should let Adobe know about this need. The fact that RTMP streaming in AIR for iOS is limited to VP6 and Spark, which are two “dead” codecs, still puts us, Air developers, in a very fragile position in terms of what we can accomplish with video in iOS.
    I’m sure some of you cheered when you heard about Flash Player 11 having h.264 video encoding. This, (plus the echo cancellation feature that came in 10.3) opened great doors for great Unified-Communication applications to be developed for Flash/Air. Now, it’s undeniable that clients want those applications running on tablets, especially the iPad.
    Not being able to use h.264 via RTMP on iOS is certainly a huge step backwards. Anyone shares this same opinion? What do you guys believe to be the best option to let Adobe really know about this need? Is this limitation a simple lack-of-a-feature (which can be fixed by Adobe) or is this some imposed thing by Apple?
    Just one final note: Air for Android does *not* have the same limitation. It does allow RTMP streaming of h.264.
    Thanks for your attention,
    Helder Conde

  • Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS

    Hi All,
    https://bugbase.adobe.com/index.cfm?event=bug&id=3071298
    As per above link this bug resolve(latest build) but i am facing  Java.lang.NullPointerException is thrown when packaging Adobe AIR application for iOS, using the packaging tools.
    (for  inappPurchase Demo app --- i used below link code)
    http://code.google.com/p/in-app-purchase-air-ios/
    Thanks,
    Sunil Rana

    Hi Everyone,
    I'm getting basically the same error. Are there any rules or guidelines that we are suppose follow when writing an app for iOS? Is there a way to know exactly where it is crashing? My apps are not MXML, only actionscript. Also I made sure I have no errors not even warnings in my SWF file, but still no go! 
    Getting the same error.
    Exception in thread "main" java.lang.NullPointerException
            at adobe.abc.GlobalOptimizer.sccp_eval(GlobalOptimizer.java:6944)
            at adobe.abc.GlobalOptimizer.sccp_analyze(GlobalOptimizer.java:5909)
            at adobe.abc.GlobalOptimizer.sccp(GlobalOptimizer.java:4628)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:3514)
            at adobe.abc.GlobalOptimizer.optimize(GlobalOptimizer.java:2215)
            at adobe.abc.LLVMEmitter.optimizeABCs(LLVMEmitter.java:526)
            at adobe.abc.LLVMEmitter.generateBitcode(LLVMEmitter.java:336)
            at com.adobe.air.ipa.AOTCompiler.convertAbcToLlvmBitcodeImpl(AOTCompiler
    .java:472)
            at com.adobe.air.ipa.BitcodeGenerator.main(BitcodeGenerator.java:82)
    Compilation failed while executing : ADT
    regards,
    Keith

  • Problem with Adobe AIR 2.7, cannot run any apps anymore

    http://english.sandrostudio.com/a-strange-problem-with-adobe-air.html
    Above is the error I get: This application requires a version of Adobe AIr which cannot be found. Please download the latest version of the runtime from http://www.adobe.com/go/getair or contact the application author for an updated version"
    I could run Adobe AIR previously without any problem. i checked for a solution online, in this forum, It seems it's a problem not so uncommon. I receive the same error when trying to uninstall Adobe AIR (?!). So I am basically stuck. Any help here? Any advice? Is there an upcoming new version of the installer?
    I need Adobe air for many important applications I use.
    Thanks!

    Oh, sorry, I find many of those files but the latest is this one:
    === Verbose logging started: 13.07.2011  00:06:49  Build type: SHIP UNICODE 4.05.6002.00  Calling process: C:\Windows\System32\msiexec.exe ===
    MSI (c) (88:94) [00:06:49:316]: Resetting cached policy values
    MSI (c) (88:94) [00:06:49:316]: Machine policy value 'Debug' is 0
    MSI (c) (88:94) [00:06:49:316]: ******* RunEngine:
               ******* Product: C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (88:94) [00:06:49:609]: Machine policy value 'DisableUserInstalls' is 0
    MSI (c) (88:94) [00:06:49:828]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi' against software restriction policy
    MSI (c) (88:94) [00:06:49:828]: SOFTWARE RESTRICTION POLICY: C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi has a digital signature
    MSI (c) (88:94) [00:06:50:786]: SOFTWARE RESTRICTION POLICY: C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi is permitted to run at the 'unrestricted' authorization level.
    MSI (c) (88:94) [00:06:51:760]: Cloaking enabled.
    MSI (c) (88:94) [00:06:51:760]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (88:94) [00:06:51:809]: End dialog not enabled
    MSI (c) (88:94) [00:06:51:823]: Original package ==> C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi
    MSI (c) (88:94) [00:06:51:823]: Package we're running from ==> C:\Users\ALESSA~1\AppData\Local\Temp\7bdb1f9.msi
    MSI (c) (88:94) [00:06:51:891]: APPCOMPAT: looking for appcompat database entry with ProductCode '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}'.
    MSI (c) (88:94) [00:06:51:910]: APPCOMPAT: no matching ProductCode found in database.
    MSI (c) (88:94) [00:06:52:323]: MSCOREE not loaded loading copy from system32
    MSI (c) (88:94) [00:06:52:999]: Machine policy value 'TransformsSecure' is 0
    MSI (c) (88:94) [00:06:52:999]: User policy value 'TransformsAtSource' is 0
    MSI (c) (88:94) [00:06:53:026]: Note: 1: 2262 2: File 3: -2147287038
    MSI (c) (88:94) [00:06:53:026]: Note: 1: 2262 2: MsiFileHash 3: -2147287038
    MSI (c) (88:94) [00:06:53:026]: Machine policy value 'DisablePatch' is 0
    MSI (c) (88:94) [00:06:53:026]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (c) (88:94) [00:06:53:027]: Machine policy value 'DisableMsi' is 0
    MSI (c) (88:94) [00:06:53:027]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (c) (88:94) [00:06:53:027]: User policy value 'AlwaysInstallElevated' is 0
    MSI (c) (88:94) [00:06:53:027]: Running product '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}' with user privileges: It's not assigned.
    MSI (c) (88:94) [00:06:53:027]: Machine policy value 'DisableLUAPatching' is 0
    MSI (c) (88:94) [00:06:53:027]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (c) (88:94) [00:06:53:028]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (c) (88:94) [00:06:53:031]: APPCOMPAT: looking for appcompat database entry with ProductCode '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}'.
    MSI (c) (88:94) [00:06:53:031]: APPCOMPAT: no matching ProductCode found in database.
    MSI (c) (88:94) [00:06:53:031]: Transforms are not secure.
    MSI (c) (88:94) [00:06:53:051]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\ALESSA~1\AppData\Local\Temp\MSIdb1f8.LOG'.
    MSI (c) (88:94) [00:06:53:052]: Command Line: CURRENTDIRECTORY=C:\Users\Alessandro\Downloads CLIENTUILEVEL=0 CLIENTPROCESSID=14216
    MSI (c) (88:94) [00:06:53:052]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{D7629AD8-8DBB-4515-9047-24D48BC5FC49}'.
    MSI (c) (88:94) [00:06:53:052]: Product Code passed to Engine.Initialize:           ''
    MSI (c) (88:94) [00:06:53:052]: Product Code from property table before transforms: '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}'
    MSI (c) (88:94) [00:06:53:052]: Product Code from property table after transforms:  '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}'
    MSI (c) (88:94) [00:06:53:052]: Product not registered: beginning first-time install
    MSI (c) (88:94) [00:06:53:052]: PROPERTY CHANGE: Adding ProductState property. Its value is '-1'.
    MSI (c) (88:94) [00:06:53:059]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (c) (88:94) [00:06:53:059]: User policy value 'SearchOrder' is 'nmu'
    MSI (c) (88:94) [00:06:53:069]: Adding new sources is allowed.
    MSI (c) (88:94) [00:06:53:079]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is '1'.
    MSI (c) (88:94) [00:06:53:089]: Package name extracted from package path: 'MicrosoftFixit50380 (1).msi'
    MSI (c) (88:94) [00:06:53:089]: Package to be registered: 'MicrosoftFixit50380 (1).msi'
    MSI (c) (88:94) [00:06:53:089]: Note: 1: 2262 2: Error 3: -2147287038
    MSI (c) (88:94) [00:06:53:090]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (c) (88:94) [00:06:53:090]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (c) (88:94) [00:06:53:090]: User policy value 'AlwaysInstallElevated' is 0
    MSI (c) (88:94) [00:06:53:090]: Running product '{F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}' with user privileges: It's not assigned.
    MSI (c) (88:94) [00:06:53:090]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Users\Alessandro\Downloads'.
    MSI (c) (88:94) [00:06:53:090]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '0'.
    MSI (c) (88:94) [00:06:53:090]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '14216'.
    MSI (c) (88:94) [00:06:53:090]: TRANSFORMS property is now:
    MSI (c) (88:94) [00:06:53:090]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '200'.
    MSI (c) (88:94) [00:06:53:091]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming
    MSI (c) (88:94) [00:06:53:092]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\Favorites
    MSI (c) (88:94) [00:06:53:093]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (c) (88:94) [00:06:53:094]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\Documents
    MSI (c) (88:94) [00:06:53:094]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (c) (88:94) [00:06:53:095]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Recent
    MSI (c) (88:94) [00:06:53:096]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (c) (88:94) [00:06:53:097]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Templates
    MSI (c) (88:94) [00:06:53:098]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (c) (88:94) [00:06:53:098]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Local
    MSI (c) (88:94) [00:06:53:099]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\Pictures
    MSI (c) (88:94) [00:06:53:101]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (c) (88:94) [00:06:53:102]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (c) (88:94) [00:06:53:102]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (c) (88:94) [00:06:53:103]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (c) (88:94) [00:06:53:103]: SHELL32::SHGetFolderPath returned: C:\Users\Alessandro\Desktop
    MSI (c) (88:94) [00:06:53:105]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (c) (88:94) [00:06:53:106]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (c) (88:94) [00:06:53:106]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (c) (88:94) [00:06:53:106]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (c) (88:94) [00:06:53:108]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (c) (88:94) [00:06:53:108]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (c) (88:94) [00:06:53:109]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (c) (88:94) [00:06:53:122]: MSI_LUA: Setting AdminUser property to 1 because this is the client or the user has already permitted elevation
    MSI (c) (88:94) [00:06:53:122]: PROPERTY CHANGE: Adding AdminUser property. Its value is '1'.
    MSI (c) (88:94) [00:06:53:122]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (c) (88:94) [00:06:53:122]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (c) (88:94) [00:06:53:122]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Alessandro'.
    MSI (c) (88:94) [00:06:53:123]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (c) (88:94) [00:06:53:123]: PROPERTY CHANGE: Adding COMPANYNAME property. Its value is 'Hewlett-Packard'.
    MSI (c) (88:94) [00:06:53:123]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Users\ALESSA~1\AppData\Local\Temp\7bdb1f9.msi'.
    MSI (c) (88:94) [00:06:53:123]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi'.
    MSI (c) (88:94) [00:06:53:123]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (c) (88:94) [00:06:53:123]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\Alessandro\Downloads\'.
    MSI (c) (88:94) [00:06:53:123]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\Alessandro\Downloads\'.
    MSI (c) (88:E4) [00:06:53:232]: PROPERTY CHANGE: Adding VersionHandler property. Its value is '4.05'.
    === Logging started: 13.07.2011  00:06:53 ===
    MSI (c) (88:94) [00:06:53:410]: Note: 1: 2262 2: PatchPackage 3: -2147287038
    MSI (c) (88:94) [00:06:53:410]: Machine policy value 'DisableRollback' is 0
    MSI (c) (88:94) [00:06:53:410]: User policy value 'DisableRollback' is 0
    MSI (c) (88:94) [00:06:53:410]: PROPERTY CHANGE: Adding UILevel property. Its value is '5'.
    MSI (c) (88:94) [00:06:53:413]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (c) (88:94) [00:06:53:413]: Doing action: INSTALL
    Action 00:06:53: INSTALL.
    Action start 00:06:53: INSTALL.
    MSI (c) (88:94) [00:06:53:415]: UI Sequence table 'InstallUISequence' is present and populated.
    MSI (c) (88:94) [00:06:53:415]: Running UISequence
    MSI (c) (88:94) [00:06:53:415]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is 'INSTALL'.
    MSI (c) (88:94) [00:06:53:462]: Doing action: Milestone_ERRCA_UIAN161
    Action 00:06:53: Milestone_ERRCA_UIAN161.
    Action start 00:06:53: Milestone_ERRCA_UIAN161.
    MSI (c) (88:94) [00:06:53:464]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'Milestone_ERRCA_UIAN161'
    MSI (c) (88:94) [00:06:53:465]: PROPERTY CHANGE: Adding Milestone property. Its value is 'ERRCA_UIANDADVERTISED'.
    Action ended 00:06:53: Milestone_ERRCA_UIAN161. Return value 1.
    MSI (c) (88:94) [00:06:53:465]: Skipping action: ERRCA_UIANDADVERTISED (condition is false)
    MSI (c) (88:94) [00:06:53:465]: Doing action: Milestone_AppSearch556
    Action 00:06:53: Milestone_AppSearch556.
    Action start 00:06:53: Milestone_AppSearch556.
    MSI (c) (88:94) [00:06:53:467]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'Milestone_AppSearch556'
    MSI (c) (88:94) [00:06:53:467]: PROPERTY CHANGE: Modifying Milestone property. Its current value is 'ERRCA_UIANDADVERTISED'. Its new value: 'AppSearch'.
    Action ended 00:06:53: Milestone_AppSearch556. Return value 1.
    MSI (c) (88:94) [00:06:53:467]: Doing action: AppSearch
    Action 00:06:53: AppSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:53: AppSearch.
    MSI (c) (88:94) [00:06:53:473]: Note: 1: 2262 2: AppSearch 3: -2147287038
    Action ended 00:06:53: AppSearch. Return value 1.
    MSI (c) (88:94) [00:06:53:473]: Doing action: FindRelatedProducts
    Action 00:06:53: FindRelatedProducts. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:53: FindRelatedProducts.
    Action ended 00:06:53: FindRelatedProducts. Return value 1.
    MSI (c) (88:94) [00:06:53:474]: Doing action: Milestone_EulaForm636
    Action 00:06:53: Milestone_EulaForm636.
    Action start 00:06:53: Milestone_EulaForm636.
    MSI (c) (88:94) [00:06:53:476]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'Milestone_EulaForm636'
    MSI (c) (88:94) [00:06:53:476]: PROPERTY CHANGE: Modifying Milestone property. Its current value is 'AppSearch'. Its new value: 'EulaForm'.
    Action ended 00:06:53: Milestone_EulaForm636. Return value 1.
    MSI (c) (88:94) [00:06:53:476]: Doing action: EulaForm
    Action 00:06:53: EulaForm.
    Action start 00:06:53: EulaForm.
    MSI (c) (88:94) [00:06:53:478]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'EulaForm'
    MSI (c) (88:E4) [00:06:53:497]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898. For VSI_MS_Sans_Serif13.0_0_0 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 13 pixels height.
    MSI (c) (88:E4) [00:06:53:514]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898. For VsdDefaultUIFont.524F4245_5254_5341_4C45_534153783400 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 13 pixels height.
    MSI (c) (88:E4) [00:06:53:515]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898. For VSI_MS_Sans_Serif16.0_1_0 textstyle, the system created a 'MS Sans Serif' font, in 0 character set, of 20 pixels height.
    MSI (c) (88:E4) [00:06:53:573]: Note: 1: 2262 2: CheckBox 3: -2147287038
    Action 00:06:53: EulaForm. Dialog created
    MSI (c) (88:EC) [00:06:53:638]: Note: 1: 2731 2: 0
    MSI (c) (88:E4) [00:06:55:686]: PROPERTY CHANGE: Adding EulaForm_Property property. Its value is '1'.
    Action ended 00:06:58: EulaForm. Return value 1.
    MSI (c) (88:94) [00:06:58:329]: Doing action: EULAACCEPTED_ACTION
    Action 00:06:58: EULAACCEPTED_ACTION.
    Action start 00:06:58: EULAACCEPTED_ACTION.
    MSI (c) (88:94) [00:06:58:333]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'EULAACCEPTED_ACTION'
    MSI (c) (88:94) [00:06:58:333]: PROPERTY CHANGE: Adding EULAACCEPTED property. Its value is '1'.
    Action ended 00:06:58: EULAACCEPTED_ACTION. Return value 1.
    MSI (c) (88:94) [00:06:58:333]: Doing action: Milestone_LaunchCond459
    Action 00:06:58: Milestone_LaunchCond459.
    Action start 00:06:58: Milestone_LaunchCond459.
    MSI (c) (88:94) [00:06:58:335]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'Milestone_LaunchCond459'
    MSI (c) (88:94) [00:06:58:336]: PROPERTY CHANGE: Modifying Milestone property. Its current value is 'EulaForm'. Its new value: 'LaunchConditions'.
    Action ended 00:06:58: Milestone_LaunchCond459. Return value 1.
    MSI (c) (88:94) [00:06:58:336]: Doing action: LaunchConditions
    Action 00:06:58: LaunchConditions. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: LaunchConditions.
    Action ended 00:06:58: LaunchConditions. Return value 1.
    MSI (c) (88:94) [00:06:58:336]: Doing action: CCPSearch
    Action 00:06:58: CCPSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: CCPSearch.
    MSI (c) (88:94) [00:06:58:338]: Note: 1: 2262 2: CCPSearch 3: -2147287038
    Action ended 00:06:58: CCPSearch. Return value 1.
    MSI (c) (88:94) [00:06:58:338]: Doing action: RMCCPSearch
    Action 00:06:58: RMCCPSearch. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: RMCCPSearch.
    MSI (c) (88:94) [00:06:58:338]: Note: 1: 2262 2: CCPSearch 3: -2147287038
    Action ended 00:06:58: RMCCPSearch. Return value 0.
    MSI (c) (88:94) [00:06:58:338]: Doing action: ValidateProductID
    Action 00:06:58: ValidateProductID. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: ValidateProductID.
    Action ended 00:06:58: ValidateProductID. Return value 1.
    MSI (c) (88:94) [00:06:58:341]: Doing action: Milestone_DIRCA_TARG381
    Action 00:06:58: Milestone_DIRCA_TARG381.
    Action start 00:06:58: Milestone_DIRCA_TARG381.
    MSI (c) (88:94) [00:06:58:344]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'Milestone_DIRCA_TARG381'
    MSI (c) (88:94) [00:06:58:344]: PROPERTY CHANGE: Modifying Milestone property. Its current value is 'LaunchConditions'. Its new value: 'DIRCA_TARGETDIR'.
    Action ended 00:06:58: Milestone_DIRCA_TARG381. Return value 1.
    MSI (c) (88:94) [00:06:58:344]: Doing action: DIRCA_TARGETDIR
    Action 00:06:58: DIRCA_TARGETDIR. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: DIRCA_TARGETDIR.
    MSI (c) (88:94) [00:06:58:344]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'DIRCA_TARGETDIR'
    MSI (c) (88:94) [00:06:58:344]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\Program Files\Microsoft\Microsoft Fix it 50380'.
    Action ended 00:06:58: DIRCA_TARGETDIR. Return value 1.
    MSI (c) (88:94) [00:06:58:346]: Doing action: CostInitialize
    Action 00:06:58: CostInitialize. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: CostInitialize.
    MSI (c) (88:94) [00:06:58:347]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (c) (88:94) [00:06:58:347]: Baseline: Sorting baselines for {F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256}.
    MSI (c) (88:94) [00:06:58:347]: Baseline: New baseline 2.1.3 from transaction.
    MSI (c) (88:94) [00:06:58:374]: Baseline: Sorted order Native: Order 0.
    MSI (c) (88:94) [00:06:58:375]: Baseline Data Table:
    MSI (c) (88:94) [00:06:58:375]: ProductCode: {F0D8DC8B-43AC-4B38-A1B3-9D6A4229A256} Version: 2.1.3 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (c) (88:94) [00:06:58:375]: Baseline File Table:
    MSI (c) (88:94) [00:06:58:540]: Note: 1: 1336 2: 5 3: Q:\
    MSI (c) (88:94) [00:06:58:540]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
    MSI (c) (88:94) [00:06:58:540]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    Action ended 00:06:58: CostInitialize. Return value 1.
    MSI (c) (88:94) [00:06:58:541]: Doing action: FileCost
    Action 00:06:58: FileCost. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: FileCost.
    MSI (c) (88:94) [00:06:58:657]: Note: 1: 2262 2: RemoveFile 3: -2147287038
    MSI (c) (88:94) [00:06:58:657]: Note: 1: 2262 2: MsiAssembly 3: -2147287038
    MSI (c) (88:94) [00:06:58:660]: Note: 1: 2262 2: Class 3: -2147287038
    MSI (c) (88:94) [00:06:58:660]: Note: 1: 2262 2: Extension 3: -2147287038
    MSI (c) (88:94) [00:06:58:660]: Note: 1: 2262 2: TypeLib 3: -2147287038
    MSI (c) (88:94) [00:06:58:660]: Note: 1: 2262 2: IniFile 3: -2147287038
    MSI (c) (88:94) [00:06:58:661]: Note: 1: 2262 2: MoveFile 3: -2147287038
    MSI (c) (88:94) [00:06:58:661]: Note: 1: 2262 2: DuplicateFile 3: -2147287038
    MSI (c) (88:94) [00:06:58:661]: Note: 1: 2262 2: ReserveCost 3: -2147287038
    MSI (c) (88:94) [00:06:58:661]: Note: 1: 2262 2: Shortcut 3: -2147287038
    Action ended 00:06:58: FileCost. Return value 1.
    MSI (c) (88:94) [00:06:58:661]: Doing action: IsolateComponents
    Action 00:06:58: IsolateComponents. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: IsolateComponents.
    MSI (c) (88:94) [00:06:58:662]: Note: 1: 2262 2: BindImage 3: -2147287038
    MSI (c) (88:94) [00:06:58:662]: Note: 1: 2262 2: IsolatedComponent 3: -2147287038
    MSI (c) (88:94) [00:06:58:662]: Note: 1: 2262 2: Patch 3: -2147287038
    Action ended 00:06:58: IsolateComponents. Return value 1.
    MSI (c) (88:94) [00:06:58:662]: Skipping action: ResumeForm (condition is false)
    MSI (c) (88:94) [00:06:58:662]: Skipping action: MaintenanceForm (condition is false)
    MSI (c) (88:94) [00:06:58:662]: Doing action: CostFinalize
    Action 00:06:58: CostFinalize. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    Action start 00:06:58: CostFinalize.
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (c) (88:94) [00:06:58:663]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (88:94) [00:06:58:663]: Note: 1: 2262 2: Condition 3: -2147287038
    MSI (c) (88:94) [00:06:58:663]: PROPERTY CHANGE: Modifying TARGETDIR property. Its current value is 'C:\Program Files\Microsoft\Microsoft Fix it 50380'. Its new value: 'C:\Program Files\Microsoft\Microsoft Fix it 50380\'.
    MSI (c) (88:94) [00:06:58:664]: Target path resolution complete. Dumping Directory table...
    MSI (c) (88:94) [00:06:58:664]: Note: target paths subject to change (via custom actions or browsing)
    MSI (c) (88:94) [00:06:58:664]: Dir (target): Key: TARGETDIR , Object: C:\Program Files\Microsoft\Microsoft Fix it 50380\
    MSI (c) (88:94) [00:06:58:664]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
    MSI (c) (88:94) [00:06:58:664]: Dir (target): Key: ProgramMenuFolder , Object: C:\Users\Alessandro\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\
    MSI (c) (88:94) [00:06:58:664]: Dir (target): Key: DesktopFolder , Object: C:\Users\Alessandro\Desktop\
    MSI (c) (88:94) [00:06:58:664]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    MSI (c) (88:94) [00:06:58:664]: Note: 1: 2262 2: IsolatedComponent 3: -2147287038
    MSI (c) (88:94) [00:06:58:664]: Note: 1: 2262 2: BindImage 3: -2147287038
    MSI (c) (88:94) [00:06:58:664]: Note: 1: 2262 2: Patch 3: -2147287038
    MSI (c) (88:94) [00:06:58:667]: Note: 1: 2262 2: RemoveFile 3: -2147287038
    Action ended 00:06:58: CostFinalize. Return value 1.
    MSI (c) (88:94) [00:06:58:668]: Doing action: ProgressForm
    Action 00:06:58: ProgressForm.
    Action start 00:06:58: ProgressForm.
    MSI (c) (88:94) [00:06:58:670]: Note: 1: 2235 2:  3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'ProgressForm'
    MSI (c) (88:E4) [00:06:58:673]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control Line1 on dialog ProgressForm extends beyond the boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: ProgressForm, Line1, to the right
    MSI (c) (88:E4) [00:06:58:690]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control Line2 on dialog ProgressForm extends beyond the boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: ProgressForm, Line2, to the right
    MSI (c) (88:E4) [00:06:58:693]: Note: 1: 2262 2: Error 3: -2147287038
    DEBUG: Error 2826:  Control BannerBmp on dialog ProgressForm extends beyond the boundaries of the dialog to the right by 3 pixels
    The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2826. The arguments are: ProgressForm, BannerBmp, to the right
    Action 00:06:58: ProgressForm. Dialog created
    Action ended 00:06:58: ProgressForm. Return value 1.
    MSI (c) (88:94) [00:06:58:786]: Doing action: ExecuteAction
    Action 00:06:58: ExecuteAction. {\FinalUIFont}[PROGRESS_RESTORE_TXT]
    MSI (c) (88:E4) [00:06:58:787]: Note: 1: 2262 2: Error 3: -2147287038
    Info 2898. For FinalUIFont textstyle, the system created a 'Arial' font, in 0 character set, of 15 pixels height.
    Action start 00:06:58: ExecuteAction.
    MSI (c) (88:94) [00:06:58:888]: PROPERTY CHANGE: Adding SECONDSEQUENCE property. Its value is '1'.
    MSI (c) (88:94) [00:06:58:888]: Grabbed execution mutex.
    MSI (c) (88:94) [00:06:58:888]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (c) (88:94) [00:06:58:889]: Switching to server: TARGETDIR="C:\Program Files\Microsoft\Microsoft Fix it 50380\" EULAACCEPTED="1" CURRENTDIRECTORY="C:\Users\Alessandro\Downloads" CLIENTUILEVEL="0" CLIENTPROCESSID="14216" USERNAME="Alessandro" COMPANYNAME="Hewlett-Packard" SOURCEDIR="C:\Users\Alessandro\Downloads\" ACTION="INSTALL" EXECUTEACTION="INSTALL" ROOTDRIVE="C:\" INSTALLLEVEL="1" SECONDSEQUENCE="1"  ADDLOCAL=DefaultFeature 
    MSI (s) (B8:B0) [00:06:58:949]: Running installation inside multi-package transaction C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi
    MSI (s) (B8:B0) [00:06:58:949]: Grabbed execution mutex.
    MSI (s) (B8:9C) [00:06:58:970]: Resetting cached policy values
    MSI (s) (B8:9C) [00:06:58:970]: Machine policy value 'Debug' is 0
    MSI (s) (B8:9C) [00:06:58:970]: ******* RunEngine:
               ******* Product: C:\Users\Alessandro\Downloads\MicrosoftFixit50380 (1).msi
               ******* Action: INSTALL
               ******* CommandLine: **********
    MSI (s) (B8:9C) [00:06:58:971]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (B8:9C) [00:06:58:971]: Setting cached product context: User non-assigned for product: 13E44868CC248C946B74273100F97491
    MSI (s) (B8:9C) [00:06:58:971]: Using cached product context: User non-assigned for product: 13E44868CC248C946B74273100F97491
    MSI (s) (B8:9C) [00:06:58:972]: Setting cached product context: User non-assigned for product: 1CAD1F48FB1E12A4D9B2DDE32186A6C2
    MSI (s) (B8:9C) [00:06:58:972]: Using cached product context: User non-assigned for product: 1CAD1F48FB1E12A4D9B2DDE32186A6C2
    MSI (s) (B8:9C) [00:06:58:972]: Setting cached product context: User non-assigned for product: 3E532082BF1DA8041A5D7CB75A48BFAB
    MSI (s) (B8:9C) [00:06:58:972]: Using cached product context: User non-assigned for product: 3E532082BF1DA8041A5D7CB75A48BFAB
    MSI (s) (B8:9C) [00:06:58:973]: Setting cached product context: User non-assigned for product: 54C3703830031764A96842A3AADD19A5
    MSI (s) (B8:9C) [00:06:58:973]: Using cached product context: User non-assigned for product: 54C3703830031764A96842A3AADD19A5
    MSI (s) (B8:9C) [00:06:58:973]: Setting cached product context: User non-assigned for product: 5B97AB429F35C574D994CEB4EDB890FC
    MSI (s) (B8:9C) [00:06:58:973]: Using cached product context: User non-assigned for product: 5B97AB429F35C574D994CEB4EDB890FC
    MSI (s) (B8:9C) [00:06:58:974]: Setting cached product context: User non-assigned for product: 6B251C42C44546B44AAC7585340CFC6E
    MSI (s) (B8:9C) [00:06:58:974]: Using cached product context: User non-assigned for product: 6B251C42C44546B44AAC7585340CFC6E
    MSI (s) (B8:9C) [00:06:58:975]: Setting cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (B8:9C) [00:06:58:975]: Using cached product context: User non-assigned for product: 6BBFDF96D153C8B4988D68D79C0D2A4A
    MSI (s) (B8:9C) [00:06:58:975]: Setting cached product context: User non-assigned for product: 7DC22F39D87AA4643B0B5EB75F8F5992
    MSI (s) (B8:9C) [00:06:58:975]: Using cached product context: User non-assigned for product: 7DC22F39D87AA4643B0B5EB75F8F5992
    MSI (s) (B8:9C) [00:06:58:976]: Setting cached product context: User non-assigned for product: 7F757E637A35D6744A6A9B14D275C71C
    MSI (s) (B8:9C) [00:06:58:976]: Using cached product context: User non-assigned for product: 7F757E637A35D6744A6A9B14D275C71C
    MSI (s) (B8:9C) [00:06:58:976]: Setting cached product context: User non-assigned for product: 99DCE137554F2A743996272C84008B62
    MSI (s) (B8:9C) [00:06:58:976]: Using cached product context: User non-assigned for product: 99DCE137554F2A743996272C84008B62
    MSI (s) (B8:9C) [00:06:58:977]: Setting cached product context: User non-assigned for product: A8359ED0ED846F0418EBAA09A831CD08
    MSI (s) (B8:9C) [00:06:58:977]: Using cached product context: User non-assigned for product: A8359ED0ED846F0418EBAA09A831CD08
    MSI (s) (B8:9C) [00:06:58:977]: Setting cached product context: User non-assigned for product: BF69C629A0D9405408006C3D4A3A11E8
    MSI (s) (B8:9C) [00:06:58:977]: Using cached product context: User non-assigned for product: BF69C629A0D9405408006C3D4A3A11E8
    MSI (s) (B8:9C) [00:06:58:978]: Setting cached product context: User non-assigned for product: E48F4F4FF408A9E4487D3C24380F80F8
    MSI (s) (B8:9C) [00:06:58:978]: Using cached product context: User non-assigned for product: E48F4F4FF408A9E4487D3C24380F80F8
    MSI (s) (B8:9C) [00:06:58:978]: Setting cached product context: User non-assigned for product: EA70E2EBA46E43C498887457CF2B7A52
    MSI (s) (B8:9C) [00:06:58:978]: Using cached product context: User non-assigned for product: EA70E2EBA46E43C498887457CF2B7A52
    MSI (s) (B8:9C) [00:06:58:979]: Setting cached product context: User non-assigned for product: EACB9EE39A9E5E54B9C1384A3D750EC5
    MSI (s) (B8:9C) [00:06:58:979]: Using cached product context: User non-assigned for product: EACB9EE39A9E5E54B9C1384A3D750EC5
    MSI (s) (B8:9C) [00:06:58:980]: Setting cached product context: machine assigned for product: 00002109001090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:980]: Using cached product context: machine assigned for product: 00002109001090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:980]: Setting cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:980]: Using cached product context: machine assigned for product: 00002109020090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:981]: Setting cached product context: machine assigned for product: 00002109101090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:981]: Using cached product context: machine assigned for product: 00002109101090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:981]: Setting cached product context: machine assigned for product: 000021091A0001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:981]: Using cached product context: machine assigned for product: 000021091A0001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:981]: Setting cached product context: machine assigned for product: 000021091A0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:982]: Using cached product context: machine assigned for product: 000021091A0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:982]: Setting cached product context: machine assigned for product: 00002109411090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:982]: Using cached product context: machine assigned for product: 00002109411090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:982]: Setting cached product context: machine assigned for product: 00002109440001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:983]: Using cached product context: machine assigned for product: 00002109440001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:983]: Setting cached product context: machine assigned for product: 00002109440090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:983]: Using cached product context: machine assigned for product: 00002109440090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:984]: Setting cached product context: machine assigned for product: 00002109510001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:984]: Using cached product context: machine assigned for product: 00002109510001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:984]: Setting cached product context: machine assigned for product: 00002109510090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:984]: Using cached product context: machine assigned for product: 00002109510090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:985]: Setting cached product context: machine assigned for product: 00002109511090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:985]: Using cached product context: machine assigned for product: 00002109511090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:985]: Setting cached product context: machine assigned for product: 00002109610001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:985]: Using cached product context: machine assigned for product: 00002109610001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:985]: Setting cached product context: machine assigned for product: 00002109610090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:986]: Using cached product context: machine assigned for product: 00002109610090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:986]: Setting cached product context: machine assigned for product: 00002109710090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:986]: Using cached product context: machine assigned for product: 00002109710090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:986]: Setting cached product context: machine assigned for product: 00002109711090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:987]: Using cached product context: machine assigned for product: 00002109711090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:987]: Setting cached product context: machine assigned for product: 00002109810001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:987]: Using cached product context: machine assigned for product: 00002109810001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:988]: Setting cached product context: machine assigned for product: 00002109810090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:988]: Using cached product context: machine assigned for product: 00002109810090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:988]: Setting cached product context: machine assigned for product: 00002109910001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:988]: Using cached product context: machine assigned for product: 00002109910001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:989]: Setting cached product context: machine assigned for product: 00002109910090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:989]: Using cached product context: machine assigned for product: 00002109910090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:989]: Setting cached product context: machine assigned for product: 00002109A10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:989]: Using cached product context: machine assigned for product: 00002109A10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:989]: Setting cached product context: machine assigned for product: 00002109A10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:990]: Using cached product context: machine assigned for product: 00002109A10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:990]: Setting cached product context: machine assigned for product: 00002109AB0001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:990]: Using cached product context: machine assigned for product: 00002109AB0001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:990]: Setting cached product context: machine assigned for product: 00002109AB0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:991]: Using cached product context: machine assigned for product: 00002109AB0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:991]: Setting cached product context: machine assigned for product: 00002109B10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:991]: Using cached product context: machine assigned for product: 00002109B10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:992]: Setting cached product context: machine assigned for product: 00002109B10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:992]: Using cached product context: machine assigned for product: 00002109B10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:992]: Setting cached product context: machine assigned for product: 00002109C20001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:992]: Using cached product context: machine assigned for product: 00002109C20001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:993]: Setting cached product context: machine assigned for product: 00002109C20090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:993]: Using cached product context: machine assigned for product: 00002109C20090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:993]: Setting cached product context: machine assigned for product: 00002109E60001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:993]: Using cached product context: machine assigned for product: 00002109E60001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:994]: Setting cached product context: machine assigned for product: 00002109E60090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:994]: Using cached product context: machine assigned for product: 00002109E60090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:994]: Setting cached product context: machine assigned for product: 00002109F10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:994]: Using cached product context: machine assigned for product: 00002109F10001400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:995]: Setting cached product context: machine assigned for product: 00002109F10070400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:995]: Using cached product context: machine assigned for product: 00002109F10070400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:995]: Setting cached product context: machine assigned for product: 00002109F10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:995]: Using cached product context: machine assigned for product: 00002109F10090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:996]: Setting cached product context: machine assigned for product: 00002109F100A0C00000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:996]: Using cached product context: machine assigned for product: 00002109F100A0C00000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:996]: Setting cached product context: machine assigned for product: 00002109F100C0400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:996]: Using cached product context: machine assigned for product: 00002109F100C0400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:997]: Setting cached product context: machine assigned for product: 00002119E20000000000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:997]: Using cached product context: machine assigned for product: 00002119E20000000000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:997]: Setting cached product context: machine assigned for product: 000021599B0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:997]: Using cached product context: machine assigned for product: 000021599B0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:998]: Setting cached product context: machine assigned for product: 00002159FA0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:998]: Using cached product context: machine assigned for product: 00002159FA0090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:999]: Setting cached product context: machine assigned for product: 00004102D60090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:999]: Using cached product context: machine assigned for product: 00004102D60090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:999]: Setting cached product context: machine assigned for product: 00004109500200000000000000F01FEC
    MSI (s) (B8:9C) [00:06:58:999]: Using cached product context: machine assigned for product: 00004109500200000000000000F01FEC
    MSI (s) (B8:9C) [00:06:59:003]: Setting cached product context: machine assigned for product: 00004159A70090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:59:003]: Using cached product context: machine assigned for product: 00004159A70090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:59:003]: Setting cached product context: machine assigned for product: 00004159D70090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:59:004]: Using cached product context: machine assigned for product: 00004159D70090400000000000F01FEC
    MSI (s) (B8:9C) [00:06:59:004]: Setting cached product context: machine assigned for product: 003DEF3BC6080E110A0D8BCAF6798BE8
    MSI (s) (B8:9C) [00:06:59:004]: Using cached product context: machine assigned for product: 003DEF3BC6080E110A0D8BCAF6798BE8
    MSI (s) (B8:9C) [00:06:59:005]: Setting cached product context: machine assigned for product: 00D5753BFE722C949B0E413B9D459E29
    MSI (s) (B8:9C) [00:06:59:005]: Using cached product context: machine assigned for product: 00D5753BFE722C949B0E413B9D459E29
    MSI (s) (B8:9C) [00:06:59:005]: Setting cached product context: machine assigned for product: 01CDEECBF144E4E4580990554C6C3B6F
    MSI (s) (B8:9C) [00:06:59:005]: Using cached product context: machine assigned for product: 01CDEECBF144E4E4580990554C6C3B6F
    MSI (s) (B8:9C) [00:06:59:006]: Setting cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (B8:9C) [00:06:59:006]: Using cached product context: machine assigned for product: 032440EF5AC97F34B985A55C2AA8F133
    MSI (s) (B8:9C) [00:06:59:006]: Setting cached product context: machine assigned for product: 04834270A959D0B48852C235F3D0BD91
    MSI (s) (B8:9C) [00:06:59:006]: Using cached product context: machine assigned for product: 04834270A959D0B48852C235F3D0BD91
    MSI (s) (B8:9C) [00:06:59:007]: Setting cached product context: machine assigned for product: 06FD6047D610B6742A7C559D79950274
    MSI (s) (B8:9C) [00:06:59:007]: Using cached product context: machine assigned for product: 06FD6047D610B6742A7C559D79950274
    MSI (s) (B8:9C) [00:06:59:007]: Setting cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (B8:9C) [00:06:59:007]: Using cached product context: machine assigned for product: 076CFAAAB965F2A4284B2449E5D03EFE
    MSI (s) (B8:9C) [00:06:59:008]: Setting cached product context: machine assigned for product: 098990BCF5D15D11E99A0005AB3E711E
    MSI (s) (B8:9C) [00:06:59:008]: Using cached product context: machine assigned for product: 098990BCF5D15D11E99A0005AB3E711E
    MSI (s) (B8:9C) [00:06:59:008]: Setting cached product context: machine assigned for product: 099A4A9134357FF43B5BF640C690E1FD
    MSI (s) (B8:9C) [00:06:59:008]: Using cached product context: machine assigned for product: 099A4A9134357FF43B5BF640C690E1FD
    MSI (s) (B8:9C) [00:06:59:009]: Setting cached product context: machine assigned for product: 0A28CE6A4141D574A8DF6409983F80D0
    MSI (s) (B8:9C) [00:06:59:009]: Using cached product context: machine assigned for product: 0A28CE6A4141D574A8DF6409983F80D0
    MSI (s) (B8:9C) [00:06:59:009]: Setting cached product context: machine assigned for product: 0AD1FB2700B24974193751792210B947
    MSI (s) (B8:9C) [00:06:59:009]: Using cached product context: machine assigned for product: 0AD1FB2700B24974193751792210B947
    MSI (s) (B8:9C) [00:06:59:010]: Setting cached product context: machine assigned for product: 0C7069BF8B718B24BB991A9C7F303836
    MSI (s) (B8:9C) [00:06:59:010]: Using cached product context: machine assigned for product: 0C7069BF8B718B24BB991A9C7F303836
    MSI (s) (B8:9C) [00:06:59:010]: Setting cached product context: machine assigned for product: 0CAED145D3F56E547BBC49CE3F9B7684
    MSI (s) (B8:9C) [00:06:59:010]: Using cached product context: machine assigned for product: 0CAED145D3F56E547BBC49CE3F9B7684
    MSI (s) (B8:9C) [00:06:59:011]: Setting cached product context: machine assigned for product: 0EB3E7EC3DD261446A099F4E9AA9C8FF
    MSI (s) (B8:9C) [00:06:59:011]: Using cached product context: machine assigned for product: 0EB3E7EC3DD261446A099F4E9AA9C8FF
    MSI (s) (B8:9C) [00:06:59:012]: Setting cached product context: machine assigned for product: 0F8F8F82872CA4545970643B44AA1D88
    MSI (s) (B8:9C) [00:06:59:012]: Using cached product context: machine assigned for product: 0F8F8F82872CA4545970643B44AA1D88
    MSI (s) (B8:9C) [00:06:59:012]: Setting cached product context: machine assigned for product: 10743651ECAB9444B8525176ADC8F93D
    MSI (s) (B8:9C) [00:06:59:012]: Using cached product context: machine assigned for product: 10743651ECAB9444B8525176ADC8F93D
    MSI (s) (B8:9C) [00:06:59:013]: Setting cached product context: machine assigned for product: 10F61E61D2E284244AF26762C141B7C6
    MSI (s) (B8:9C) [00:06:59:013]: Using cached product context: machine assigned for product: 10F61E61D2E284244AF26762C141B7C6
    MSI (s) (B8:9C) [00:06:59:013]: Setting cached product context: machine assigned for product: 121E2D80A6F7BE3479DF26B944094330
    MSI (s) (B8:9C) [00:06:59:013]: Using cached product context: machine assigned for product: 121E2D80A6F7BE3479DF26B944094330
    MSI (s) (B8:9C) [00:06:59:014]: Setting cached product context: machine assigned for product: 13AECBF481D521242913EDC71FEBD7BB
    MSI (s) (B8:9C) [00:06:59:014]: Using cached product context: machine assigned for product: 13AECBF481D521242913EDC71FEBD7BB
    MSI (s) (B8:9C) [00:06:59:014]: Setting cached product context: machine assigned for product: 13B3A47134C4DD3468F6379CBD88B784
    MSI (s) (B8:9C) [00:06:59:014]: Using cached product context: machine assigned for product: 13B3A47134C4DD3468F6379CBD88B784
    MSI (s) (B8:9C) [00:06:59:015]: Setting cached product context: machine assigned for product: 166F59DC4C5A5F446AAACEDD192C04EB
    MSI (s) (B8:9C) [00:06:59:015]: Using cached product context: machine assigned for product: 166F59DC4C5A5F446AAACEDD192C04EB
    MSI (s) (B8:9C) [00:06:59:015]: Setting cached product context: machine assigned for product: 166F59DC4C5AFA112BCCBADC123A523B
    MSI (s) (B8:9C) [00:06:59:015]: Using cached product context: machine assigned for product: 166F59DC4C5AFA112BCCBADC123A523B
    MSI (s) (B8:9C) [00:06:59:016]: Setting cached product context: machine assigned for product: 18555481990E8AB4CBB63FB4F26006C0
    MSI (s) (B8:9C) [00:06:59:016]: Using cached product context: machine assigned for product: 18555481990E8AB4CBB63FB4F26006C0
    MSI (s) (B8:9C) [00:06:59:016]: Setting cached product context: machine assigned for product: 1881429049C276A4E85548380C917C2D
    MSI (s) (B8:9C) [00:06:59:017]: Using cached product context: machine assigned for product: 1881429049C276A4E85548380C917C2D
    MSI (s) (B8:9C) [00:06:59:017]: Setting cached product context: machine assigned for product: 18E5D17A769BBD34397DDF13FB9B7584
    MSI (s) (B8:9C) [00:06:59:017]: Using cached product context: machine assigned for product: 18E5D17A769BBD34397DDF13FB9B7584
    MSI (s) (B8:9C) [00:06:59:017]: Setting cached product context: machine assigned for product: 19EB839C5BB348B4E96F880F05D50083
    MSI (s) (B8:9C) [00:06:59:018]: Using cached product context: machine assigned for product: 19EB839C5BB348B4E96F880F05D50083
    MSI (s) (B8:9C) [00:06:59:018]: Setting cached product context: machine assigned for product: 1A091792D0B46DC4B8F993701FC5F38D
    MSI (s) (B8:9C) [00:06:59:018]: Using cached product context: machine assigned for product: 1A091792D0B46DC4B8F993701FC5F38D
    MSI (s) (B8:9C) [00:06:59:018]: Setting cached product context: machine assigned for product: 1AA7E1C69E44D644AA2BD06E9DFEAE1B
    MSI (s) (B8:9C) [00:06:59:019]: Using cached product context: machine assigned for product: 1AA7E1C69E44D644AA2BD06E9DFEAE1B
    MSI (s) (B8:9C) [00:06:59:019]: Setting cached product context: machine assigned for product: 1BD7783877B8CB54BA34B2CA220E390E
    MSI (s) (B8:9C) [00:06:59:019]: Using cached product context: machine assigned for product: 1BD7783877B8CB54BA34B2CA220E390E
    MSI (s) (B8:9C) [00:06:59:019]: Setting cached product context: machine assigned for product: 1C2D6E6109C79034E84C2D126209AA4A
    MSI (s) (B8:9C) [00:06:59:020]: Using cached product context: machine assigned for product: 1C2D6E6109C79034E84C2D126209AA4A
    MSI (s) (B8:9C) [00:06:59:020]: Setting cached product context: machine assigned for product: 1CE3E25CC8401E54D835010B6C056938
    MSI (s) (B8:9C) [00:06:59:020]: Using cached product context: machine assigned for product: 1CE3E25CC8401E54D835010B6C056938
    MSI (s) (B8:9C) [00:06:59:021]: Setting cached product context: machine assigned for product: 1CF327F06067768468C6EC08DA92D2FA
    MSI (s) (B8:9C) [00:06:59:021]: Using cached product context: machine assigned for product: 1CF327F06067768468C6EC08DA92D2FA
    MSI (s) (B8:9C) [00:06:59:021]: Setting cached product context: machine assigned for product: 1E60C7B188846A7499A290099B864368
    MSI (s) (B8:9C) [00:06:59:021]: Using cached product context: machine assigned for product: 1E60C7B188846A7499A290099B864368
    MSI (s) (B8:9C) [00:06:59:022]: Setting cached product context: machine assigned for product: 1E727890A57705445B37F344F1C12A34
    MSI (s) (B8:9C) [00:06:59:022]: Using cached product context: machine assigned for product: 1E727890A57705445B37F344F1C12A34
    MSI (s) (B8:9C) [00:06:59:022]: Setting cached product context: machine assigned for product: 20B91A1DE71869244AB57058F37DD475
    MSI (s) (B8:9C) [00:06:59:022]: Using cached product context: machine assigned for product: 20B91A1DE71869244AB57058F37DD475
    MSI (s) (B8:9C) [00:06:59:023]: Setting cached product context: machine assigned for product: 25BBB29DFF28DE24A8C3E460F249A47B
    MSI (s) (B8:9C) [00:06:59:023]: Using cached product context: machine assigned for product: 25BBB29DFF28DE24A8C3E460F249A47B
    MSI (s) (B8:9C) [00:06:59:023]: Setting cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (B8:9C) [00:06:59:023]: Using cached product context: machine assigned for product: 26CEF00243C306D4C98ECE73E2100CF8
    MSI (s) (B8:9C) [00:06:59:024]: Setting cached product context: machine assigned for product: 26DDC2EC4210AC63483DF9D4FCC5B59D
    MSI (s) (B8:9C) [00:06:59:024]: Using cached product context: machine assigned for product: 26DDC2EC4210AC63483DF9D4FCC5B59D
    MSI (s) (B8:9C) [00:06:59:024]: Setting cached product context: machine assigned for product: 2704A83146E9DB645B9FBDB23B5993F1
    MSI (s) (B8:9C) [00:06:59:025]: Using cached product context: machine assigned for product: 2704A83146E9DB645B9FBDB23B5993F1
    MSI (s) (B8:9C) [00:06:59:025]: Setting cached product context: machine assigned for product: 276365164C482A740A734B23C283FFEC
    MSI (s) (B8:9C) [00:06:59:025]: Using cached product context: machine assigned for product: 276365164C482A740A734B23C283FFEC
    MSI (s) (B8:9C) [00:06:59:025]: Setting cached product context: machine assigned for product: 2878E7224F2B79E40BEE94EDC91C0C0C
    MSI (s) (B8:9C) [00:06:59:026]: Using cached product context: machine assigned for product: 2878E7224F2B79E40BEE94EDC91C0C0C
    MSI (s) (B8:9C) [00:06:59:026]: Setting cached product context: machine assigned for product: 29F49D53A3D15C346850AE62B8A1B79D
    MSI (s) (B8:9C) [00:06:59:026]: Using cached product context: machine assigned for product: 29F49D53A3D15C346850AE62B8A1B79D
    MSI (s) (B8:9C) [00:06:59:026]: Setting cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (B8:9C) [00:06:59:027]: Using cached product context: machine assigned for product: 29F618052561C7A49BCB846F2847C2B4
    MSI (s) (B8:9C) [00:06:59:027]: Setting cached product context: machine assigned for product: 2B4A3F578E6FD4342AFEBDCB10C6C62B
    MSI (s) (B8:9C) [00:06:59:027]: Using cached product context: machine assigned for product: 2B4A3F578E6FD4342AFEBDCB10C6C62B
    MSI (s) (B8:9C) [00:06:59:028]: Setting cached product context: machine assigned for product: 2B51DA16BD0568647A9341EF81D04492
    MSI (s) (B8:9C) [00:06:59:028]: Using cached product context: machine assigned for product: 2B51DA16BD0568647A9341EF81D04492
    MSI (s) (B8:9C) [00:06:59:028]: Setting cached product context: machine assigned for product: 30A4452B0D01E5E4AB963026FF2CD081
    MSI (s) (B8:9C) [00:06:59:028]: Using cached product context: machine assigned for product: 30A4452B0D01E5E4AB963026FF2CD081
    MSI (s) (B8:9C) [00:06:59:029]: Setting cached product context: machine assigned for product: 31A9F5E072C44EC4E9929622E30EF8FC
    MSI (s) (B8:9C) [00:06:59:029]: Using cached product context: machine assigned for product: 31A9F5E072C44EC4E9929622E30EF8FC
    MSI (s) (B8:9C) [00:06:59:030]: Setting cached product context: machine assigned for product: 3445DAE54917CC640A5524E8A6BBB1FA
    MSI (s) (B8:9C) [00:06:59:030]: Using cached product context: machine assigned for product: 3445DAE54917CC640A5524E8A6BBB1FA
    MSI (s) (B8:9C) [00:06:59:030]: Setting cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (B8:9C) [00:06:59:030]: Using cached product context: machine assigned for product: 389F20921C4BAB448BD5C5D6252E4C14
    MSI (s) (B8:9C) [00:06:59:031]: Setting cached product context: machine assigned for product: 3B10C76B20587EB4EABABBED19A03DEE
    MSI (s) (B8:9C) [00:06:59:031]: Using cached product context: machine assigned for product: 3B10C76B20587EB4EABABBED19A03DEE
    MSI (s) (B8:9C) [00:06:59:031]: Setting cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (B8:9C) [00:06:59:032]: Using cached product context: machine assigned for product: 3D04254D3B6B9FF42B3445CE3E1E0066
    MSI (s) (B8:9C) [00:06:59:032]: Setting cached product context: machine assigned for product: 3FCC006F88C922A40B4BDD8AE2991781
    MSI (s) (B8:9C) [00:06:59:032]: Using cached product context: machine assigned for product: 3FCC006F88C922A40B4BDD8AE2991781
    MSI (s) (B8:9C) [00:06:59:032]: Setting cached product context: machine assigned for product: 40DDF53BDF84D3D40BBE80C81573DC24
    MSI (s) (B8:9C) [00:06:59:033]: Using cached product context: machine assigned for product: 40DDF53BDF84D3D40BBE80C81573DC24
    MSI (s) (B8:9C) [00:06:59:033]: Setting cached product context: machine assigned for product: 41699E6F240F9544287BB8832B063165
    MSI (s) (B8:9C) [00:06:59:033]: Using cached product context: machine assigned for product: 41699E6F240F9544287BB8832B063165
    MSI (s) (B8:9C) [00:06:59:033]: Setting cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (B8:9C) [00:06:59:034]: Using cached product context: machine assigned for product: 4314AE291D01A814191EA5403531A183
    MSI (s) (B8:9C) [00:06:59:034]: Setting cached product context: machine assigned for product: 43FF6818983DE7B4A9F21C7985B5FCDB
    MSI (s) (B8:9C) [00:06:59:034]: Using cached product context: machine assigned for product: 43FF6818983DE7B4A9F21C7985B5FCDB
    MSI (s) (B8:9C) [00:06:59:035]: Setting cached product context: machine assigned for product: 45BC40E1E4FA3CA44B7B0C1A06EB751F
    MSI (s) (B8:9C) [00:06:59:035]: Using cached product context: machine assigned for product: 45BC40E1E4FA3CA44B7B0C1A06EB751F
    MSI (s) (B8:9C) [00:06:59:035]: Setting cached product context: machine assigned for product: 463E95087B2AE1B49BF5D2D23DC726AF
    MSI (s) (B8:9C) [00:06:59:035]: Using cached product context: machine assigned for product: 463E95087B2AE1B49BF5D2D23DC726AF
    MSI (s) (B8:9C) [00:06:59:036]: Setting cached product context: machine assigned for product: 472D7398182C4E24C8BD0A2BFD791998
    MSI (s) (B8:9C) [00:06:59:036]: Using cached product context: machine assigned for product: 472D7398182C4E24C8BD0A2BFD791998
    MSI (s) (B8:9C) [00:06:59:036]: Setting cached product context: machine assigned for product: 4920FD12D9B61474BAF62BBABF2D83E7
    MSI (s) (B8:9C) [00:06:59:037]: Using cached product context: machine assigned for product: 4920FD12D9B61474BAF62BBABF2D83E7
    MSI (s) (B8:9C) [00:06:59:037]: Setting cached product context: machine assigned for product: 4985BD061A5B26B40B3F66A9220CEED5
    MSI (s) (B8:9C) [00:06:59:037]: Using cached product context: machine assigned for product: 4985BD061A5B26B40B3F66A9220CEED5
    MSI (s) (B8:9C) [00:06:59:038]: Setting cached product context: machine assigned for product: 4A0B590B5A057D6499880D83EF0B040C
    MSI (s) (B8:9C) [00:06:59:038]: Using cached product context: machine assigned for product: 4A0B590B5A057D6499880D83EF0B040C
    MSI (s) (B8:9C) [00:06:59:038]: Setting cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (B8:9C) [00:06:59:038]: Using cached product context: machine assigned for product: 4A9D4F432C248434EB4F5E358C54947E
    MSI (s) (B8:9C) [00:06:59:039]: Setting cached product context: machine assigned for product: 4DE4057180BD8A04182C728D0C5118AD
    MSI (s) (B8:9C) [00:06:59:039]: Using cached product context: machine assigned for product: 4DE4057180BD8A04182C728D0C5118AD
    MSI (s) (B8:9C) [00:06:59:039]: Setting cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (B8:9C) [00:06:59:040]: Using cached product context: machine assigned for product: 4E42866C3BBC1584BBF38EFC6D539032
    MSI (s) (B8:9C) [00:06:59:040]: Setting cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120641FF
    MSI (s) (B8:9C) [00:06:59:040]: Using cached product context: machine assigned for product: 4EA42A62D9304AC4784BF238120641FF
    MSI (s) (B8:9C) [00:06:59:040]: Setting cached product context: machine assigned for product: 4F4A3A23297B6D117AA8000B0D611004
    MSI (s) (B8:9C) [00:06:59:041]: Using cached product context: machine assigned for product: 4F4A3A23297B6D117AA8000B0D611004
    MSI (s) (B8:9C) [00:06:59:041]: Setting cached product context: machine assigned for product: 4FC165B0D7C05474FA3561E1424EF478
    MSI (s) (B8:9C) [00:06:59:041]: Using cached product context: machine assigned for product: 4FC165B0D7C05474FA3561E1424EF478
    MSI (s) (B8:9C) [00:06:59:042]: Setting cached product context: machine assigned for product: 4FE2322521CC12C4BAFCDA7B698103D2
    MSI (s) (B8:9C) [00:06:59:042]: Using cached product context: machine assigned for product: 4FE2322521CC12C4BAFCDA7B698103D2
    MSI (s) (B8:9C) [00:06:59:042]: Setting cached product context: machine assigned for product: 50207F4104910004887CEB97A9B6C2DA
    MSI (s) (B8:9C) [00:06:59:042]: Using cached product context: machine assigned for product: 50207F4104910004887CEB97A9B6C2DA
    MSI (s) (B8:9C) [00:06:59:043]: Setting cached product context: machine assigned for product: 517AAD0323059F040AEA599CEABBE3F3
    MSI (s) (B8:9C) [00:06:59:043]: Using cached product context: machine assigned for product: 517AAD0323059F040AEA599CEABBE3F3
    MSI (s) (B8:9C) [00:06:59:043]: Setting cached product context: machine assigned for product: 5374D1C84E482E141ABD07AEED7236C3
    MSI (s) (B8:9C) [00:06:59:044]: Using cached product context: machine assigned for product: 5374D1C84E482E141ABD07AEED7236C3
    MSI (s) (B8:9C) [00:06:59:044]: Setting cached product context: machine assigned for product: 53A4D966B6414134981FA13C7D8B3876
    MSI (s) (B8:9C) [00:06:59:044]: Using cached product context: machine assigned for product: 53A4D966B6414134981FA13C7D8B3876
    MSI (s) (B8:9C) [00:06:59:045]: Setting cached product context: machine assigned for product: 53F069A9AD1C0CF48B20AEFF1497DF0B
    MSI (s) (B8:9C) [00:06:59:045]: Using cached product context: machine assigned for product: 53F069A9AD1C0CF48B20AEFF1497DF0B
    MSI (s) (B8:9C) [00:06:59:045]: Setting cached product context: machine assigned for product: 54F3D028EE6FFAA418FEEC12FF122D03
    MSI (s) (B8:9C) [00:06:59:045]: Using cached product context: machine assigned for product: 54F3D028EE6FFAA418FEEC12FF122D03
    MSI (s) (B8:9C) [00:06:59:046]: Setting cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (B8:9C) [00:06:59:046]: Using cached product context: machine assigned for product: 55565908215A0914C9DA0B003CD6B6B6
    MSI (s) (B8:9C) [00:06:59:046]: Setting cached product context: machine assigned for product: 56A9756CEAC913B4B8B633600E36A066
    MSI (s) (B8:9C) [00:06:59:046]: Using cached product context: machine assigned for product: 56A9756CEAC913B4B8B633600E36A066
    MSI (s) (B8:9C) [00:06:59:047]: Setting cached product context: machine assigned for product: 5717EC5AD080CA945B3A7E3E0542825F
    MSI (s) (B8:9C) [00:06:59:047]: Using cached product context: machine assigned for product: 5717EC5AD080CA945B3A7E3E0542825F
    MSI (s) (B8:9C) [00:06:59:047]: Setting cached product context: machine assigned for product: 591761FF4EE90C64C87DBF3A54E788BA
    MSI (s) (B8:9C) [00:06:59:053]: Using cached product context: machine assigned for product: 591761FF4EE90C64C87DBF3A54E788BA
    MSI (s) (B8:9C) [00:06:59:053]: Setting cached product context: machine assigned for product: 5C1093C35543A0E32A41B090A305076A
    MSI (s) (B8:9C) [00:06:59:053]: Using cached product context: machine assigned for product: 5C1093C35543A0E32A41B090A305076A
    MSI (s) (B8:9C) [00:06:59:054]: Setting cached product context: machine assigned for product: 5DDB7CC701F64274691AAE7C9D2F38C1
    MSI (s) (B8:9C) [00:06:59:054]: Using cached product context: machine assigned for product: 5DDB7CC701F64274691AAE7C9D2F38C1
    MSI (s) (B8:9C) [00:06:59:054]: Setting cached product context: machine assigned for product: 5FDE3F74128C6E949B3B0DB00F9AAB8B
    MSI (s) (B8:9C) [00:06:59:054]: Using cached product context: machine assigned for product: 5FDE3F74128C6E949B3B0DB00F9AAB8B
    MSI (s) (B8:9C) [00:06:59:055]: Setting cached product context: machine assigned for product: 5FFE3494F922D534EB9AEBC3EA7A387A
    MSI (s) (B8:9C) [00:06:59:055]: Using cached product context: machine assigned for product: 5FFE3494F922D534EB9AEBC3EA7A387A
    MSI (s) (B8:9C) [00:06:59:055]: Setting cached product context: machine assigned for product: 6030E61781384634B8F8C04C9E73B6CA
    MSI (s) (B8:9C) [00:06:59:056]: Using cached product context: machine assigned for product: 6030E61781384634B8F8C04C9E73B6CA
    MSI (s) (B8:9C) [00:06:59:056]: Setting cached product context: machine assigned for product: 6043B4640D4A419419F0C74A83D0CC31
    MSI (s) (B8:9C) [00:06:59:056]: Using cached product context: machine assigned for product: 6043B4640D4A419419F0C74A83D0CC31
    MSI (s) (B8:9C) [00:06:59:057]: Setting cached product context: machine assigned for product: 60EA627A3AAA1D34783E075F011

  • Adobe Air SDK for IOS, i'm searching for a week  to get the certificate and provisioning files

    Adobe Air SDK for IOS, I'm searching for a week  to get the certificate and provisioning files!!
    Please help me to get the certificate and provisioning files and I should pay to have these files.
    Thanks

    Apple doesn't provide support for third-party development tools.
    You need to post in the Adobe forums.
    You need a paid developer account to install apps on an iOS device.

  • StageVideo Adobe Air 3.0 iOS Error 1069 |onUpstreamBase not found

    I am using a StageVideo object with Adobe Air 3.0 compiled down and running on an iOS device iPhone 3GS.  The StageVideo appears and attaches to the NetStream just fine.  But after I issue NetStream.play(), I get the following runtime error:
    ReferenceError: Error #1069: Property |onUpstreamBase not found on views.DisplayView and there is no default value.
    You'll notice that the "|onUpstreamBase" contains a "pipe"-character at the beginning.  I tried to add:
    public function onUpstreamBase (dataObject:Object):void {
                                            trace(dataObject.toString());
    to the view function, but that didn't work.  And I can't create a function handler for |onUpsteamBase because of the pipe character.
    I am attaching the Netstream and NetConnection to an recorded H.264 rtmp stream. The rest of my code works just fine, but is failing on this runtime error.
    Anyone else run into this? 
    Thanks in advance.

    I got this error too, but not trying to do anything fancy like Stage Video. The issue is w/the "client" property on the NetStream object. You're supposed to use this to add some event handlers/call back functions that the NetStream will invoke.
    I got this error when I set the client property to "this" and defined the callback functions in my class.  However, that generates this error. If you use a generic object to store the call back function, the error does not occur (b/c the generic object is dynamic)...
    private function onNetStatusConnect():void
    foo = { onMetaData: onMetaData };
    stream=new NetStream(connection);
    stream.client=foo;
    // don't do this
    stream.client=this;
    vid=new Video();
    addChild(vid);
    vid.attachNetStream(stream);
    stream.play(feedAddress);
    public function onMetaData(data:Object):void
    trace(data);

  • Unable to install Adobe Air on MacBook Pro running OSX 10.7.2

    I have been trying for a while today to install the adobe air product on my machine so I'm able to run the TweetDeck software.  Unfortunately no matter what I do, the installation seems to fail.  I've manually uninstalled old files.  I've run suggested apple scripts suggested in other threads.  I've repaired local disk permissions.  You name it, I think I've tried it.  Any assistance would be appreciated.  I've included the console activity log for the last hour or so of trying to get it working. Thanks, Stephen
    10/13/11 1:33:27.067 PM ReportCrash: Saved crash report for Adobe AIR Application Installer[443] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Application Installer_2011-10-13-133327_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Commandline is: -psn_0_426088
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:37:59.938 PM com.apple.launchd.peruser.501: ([0x0-0x68068].com.adobe.air.Installer[452]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:38:00.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[452] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-133800_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Commandline is: -psn_0_491640
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:41:10.111 PM com.apple.launchd.peruser.501: ([0x0-0x78078].com.adobe.air.Installer[518]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:41:10.332 PM ReportCrash: Saved crash report for Adobe AIR Installer[518] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134110_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:42:21.142 PM automountd: parse_entry: bad key in map auto_home: Adobe AIR Installer.app
    10/13/11 1:42:34.771 PM Finder: Terminate AirDrop P2P link
    10/13/11 1:45:07.006 PM sudo:    Steve : TTY=ttys000 ; PWD=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS ; USER=root ; COMMAND=./Adobe AIR Installer
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Commandline is:
    10/13/11 1:45:10.494 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:12.183 PM ReportCrash: Saved crash report for Adobe AIR Installer[578] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134512_localhost.crash
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Commandline is: -psn_0_557192
    10/13/11 1:45:40.900 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:42.164 PM com.apple.launchd.peruser.501: ([0x0-0x88088].com.adobe.air.Installer[584]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:45:42.330 PM ReportCrash: Saved crash report for Adobe AIR Installer[584] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134542_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:56:17.999 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 1:56:20.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 1:56:32.049 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 1:56:35.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 1:56:39.000 PM kernel: AirPort: Link Up on en1
    10/13/11 1:56:40.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 1:56:40.963 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:41.233 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:45.862 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Commandline is: -psn_0_98328
    10/13/11 1:57:48.677 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:57:55.626 PM com.apple.launchd.peruser.501: ([0x0-0x18018].com.adobe.air.Installer[200]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:57:56.255 PM ReportCrash: Saved crash report for Adobe AIR Installer[200] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-135756_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:58:14.775 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.ApplicationInstaller[209]) Exited with code: 4
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Commandline is: -uninstall
    10/13/11 2:01:00.067 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:01:01.520 PM ReportCrash: Saved crash report for Adobe AIR Installer[549] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140101_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:04:15.960 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:04:17.375 PM ReportCrash: Saved crash report for Adobe AIR Installer[604] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140417_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:17.378 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160551_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:05:19.270 PM com.apple.launchd.peruser.501: ([0x0-0x38038].com.adobe.air.ApplicationInstaller[875]) Exited with code: 4
    10/13/11 2:09:36.467 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:09:36.468 PM Adobe AIR Installer: Commandline is: -psn_0_266305
    10/13/11 2:09:36.468 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:09:37.801 PM com.apple.launchd.peruser.501: ([0x0-0x41041].com.adobe.air.Installer[909]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:09:38.016 PM ReportCrash: Saved crash report for Adobe AIR Installer[909] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140938_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:09:38.019 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:10:04.777 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:10:06.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[916] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141006_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:06.148 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160631_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Commandline is: -psn_0_319566
    10/13/11 2:15:05.254 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:15:05.936 PM Adobe AIR Installer: -[__NSCFType backingScaleFactor]: unrecognized selector sent to instance 0x14f160
    10/13/11 2:15:33.948 PM com.apple.launchd.peruser.501: ([0x0-0x4e04e].com.adobe.air.Installer[942]) Job appears to have crashed: Bus error: 10
    10/13/11 2:15:34.108 PM ReportCrash: Saved crash report for Adobe AIR Installer[942] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141534_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:34.111 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124814_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:16:58.472 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:17:01.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:17:11.933 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:17:15.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:17:18.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:17:18.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:17:22.468 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:18:55.979 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:18:55.980 PM Adobe AIR Installer: Commandline is: -psn_0_114716
    10/13/11 2:18:55.980 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:19:03.180 PM com.apple.launchd.peruser.501: ([0x0-0x1c01c].com.adobe.air.Installer[213]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:19:03.740 PM ReportCrash: Saved crash report for Adobe AIR Installer[213] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141903_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:19:03.869 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124844_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Commandline is: -psn_0_143395
    10/13/11 2:22:07.124 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:22:08.402 PM com.apple.launchd.peruser.501: ([0x0-0x23023].com.adobe.air.Installer[265]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:22:08.577 PM ReportCrash: Saved crash report for Adobe AIR Installer[265] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142208_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:08.580 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-125045_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Commandline is: -psn_0_167977
    10/13/11 2:23:51.786 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:23:53.029 PM com.apple.launchd.peruser.501: ([0x0-0x29029].com.adobe.air.Installer[301]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:23:53.194 PM ReportCrash: Saved crash report for Adobe AIR Installer[301] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142353_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:53.197 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-131826_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:25:38.323 PM sudo:    Steve : TTY=ttys000 ; PWD=/Users/Steve ; USER=root ; COMMAND=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Commandline is: -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:25:40.304 PM ReportCrash: Saved crash report for Adobe AIR Installer[315] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142540_localhost.crash
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Commandline is: -psn_0_184365
    10/13/11 2:26:06.354 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:07.682 PM com.apple.launchd.peruser.501: ([0x0-0x2d02d].com.adobe.air.Installer[322]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:07.841 PM ReportCrash: Saved crash report for Adobe AIR Installer[322] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:07.845 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132020_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Commandline is: -psn_0_225335
    10/13/11 2:26:56.590 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:57.864 PM com.apple.launchd.peruser.501: ([0x0-0x37037].com.adobe.air.Installer[349]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:57.989 PM ReportCrash: Saved crash report for Adobe AIR Installer[349] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142657_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:57.993 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:29:01.315 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:29:44.576 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:29:48.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:30:01.170 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:30:01.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:30:05.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:30:05.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:30:07.196 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:30:09.005 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Commandline is: -psn_0_110619
    10/13/11 2:33:54.896 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:34:03.677 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.Installer[216]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:34:04.337 PM ReportCrash: Saved crash report for Adobe AIR Installer[216] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-143404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:34:04.480 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132448_Stephen-Wrights-MacBook-Pro.crash

    Robert.Delfs wrote:
    1.  Brand new MacBook Pro 2.5 GHz Intel Core i7 machine with two graphics chips (Intel HD Graphics 3000+ AMD Radeon HD 6770M), with   OS X 10.7.2 Lion (Build 11C74)  pre-installed. 
    2.  Attempting to download latest version of Photoshop CS5 fails.
         a.  Downloading CS5 from Adobe.com requires pre-installing Adobe Download Assistant. 
         b.  Adobe Download Assistant can be downloaded but cannot be installed because it requires pre-installing Adobe AIR. 
         c.  Adobe AIR can be downloaded but won't install.  Sometimes it issues error msg saying it requires most recent version of Adobe AIR, other times there is no screen activity after attempting to install from <AdobeAir.dmg>.
    2.  There is no option to turn off automatic graphics switching in Energy Saver System Preferences on this computer, so that suggested solution does not work.
    3.   Turning off (unchecking) "Automatically reduce brightness before display goes to sleep" has no effect — still unable to install AIR.
    This is a nightmare.  The reason I bought this computer rather than a less expensive model was to run Lightroom (which did install OK) and Photoshop CS5.  HELP!
    Robert
    My suggestion would be to reinstall Lion from zero. No update.
    I did that, and now I can install / uninstall Air without problems.
    The installation takes about 20 minutes...

  • Adobe AIR 3.0 application loader error

    I am trying to submit an update to my app using the Apple Application Loader.  The prevous version of my app was made with an early version of Adobe AIR about a year ago.
    My problem is when I upload my app I get an error, "The key UIRequiredDeviceCapabilities in the info.plist may not contain values that would prevent this application from running on devices not supported by previous versions".
    I have edited the UIRequiredDeviceCapabilities key in the Infoadditions of the xml document.  I included the camera and microphone capabilities so the app would only run on the iPod Touch 4th gen but this would still allow it to run on older iPhone models.
    Are there any additional changes I need to make to be able to submit this app update?

    Your earlier version may have been done with Flash CS5, which means it would run on armv6 devices, now it only runs on armv7 devices. You only have the choice of publishing it in CS5, or make it be a new app.

  • Adobe air exe to ios app - the process?

    Hi,
    I am new to app development. I am wanting to know what is possible and my cheapest option in creating an app for IOS from windows.
    The app I am creating is a technical publication wanting to be displayed on anipad.
    I have an adobe Air version exe published from robohelp/ framemaker. Is there a way to turn my adobe air application into a IOS App?
    If not, what are my other options to get a tech pubs document as a IOS App? I would like to use ideally windows adobe products for the creation of it.
    Thanks

    Ye that Merapi definitely seems interesting but it's the Java chops part that I think I'll fall down lol
    I've also asked on a java forum if anyone with experience of using Flex in Conjunction with Java can create the function that I'm after but my topic has been ignored like the ugly girl at the prom.
    I've never heard of a socket server. Would they be required to be installed on each machine that the interface is installed on?
    I'll definitely look into it. Thanks a lot mate.

  • Adobe Air 3.2 (ios ipad first gen) performance issues

    Hi guys, I've been working for a while with Starling framework on mobile, it works really good in all platforms except ipad1, I am afraid I won't be able to carry on working with it if I can't manage to make it run properly on ipad1, unfortunatelly ipad1 is still so important, there are still lots of users using ipad1. I might have to go back to cpu mode on ipad1.
    it is really sad, i am soooooo happy with air 3.2 (Starling framework) running on different androids, iphone 4s and ipad2, it runs at solid 60 fps, no delays, so smooth.. problem is when I try exactly the same .IPA on ipad1, god! it is really bad, about 5 times slower, it runs even worse than Amazon Kindle Fire how come!?
    any ideas? has anyone dealt with similar problems on ipad1?
    thanks.

    Starling is a great framework. It has fallbacks. Chances are you're either trying to do too much at once with too high of an expectation of ipad1, or you're falling back to CPU blitting.
    I struggle greatly with ipad1 with CPU blitting myself. But lets not compare in an unfair way. iPad1 comes with a single A4 processor. iPad2 comes with more memory and dual core A5 processors. Wednesday they may be debuting iPad3 with who knows what, dual/quad a5x? Dual/quad A6? They're going to need a good performance bump (CPU, GPU (mostly)) if they plan on rolling out retina.
    The performance of CPU blitting between ipad1 and 2 is night and day. It's almost silky smooth on ipad2 but it's border line acceptible on ipad1.
    The GPU is a PowerVR SGX 543MP2 on the ipad2 which Apple claimed was 9x faster. Is it any shock it's doing better with Starling or Stage3D?
    I'm in your boat in desiring to put ipad1 to bed. I hope ipad3 will open the door for that pretty soon. But bottom line, if you really want ipad1, you're going to need a fallback. Starling has that, but if you do 'too much at once', ipad1 will surely die. Perhaps how much you do at once needs a code branch specifically for ipad1 to assule you don't do too much.

  • Receiving "Adobe Application Manager is currently running" error

    Mac OSX 10.9.3
    Have uninstalled CC and restarted and still getting message.

    JUST FOR MAC USERS
    -Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    -more Mac 10.9.3 https://forums.adobe.com/thread/1491469
    -Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0
    or
    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Help - I am trying to dowload adobe air, but I keep getting error message #0

    Hi,
    I am the administrator, I am the only account on the computer. What is happening?

    For an issue like that you should either call the Apple help line or (and this is the option I use most often, and with good success) go to apples support page. There you can search for answered questions and if you dont find an answer then you can write a question and hope it gets answered. There are many people on that page that are quite good at trouble shooting and suggesting fixes. To find the support page go to apple.com and in the upper right side of the tool bar of Apples page theres the word support, the rest is easy. Good luck.

  • Adobe Air for iOS - SQLError: 'Error #3115' no such table

    I am developing Adobe Air application for iOS with sqlite on it. When running on my local machine, it worked like charm (add, edit & delete). Unfortunately, when tried running on iPAD, it gives me the following error:
    SQLError: 'Error #3115', details:'no such table: 'tblEmploye'', operation:'execute', detailID:'2013'
    Here's my code when opening the sqlite database: ** data file is saved on the current application directory where all the files are stored:
            exampleDBFile = File.documentsDirectory.resolvePath("mydb.db");
            if (exampleDBFile==null || !exampleDBFile.exists) {
                MovieClip(root).mcSong.visible = false;
                MovieClip(root).mcAlert.visible = true;
                MovieClip(root).mcAlert.enabled = true;
                MovieClip(root).mcAlert.txtErrorMessage.text = "Database not found";
            exampleDB = new SQLConnection();
            exampleDB.addEventListener(SQLEvent.OPEN, onExampleDBOpened);
            exampleDB.addEventListener(SQLErrorEvent.ERROR, onExampleDBError);
            //exampleDB.openAsync(exampleDBFile);
            exampleDB.open(exampleDBFile);
    I also tried using the following but still no luck
    exampleDBFile = File.applicationDirectory.resolvePath("mydb.db");           
    when using this, i receive a different error : Error:Error #3104
    And heres the code for adding new entries
            sqlInsert = "insert into tblLyrics (empName, empDesc) values
                        ('"+ strReplace(txtSearchMe.text, "'", "") + "','"+ strReplace(txtContent.text,"'","") +"')";
            dbStatement.text = sqlInsert;       
            dbStatement.addEventListener(SQLEvent.RESULT, onDBStatementInsertResult);       
            dbStatement.execute();
    Hoping for your advice....

    Hi,
    I am sorry you are facing this issue. Is the code that you posted all that you are doing? It is missing a few things:
    1) You are not creating the dbFile and the table tblEmployee. Do they already exist on your desktop? On device, you would need to create them.
    2) dbStatement.SQLConnection property is not set anywhere.
    The following sample code is from http://help.adobe.com/en_US/air/reference/html/flash/data/SQLConnection.html. Could you try and see if it works for you?
    package
         import flash.data.SQLConnection;
         import flash.data.SQLResult;
         import flash.data.SQLStatement;
         import flash.display.Sprite;
         import flash.events.SQLErrorEvent;
         import flash.events.SQLEvent;
         import flash.filesystem.File;
         public class MultipleInsertTransactionExample extends Sprite
              private var conn:SQLConnection;
              private var insertEmployee:SQLStatement;
              private var insertPhoneNumber:SQLStatement;
              private var dbFile:File
              public function MultipleInsertTransactionExample():void
                   // define where to find the database file
                   //var appStorage:File = File.applicationDirectory;
              dbFile = new File(File.documentsDirectory.nativePath + File.separator + "ExampleDatabase.db");
                   // open the database connection
                   conn = new SQLConnection();
                   conn.addEventListener(SQLErrorEvent.ERROR, errorHandler);
                   conn.addEventListener(SQLEvent.OPEN, openHandler);
                   conn.openAsync(dbFile);
              // Called when the database is connected
              private function openHandler(event:SQLEvent):void
                   conn.removeEventListener(SQLEvent.OPEN, openHandler);
                   // start a transaction
                   conn.addEventListener(SQLEvent.BEGIN, beginHandler);
                   conn.begin();
              // Called when the transaction begins
              private function beginHandler(event:SQLEvent):void
                   conn.removeEventListener(SQLEvent.BEGIN, beginHandler);
                   // create and execute the first SQL statement:
                   // insert an employee record
                   var createEmployees:SQLStatement = new SQLStatement();
                   createEmployees.sqlConnection = conn;
                   createEmployees.text =
                        "CREATE TABLE IF NOT EXISTS employees(lastName, firstName, email, birthday) ";
                   createEmployees.execute();
                   insertEmployee = new SQLStatement();
                   insertEmployee.sqlConnection = conn;
                   insertEmployee.text =
                        "INSERT INTO employees (lastName, firstName, email, birthday) " +
                        "VALUES (:lastName, :firstName, :email, :birthday)";
                   insertEmployee.parameters[":lastName"] = "Smith";
                   insertEmployee.parameters[":firstName"] = "Bob";
                   insertEmployee.parameters[":email"] = "[email protected]";
                   insertEmployee.parameters[":birthday"] = new Date(1971, 8, 12);
                   insertEmployee.addEventListener(SQLEvent.RESULT, insertEmployeeHandler);
                   insertEmployee.addEventListener(SQLErrorEvent.ERROR, errorHandler);
                   insertEmployee.execute();
              // Called after the employee record is inserted
              private function insertEmployeeHandler(event:SQLEvent):void
                   insertEmployee.removeEventListener(SQLEvent.RESULT, insertEmployeeHandler);
                   insertEmployee.removeEventListener(SQLErrorEvent.ERROR, errorHandler);
                   // Get the employee id of the newly created employee row
                   var result:SQLResult = insertEmployee.getResult();
                   var employeeId:Number = result.lastInsertRowID;
                   // Add a phone number to the related phoneNumbers table
                   var createTab:SQLStatement = new SQLStatement();
                   createTab.sqlConnection = conn;
                   createTab.text =
                        "CREATE TABLE IF NOT EXISTS phoneNumbers(employeeId, type, number)";
                   createTab.execute();
                   insertPhoneNumber = new SQLStatement();
                   insertPhoneNumber.sqlConnection = conn;
                   insertPhoneNumber.text =
                        "INSERT INTO phoneNumbers (employeeId, type, number) " +
                        "VALUES (:employeeId, :type, :number)";
                   insertPhoneNumber.parameters[":employeeId"] = employeeId;
                   insertPhoneNumber.parameters[":type"] = "Home";
                   insertPhoneNumber.parameters[":number"] = "(555) 555-1234";
                   insertPhoneNumber.addEventListener(SQLEvent.RESULT, insertPhoneNumberHandler);
                   insertPhoneNumber.addEventListener(SQLErrorEvent.ERROR, errorHandler);
                   insertPhoneNumber.execute();
              // Called after the phone number record is inserted
              private function insertPhoneNumberHandler(event:SQLEvent):void
                   insertPhoneNumber.removeEventListener(SQLEvent.RESULT, insertPhoneNumberHandler);
                   insertPhoneNumber.removeEventListener(SQLErrorEvent.ERROR, errorHandler);
                   // No errors so far, so commit the transaction
                   conn.addEventListener(SQLEvent.COMMIT, commitHandler);
                   conn.commit();
              // Called after the transaction is committed
              private function commitHandler(event:SQLEvent):void
                   conn.removeEventListener(SQLEvent.COMMIT, commitHandler);
                   trace("Transaction complete");
              // Called whenever an error occurs
              private function errorHandler(event:SQLErrorEvent):void
                   // If a transaction is happening, roll it back
                   if (conn.inTransaction)
                        conn.addEventListener(SQLEvent.ROLLBACK, rollbackHandler);
                        conn.rollback();
                   trace(event.error.message);
                   trace(event.error.details);
              // Called when the transaction is rolled back
              private function rollbackHandler(event:SQLEvent):void
                   conn.removeEventListener(SQLEvent.ROLLBACK, rollbackHandler);
                   // add additional error handling, close the database, etc.
    Thanks,
    Sanika

  • I cannot get adobe air to run keep getting error message 'damaged or broken'

    Adobe air problems will not run despite several attempts to install and reinstall. Keep getting error messages - file damaged or broken - reinstall or contact Adobe Help

    Follow the steps mentioned in the Knowlegdebase article:-
    http://helpx.adobe.com/creative-suite/kb/help-application-doesnt-update.html

  • Error trying to Install Adobe Air on Windows 7

    Trying to install Adobe Air on Windows 7.  Error:  Application descriptor could not be found for this application (301).

    AIR isn't an application, but a runtime that other applications use.  It's similar to Java.  You don't run it directly, it's just something other applications need to have present so they can run.  You won't see any reference to it in your Start menu, though it will appear in your Uninstall control panel.  The applications that use AIR (like Tweetdeck, BBC iPlayer, etc) will have links in your program list.
    Chris

Maybe you are looking for