Air.swf GetApplicationVersion callback not called

I am trying to use air.swf from
http://airdownload.adobe.com/air/browserapi
per the Adobe documentation to detect if an air application is
already installed. I'm using getApplicationVersion but the callback
function is never called. launchApplication() and
installApplication() work fine.
The code looks like this:
_air.getApplicationVersion(appID, pubID,
versionDetectCallback);
VersionDetectCallback() is never called. I de-compiled the
air.swf and ran the code directly to try and figure out what's
failing. But I get the same result. I can see the timer on the
LocalConnection endpoint timing out after 5 seconds. I just can't
figure out why the appinstaller is not calling back. The actual
call (taken from the decompiled swf) looks like this:
airappinstaller = new ProductManager("airappinstaller");
var launchArgs:Array;
launchArgs = ["-isinstalled", appID, pubID, "adobe.com" + ":"
+ lcName, "onApplicationVersion"];
airappinstaller.launch(launchArgs.join(" "));
where onApplicationVersion is the endpoint callback function
and lcName is the LocalConnection name.
Anyone know why GetApplicationVersion() doesn't work?

I am trying to use air.swf from
http://airdownload.adobe.com/air/browserapi
per the Adobe documentation to detect if an air application is
already installed. I'm using getApplicationVersion but the callback
function is never called. launchApplication() and
installApplication() work fine.
The code looks like this:
_air.getApplicationVersion(appID, pubID,
versionDetectCallback);
VersionDetectCallback() is never called. I de-compiled the
air.swf and ran the code directly to try and figure out what's
failing. But I get the same result. I can see the timer on the
LocalConnection endpoint timing out after 5 seconds. I just can't
figure out why the appinstaller is not calling back. The actual
call (taken from the decompiled swf) looks like this:
airappinstaller = new ProductManager("airappinstaller");
var launchArgs:Array;
launchArgs = ["-isinstalled", appID, pubID, "adobe.com" + ":"
+ lcName, "onApplicationVersion"];
airappinstaller.launch(launchArgs.join(" "));
where onApplicationVersion is the endpoint callback function
and lcName is the LocalConnection name.
Anyone know why GetApplicationVersion() doesn't work?

Similar Messages

  • OCCI AQ Subscription: callback not called

    When data changed in table, I want my application to know immediately. So I use the Subsription class. The implements as follows. When I insert row to table set_tab_info, the triggers acts, but the callback not called. What's wrong?
    --create multi consumer queue table
    BEGIN
    dbms_aqadm.create_queue_table (
                                       queue_table => 'hr.table06',
                                       queue_payload_type => 'RAW',
                                       comment => 'multi-consumer',
                                       multiple_consumers => TRUE,
                                       compatible => '8.1.0'
    END;
    --create multi consumer queue
    BEGIN
    dbms_aqadm.create_queue (
                                  queue_name => 'queue06',
                                  queue_table=> 'hr.table06'
    END;
    BEGIN
    dbms_aqadm.start_queue(queue_name => 'queue06');
    END;
    --create table
    CREATE TABLE set_tab_info(
         flag NUMBER
    --create trigger, as a test, the payload is a byte
    CREATE OR REPLACE TRIGGER tablechangeNew
         AFTER UPDATE OR INSERT OR DELETE
         ON set_tab_info
         FOR EACH ROW
    DECLARE
         enqopt dbms_aq.enqueue_options_t;
         mprop dbms_aq.message_properties_t;
         enq_msgid RAW(16);
         rcpt_list dbms_aq.aq$_recipient_list_t;
    BEGIN
         rcpt_list(0) := sys.aq$_agent('RECEIVER06', null, null);
         mprop.recipient_list := rcpt_list;
         dbms_aq.enqueue(
                        queue_name => 'hr.queue06',
                        enqueue_options => enqopt,
                        message_properties => mprop,
                        payload => HEXTORAW('61'),
                        msgid => enq_msgid);
    END;
    #include <iostream>
    #include <iomanip>
    #include <string>
    #include <cstdlib>
    #include <vector>
    using namespace std;
    #include "occi.h"
    using namespace oracle::occi;
    #include "occiAQ.h"
    using namespace oracle::occi::aq;
    string username("HR");
    string password("HR");
    string connstr("192.168.8.22:1521/study");
    Environment* p_env = NULL;
    Subscription* p_sub = NULL;
    Connection* p_conn = NULL;
    vector<Subscription> sub_vec;
    class NotifyRegister
    public:
         static unsigned int callback(Subscription& sub, NotifyResult* nr)
              //nr->getPayload();
              //Message msg = nr->getMessage();
              //Bytes bt =nr->getMessageId();
              cout << "callback was called!" << endl;
              return 0;
         void notifyTest()
              p_env = Environment::createEnvironment(Environment::EVENTS);
              p_sub = new Subscription(p_env);
              p_sub->setSubscriptionNamespace(Subscription::NS_AQ);
              //SCHEMA.QUEUE:CONSUMER_NAME
              p_sub->setSubscriptionName("HR.QUEUE06:RECEIVER06");
              p_sub->setPresentation(Subscription::PRES_DEFAULT);
              p_sub->setProtocol(Subscription::PROTO_CBK);
              p_sub->setNotifyCallback(&NotifyRegister::callback);
              //what's the context mean, how to set?
              p_sub->setCallbackContext((void*)this);
              p_env->enableSubscription(*p_sub);
              p_conn = p_env->createConnection(username, password, connstr);
              sub_vec.push_back(*p_sub);
              p_conn->registerSubscriptions(sub_vec);
    int main()
         NotifyRegister nr;
         nr.notifyTest();
         pause();
         return EXIT_SUCCESS;
    I don't know how to set the callback context. so just use this statement:
    p_sub->setCallbackContext((void*)this);

    Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
    After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
    Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
    my registering routine now looks like this:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //is this the correct way?
    Subscription sub(env);
    sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub.setPayload(*payload);
    sub.setCallbackContext((void *)this);
    sub.setSubscriptionName(quename + ":" + config->subscribername);
    sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub.setNotifyCallback(&aq_connection::event_message);
    subs.push_back(sub);
    conn->registerSubscriptions(subs);
    I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
    Thanks in advance,
    Sverre

  • Air.swf getApplicationVersion() not calling back

    I am trying to use air.swf from
    http://airdownload.adobe.com/air/browserapi
    per the Adobe documentation to detect if an air application is
    already installed. I'm using getApplicationVersion but the callback
    function is never called. launchApplication() and
    installApplication() work fine.
    The code looks like this:
    _air.getApplicationVersion(appID, pubID,
    versionDetectCallback);
    function versionDetectCallback(version:String):void { do
    stuff }
    VersionDetectCallback() is never called. I de-compiled the
    air.swf and ran the code directly to try and figure out what's
    failing. But I get the same result. I can see the timer on the
    LocalConnection endpoint timing out after 5 seconds. I just can't
    figure out why the appinstaller is not calling back. The actual
    call (taken from the decompiled swf) looks like this:
    airappinstaller = new ProductManager("airappinstaller");
    var launchArgs:Array;
    launchArgs = ["-isinstalled", appID, pubID, "adobe.com" + ":"
    + lcName, "onApplicationVersion"];
    airappinstaller.launch(launchArgs.join(" "));
    where onApplicationVersion is the endpoint callback function
    and lcName is the LocalConnection name.
    It doesn't matter if I make the call from the Loader Init
    event or in a button click the callback function is never called. I
    am using Flash CS3.

    Hi Lisa,
    I am on windows yes,  and I seem to have got it working.  I found this problem to be very perculiar as there were many things my badge didnt like - such as a case statement instead of a load if if's.   anyway my solution is below,  although I must say, that now nothing happens if the user doesnt have air installed!  If they have Air installed but not my application, it will install my app but the need air installed first and that is not ideal!
    Maybe implementing your timer solution may help this?  Thanks for taking an interest!
    private var _toDo:String;
    private function onInit(e:Event):void
                _air = e.target.content;
                try
                  _air.getApplicationVersion(_applicationID, _publisherID, versionDetectCallback);
                catch (e:Error)
                  trace('air not installed');
                   root.statusMessage.text = 'Adobe Air not installed'
                   _toDo = new String("installAir")
    private function versionDetectCallback(version:String):void
                if (version == null)
                   trace('app not installed');
                   root.statusMessage.text = 'Coach Player not installed'
                   _toDo = new String("installApp")
                else
                   trace('app version ' + version + ' installed');
                   root.statusMessage.text = 'Application version ' + version + ' installed'
                   _toDo = new String("launchApp")
    private function onButtonClicked(e:Event):void
       root.statusMessage.htmlText = "onButtonClicked"
       if(_toDo == "installAir"){installAir()}
       if(_toDo == "installApp"){installApp()}
       if(_toDo == "launchApp"){launchApp()}
      protected function installAir():void
       root.statusMessage.text = 'Installing Adobe Air';
       _air.installApplication( _appURL, _airVersion, _arguments );
       //root.statusMessage.text = _appURL+" | "+ _airVersion+" | "+ _arguments
      protected function installApp():void
       root.statusMessage.text = 'Installing Coach Player';
       _air.installApplication( _appURL, _airVersion, _arguments );
       //root.statusMessage.text = _appURL+" | "+ _airVersion+" | "+ _arguments
      protected function launchApp():void
       root.statusMessage.text = 'Launching Coach Player';
       _air.launchApplication(_applicationID, _publisherID, _arguments);
       //root.statusMessage.text =  _applicationID+" | "+ _publisherID+" | "+ _arguments;
       //root.statusMessage.text = _arguments;

  • Air.swf getApplicationVersion()  not returning

    Hi,
    I am using air.swf api to detect installed applications... but this doesn't written any call backs...
    any idea ?
    Regards,
    Brijesh

    Hi Chris,
    Thanks for the reply...
    I have 2 air applications... From one application, I need to detect if other air application is installed or not.. Fo this I am using the air.swf file..
    and air.getApplicationVersion() method of air.swf...
    But sometimes it doesn't invoke the callback method..
    Also, I was looking to if this feature can be used in offline mode.. As air.swf needs to be downloaded always.. can this be used for offline mode...
    Regards,
    Brijesh

  • Failover callback not called when listener dies

    I need to create a RAC-aware Pro*C application.
    I got the preconfigured VirtualBox images with OL 5 and RAC nodes.
    The listener is installed on both machines too. They share a single IP address for the listener, which I added to the hosts file:
    192.168.56.201   rac-scan.localdomain    rac-scanActually, the cluster decides to create a virtual network adapter on one of the nodes and this address is assigned to it and then the listener becomes awailable. When this node dies, the cluster starts the listener on another node.
    I don't know, whether it's a proper way. I heard that the listener should be on a separate machine.
    But the problem is: when I turn off the node my client program is connected to, the failover callback function is not called. The next oracle operation fails with "ORA-03114: not connected to ORACLE".
    I followed http://docs.oracle.com/cd/A91202_01/901_doc/appdev.901/a89857/oci09adv.htm#428924 and https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=415245.1 to create the sample program that registers the callback.
    Could it be that the failover only works when the DB service fails, but not the listener?

    The problem was bad connection string

  • Java script callback not called from plugin code

    Hi,
    I am having a plugin which works on FF 3.6. I am trying to make it work on FireFox 4/5. My java script callback for resize is getting called only for first time from plugin code and second time onwards its not getting called. We are using Gecko 2.0 plug-in library.
    I found two bugs in Firefox which may cause call to invalid callback.
    https://bugzilla.mozilla.org/show_bug.cgi?id=664682
    https://bugzilla.mozilla.org/show_bug.cgi?id=653083
    I think because of these two bugs my callback is not getting called. Is there any update for FireFox 4/Firefox5 with the fix for above two issues?
    Thanks,
    Rohit

    The first Bug is listed as a duplicate of the 2nd Bug you posted.
    I don't see any information in the Bug report about which version is going to specifically get the patch. Firefox 4 isn't supported any longer, and I can only assume that with an '''''Importance:''''' of '''normal''', that it won't be "pushed" to Firefox 5. AFAIK, with the new Fast Release schedule only security bugs are going create a situation where a '''''dot#''''' release is going to be made, and other Bugs that have been patched might then be included. With the current release schedule it's going to be 6 weeks between versions, vs the previous 12 to 14 months, or so.
    You may want to try a 6.0 beta to see if it is fixed there.

  • Occi AQ callback not called

    I have written code for dequeing messages with blocking calls (Consumer::recieve), which works fine. Now I try to register a callback function, which should be called when a message is in the queue.
    Some code:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //?
    Subscription newSubscription(env);
    newSubscription.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    newSubscription.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    newSubscription.setPayload(*payload);
    newSubscription.setCallbackContext((void *)this);
    newSubscription.setSubscriptionName(quename + ":" + config->subscribername);
    newSubscription.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    newSubscription.setNotifyCallback(&aq_connection::event_message);
    mye callback method is defined like this:
    static unsigned int event_message(oracle::occi::aq::Subscription &sub ,oracle::occi::aq::NotifyResult *not) {
    std::cout << "got message\n";
    return 0;
    The problem is, the event_message function is never called... I send in messages into the queue with this stored procedure:
    message := OURMSG_TYP(p_id, p_msg_type_id, p_msg, p_operation, p_data);
    enqueue_options.visibility := DBMS_AQ.ON_COMMIT;
         enqueue_options.relative_msgid := NULL;
         enqueue_options.sequence_deviation := NULL;
         enqueue_options.transformation := NULL;
         message_properties.priority := 1;
         message_properties.delay :=     DBMS_AQ.NO_DELAY;
         message_properties.expiration := p_expiration;
         message_properties.correlation := NULL;
         --message_properties.recipient_list :=
         message_properties.exception_queue := vcp_exception_queue_name;
         --message_properties.sender_id :=
         message_properties.original_msgid := NULL;
         message_properties.transaction_group := NULL;
         message_properties.user_property :=     NULL;
         DBMS_AQ.ENQUEUE(
         queue_name => our_queue_name,
    enqueue_options => enqueue_options,
    message_properties => message_properties,
    payload => message,
    msgid => message_handle
    Any obvious reason why my callback is never called?
    regards,
    Sverre

    Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
    After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
    Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
    my registering routine now looks like this:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //is this the correct way?
    Subscription sub(env);
    sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub.setPayload(*payload);
    sub.setCallbackContext((void *)this);
    sub.setSubscriptionName(quename + ":" + config->subscribername);
    sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub.setNotifyCallback(&aq_connection::event_message);
    subs.push_back(sub);
    conn->registerSubscriptions(subs);
    I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
    Thanks in advance,
    Sverre

  • AQ callback not called in some environments

    Hi,
    I've got a client program that subscribes to a queue, and registers a callback that is called whenever a message is enqueued. This works fine on most computers, but on some computers this callback is never called. I've run it both in debug and release, and the breakpoint in the callback is never hit. On most computer thought, this works all the time.
    This is how I register the callback:
    sub = new Subscription(env);
    sub->setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub->setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub->setCallbackContext((void *)this);
    sub->setSubscriptionName(queue_name + ":" + config["subscribername"]);
    sub->setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub->setNotifyCallback(&messagequeueclient_occi::event_message);
    subs.push_back(*sub);
    conn->registerSubscriptions(subs);
    both subs and sub are class variables, and the callback look like this:
    static unsigned int event_message(
    oracle::occi::aq::Subscription &sub,
    oracle::occi::aq::NotifyResult *nr
    I've tried to examine the difference between the machines, but they all sem to have the same oracle client version etc...
    Any tip would be greatly appreciated.
    Regards,
    Sverre

    Thanks, once again. Sorry for my naive questions, but I'm unable to find a good example for this...
    After registering the Subscriber, and creating the environment in EVENT mode, it seems like it is picking up the message. Once I send a AQ message, I get an error from visual studio, telling me the variable ESP was not properly saved across a function call. At least it reacts now :)
    Could it be that I'm doing something wrong when defining or hooking my callback function? The breakpoint in the callback function is never called....
    my registering routine now looks like this:
    void aq_connection::create_callback() {
    payload = new Bytes(env); //is this the correct way?
    Subscription sub(env);
    sub.setSubscriptionNamespace(oracle::occi::aq::Subscription::NS_AQ);
    sub.setProtocol(oracle::occi::aq::Subscription::PROTO_CBK);
    sub.setPayload(*payload);
    sub.setCallbackContext((void *)this);
    sub.setSubscriptionName(quename + ":" + config->subscribername);
    sub.setPresentation(oracle::occi::aq::Subscription::PRES_DEFAULT);
    sub.setNotifyCallback(&aq_connection::event_message);
    subs.push_back(sub);
    conn->registerSubscriptions(subs);
    I thought it was ok to create a local Subscription instance, as I put it into the global subs-vector.
    Thanks in advance,
    Sverre

  • 10g registered callback not called

    I have the following method on the superclass of all the classes I've mapped in TopLink. I want the classes to know what session they come from, so that if they need to do any further queries, they can use the same one. I've selected this method for the Build event on the Post-X choice on the Events tab of each of my descriptors. The 'Informant' call would print to the log if the method were ever called, but it's not. Is there something else I need to do, or is this broken in 10g?
         public void postBuildEventCallback( DescriptorEvent aDescriptorEvent ) {
              Informant.debug( "postBuildEventCallback on "+this+" with "+aDescriptorEvent );
              setTopLinkSession( aDescriptorEvent.getSession() );
         }

    The mapping still appears in the MW when I shut down and re-open JDeveloper, so I wasn't worried that it hadn't been saved. However, it turns out I hand't rebuilt the toplink-deployment-descriptor.xml, so it wasn't making it to the runtime.
    Everything seems to be working fine now. Thanks!

  • Why air.swf not work ,these days!!!

    why the Air.swf did not work correctly for 5 days.
    but , it worked terrificly ok days before.
    has adobe changed something which making Air.swf cannot do "airSWF.getStatus()" ?
    P.S :  the Air.swf  url is http://airdownload.adobe.com/air/browserapi/air.swf

    Open System Preferences > Sound > Output
    Make sure the coorect output devices is selected and the Mute button is not checked.

  • Working with badge.swf and air.swf (browser api)

    I basically want to install and run my app through the
    browser so ive been testing but can't manage to figure out how the
    air.swf api works. i am stuck at loading air.swf. the page below
    has a tutorial but a downloadable sample code would be perfect, not
    sure where the little snippets of code from the "Loading the
    air.swf file", "Checking from a web page if an AIR application is
    installed", "installing an AIR application from the browser", and
    "Launching an installed AIR application from the browser" go in my
    own codebase. Also im a bit unclear on where i get appid or
    developer id. if someone has an example app or more in-depth
    explantion of incorporating the given code , i would much
    appreciate it.
    http://livedocs.adobe.com/flex/3/html/help.html?content=distributing_apps_3.html

    quote:
    Originally posted by:
    cjm771
    can't manage to figure out how the air.swf api works
    The main thing you must understand about air.swf
    is that its most important functionality can only be called from
    within a UI event handler, such as for a button click. It's very
    picky about this. You can't, for example, use the button click
    event handler to begin the loading of air.swf, then in the "loaded"
    callback do the air.swf API call. air.swf has to be loaded and
    ready at the time the event handler is called. So, load it on app
    startup. I even go to the extent of disabling the buttons that call
    into air.swf until it's loaded.
    quote:
    im a bit unclear on where i get appid or developer id
    The appid is your application's unique ID, which
    you gave in setting up your project. Adobe recommends using
    something based on your web site's domain name, in reverse order as
    is done in Java and Objective C. If you're at foo.com, and call
    your program Qux, then com.foo.qux is a good appid. The use of
    domain-like names helps ensure that programs from different
    companies don't collide with each others' namespaces.
    By default, the pubid is a random number assigned by the IDE.
    I forgot how you find out what number it used, just that there's a
    way. Or, you can assign it yourself, in the project settings for
    the AIR app. Right-click the project, go to the Run/Debug Settings
    section, edit the launch configuration for your AIR app. You'll
    find a Publisher ID field there. The documentation for ADL may be
    helpful for picking your own pubid.
    quote:
    if someone has an example app or more in-depth explantion of
    incorporating the given code , i would much appreciate it.
    See my code in this thread:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=75&catid=697&threadid =1352505&highlight_key=y&keyword1=air%2Eswf

  • CANNOT install Adobe AIR, administrator error. could not update past .20 version

    consistently receive following message:
    an error occurred while installing Adobe AIR. Installation may not be allowed by your administrator. Please contact your administrator.
    I receive this message AS AN ADMINISTRATOR (only user on Netbook IS me, THE ADMIN). even in safe mode tried to update/install, same error. did NOT have this problem updating w/ previous versions (xxx.20 and earlier)
    I contacted myself, as instructed by the error message, and the response was Adobe failed to properly check administrator privileges for versions after .20
    the install log (which I guessing since this is being requested, this GLOBAL problem will have to be resolved 1 user at a time??):
    [2010-06-11:18:53:17] Performing runtime update
    [2010-06-11:18:53:18] UI SWF load is complete
    [2010-06-11:18:53:29] UI initialized
    [2010-06-11:18:53:29] starting user confirmation
    [2010-06-11:18:53:30] Version of this installer: 2.0.2.12610
    [2010-06-11:18:53:30] Installed version: 1.5.3.9130
    [2010-06-11:18:53:30] Installation type: patchNewer
    [2010-06-11:18:55:50] starting install
    [2010-06-11:18:55:50] Scheduling runtime installation operations
    [2010-06-11:18:55:50] Active AIR product GUID is {A2BCA9F1-566C-4805-97D1-7FDC93386723}
    [2010-06-11:18:55:50] Scheduling an MSI install operation
    [2010-06-11:18:55:50] Beginning runtime installation
    [2010-06-11:18:55:51] Beginning install
    [2010-06-11:18:55:51] Installing c:\docume~1\tamramb\locals~1\temp\air54.tmp\setup.msi
    [2010-06-11:18:56:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-06-11:18:56:41] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:44] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:44] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR54.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-06-11:18:56:46] Execution complete; beginning commit phase
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5A.tmp\temp
    [2010-06-11:18:56:47] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla5B.tmp\temp
    [2010-06-11:18:56:47] Commit complete
    [2010-06-11:18:56:47] install complete
    [2010-06-11:19:02:58] begin quitting
    [2010-06-11:21:38:05] UI SWF load is complete
    [2010-06-11:21:38:08] UI initialized
    [2010-06-11:21:38:11] Pingback request completed with HTTP status 200
    [2010-06-11:21:38:13] Begin background update check
    [2010-06-11:21:38:15] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-11:21:38:17] Background update not available
    [2010-06-11:21:38:21] begin quitting
    [2010-06-19:17:41:23] UI SWF load is complete
    [2010-06-19:17:41:25] UI initialized
    [2010-06-19:17:41:26] Begin background update check
    [2010-06-19:17:41:27] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-19:17:41:28] Background update not available
    [2010-06-19:17:41:29] begin quitting
    [2010-06-29:15:32:48] UI SWF load is complete
    [2010-06-29:15:32:51] UI initialized
    [2010-06-29:15:32:51] Begin background update check
    [2010-06-29:15:32:53] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-06-29:15:32:54] Background update not available
    [2010-06-29:15:32:55] begin quitting
    [2010-07-06:22:58:20] UI SWF load is complete
    [2010-07-06:22:58:25] UI initialized
    [2010-07-06:22:58:27] Begin background update check
    [2010-07-06:22:58:40] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-06:22:58:43] Background update not available
    [2010-07-06:22:58:44] begin quitting
    [2010-07-09:01:27:11] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:11] UI SWF load is complete
    [2010-07-09:01:27:13] UI initialized
    [2010-07-09:01:27:14] beginning UI styling
    [2010-07-09:01:27:14] UI styling complete
    [2010-07-09:01:27:14] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3A.tmp
    [2010-07-09:01:27:17] Received HTTP Response Status event
    [2010-07-09:01:27:17] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.air
    [2010-07-09:01:27:25] Waiting for user confirmation
    [2010-07-09:01:29:06] User confirmed action: save
    [2010-07-09:01:29:06] Saving file to C:\Documents and Settings\TamraMB\Desktop\TweetDeck_0_34.3.air
    [2010-07-09:01:29:07] starting cleanup of temporary files
    [2010-07-09:01:29:07] application installer exiting
    [2010-07-09:01:36:23] Starting app install of file:///C:/Documents%20and%20Settings/TamraMB/Desktop/TweetDeck_0_34.3.air
    [2010-07-09:01:36:24] UI SWF load is complete
    [2010-07-09:01:36:25] UI initialized
    [2010-07-09:01:36:25] beginning UI styling
    [2010-07-09:01:36:26] UI styling complete
    [2010-07-09:01:36:26] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-07-09:01:37:03] unpackaging/validation is complete
    [2010-07-09:01:37:03] application is bound to this version of the runtime
    [2010-07-09:01:37:03] app id TweetDeckFast
    [2010-07-09:01:37:03] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-07-09:01:37:03] Application located at C:\program files
    [2010-07-09:01:37:04] Waiting for user confirmation
    [2010-07-09:01:37:11] User confirmed action: install
    [2010-07-09:01:37:11] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:37] native installer creation complete
    [2010-07-09:01:37:38] Starting install
    [2010-07-09:01:37:38] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp
    [2010-07-09:01:37:38] Beginning install
    [2010-07-09:01:37:38] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla40.tmp\setup.msi
    [2010-07-09:01:38:22] Execution complete; beginning commit phase
    [2010-07-09:01:38:22] Commit complete
    [2010-07-09:01:38:26] Re-launching application from C:\program files\TweetDeck\TweetDeck.exe
    [2010-07-09:01:38:26] starting cleanup of temporary files
    [2010-07-09:01:38:56] application installer exiting
    [2010-07-15:09:42:29] UI SWF load is complete
    [2010-07-15:09:42:32] UI initialized
    [2010-07-15:09:42:32] Begin background update check
    [2010-07-15:09:42:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-15:09:42:41] Background update not available
    [2010-07-15:09:42:42] begin quitting
    [2010-07-22:14:42:33] UI SWF load is complete
    [2010-07-22:14:42:35] UI initialized
    [2010-07-22:14:42:35] Begin background update check
    [2010-07-22:14:42:42] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-22:14:42:58] Background update not available
    [2010-07-22:14:43:03] begin quitting
    [2010-07-30:08:51:07] UI SWF load is complete
    [2010-07-30:08:51:13] UI initialized
    [2010-07-30:08:51:13] Begin background update check
    [2010-07-30:08:51:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-07-30:08:51:29] Background update not available
    [2010-07-30:08:51:31] begin quitting
    [2010-08-09:18:23:21] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:21] UI SWF load is complete
    [2010-08-09:18:23:24] UI initialized
    [2010-08-09:18:23:24] beginning UI styling
    [2010-08-09:18:23:24] UI styling complete
    [2010-08-09:18:23:24] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla36.tmp
    [2010-08-09:18:23:27] Received HTTP Response Status event
    [2010-08-09:18:23:27] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_34.3.2.air
    [2010-08-09:18:23:35] Waiting for user confirmation
    [2010-08-09:18:23:39] User confirmed action: install
    [2010-08-09:18:23:39] beginning UI styling
    [2010-08-09:18:23:39] UI styling complete
    [2010-08-09:18:23:40] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2010-08-09:18:24:07] unpackaging/validation is complete
    [2010-08-09:18:24:07] application is bound to this version of the runtime
    [2010-08-09:18:24:07] app id TweetDeckFast
    [2010-08-09:18:24:07] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-08-09:18:24:07] Application not located
    [2010-08-09:18:24:07] Waiting for user confirmation
    [2010-08-09:18:24:28] User confirmed action: install
    [2010-08-09:18:24:28] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] native installer creation complete
    [2010-08-09:18:25:07] Starting install
    [2010-08-09:18:25:07] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp
    [2010-08-09:18:25:07] Destination for installed application is C:\Program Files
    [2010-08-09:18:25:08] Beginning install
    [2010-08-09:18:25:08] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla39.tmp\setup.msi
    [2010-08-09:18:26:05] Execution complete; beginning commit phase
    [2010-08-09:18:26:05] Commit complete
    [2010-08-09:18:26:17] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-08-09:18:26:18] starting cleanup of temporary files
    [2010-08-09:18:26:49] application installer exiting
    [2010-08-09:18:27:32] UI SWF load is complete
    [2010-08-09:18:27:35] UI initialized
    [2010-08-09:18:27:38] Begin background update check
    [2010-08-09:18:27:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-09:18:27:53] Background update not available
    [2010-08-09:18:27:54] begin quitting
    [2010-08-17:21:35:49] UI SWF load is complete
    [2010-08-17:21:35:59] UI initialized
    [2010-08-17:21:36:00] Begin background update check
    [2010-08-17:21:36:05] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:40:22] UI SWF load is complete
    [2010-08-27:17:40:25] UI initialized
    [2010-08-27:17:40:26] Begin background update check
    [2010-08-27:17:40:32] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.2.12610/update
    [2010-08-27:17:41:57] Background update successfully downloaded
    [2010-08-27:17:41:58] User notified of available background update
    [2010-08-27:17:43:24] User selected immediate install of background update
    [2010-08-27:17:43:24] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-08-27:17:43:29] begin quitting
    [2010-08-27:17:44:25] Performing runtime update
    [2010-08-27:17:44:26] UI SWF load is complete
    [2010-08-27:17:44:29] UI initialized
    [2010-08-27:17:44:29] starting user confirmation
    [2010-08-27:17:44:29] Version of this installer: 2.0.3.13070
    [2010-08-27:17:44:29] Installed version: 2.0.2.12610
    [2010-08-27:17:44:29] Installation type: patchNewer
    [2010-08-27:17:44:47] starting install
    [2010-08-27:17:44:49] Scheduling runtime installation operations
    [2010-08-27:17:44:50] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-08-27:17:44:51] Scheduling an MSI repair operation
    [2010-08-27:17:44:53] Beginning runtime installation
    [2010-08-27:17:44:54] Beginning install
    [2010-08-27:17:44:54] Reinstalling c:\docume~1\tamramb\locals~1\temp\air9.tmp\setup.msi
    [2010-08-27:17:45:26] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:30] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:31] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-08-27:17:45:33] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:36] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:36] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR9.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-08-27:17:45:38] Execution complete; beginning commit phase
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\flaF.tmp\temp
    [2010-08-27:17:45:38] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla10.tmp\temp
    [2010-08-27:17:45:38] Commit complete
    [2010-08-27:17:45:38] install complete
    [2010-08-27:17:48:35] begin quitting
    [2010-08-27:18:12:35] UI SWF load is complete
    [2010-08-27:18:12:37] UI initialized
    [2010-08-27:18:12:39] Pingback request completed with HTTP status 200
    [2010-08-27:18:12:39] Begin background update check
    [2010-08-27:18:12:41] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-08-27:18:12:41] Background update not available
    [2010-08-27:18:12:41] begin quitting
    [2010-10-20:17:24:08] Starting app install of http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:08] UI SWF load is complete
    [2010-10-20:17:24:09] UI initialized
    [2010-10-20:17:24:10] beginning UI styling
    [2010-10-20:17:24:10] UI styling complete
    [2010-10-20:17:24:10] Downloading file to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1E.tmp
    [2010-10-20:17:24:11] Received HTTP Response Status event
    [2010-10-20:17:24:11] Response URL is http://downloads.tweetdeck.com/TweetDeck_0_35.3.air
    [2010-10-20:17:24:18] Waiting for user confirmation
    [2010-10-20:17:24:52] User confirmed action: install
    [2010-10-20:17:24:52] beginning UI styling
    [2010-10-20:17:24:52] UI styling complete
    [2010-10-20:17:24:52] Unpackaging to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1F.tmp
    [2010-10-20:17:25:21] unpackaging/validation is complete
    [2010-10-20:17:25:21] application is bound to this version of the runtime
    [2010-10-20:17:25:21] app id TweetDeckFast
    [2010-10-20:17:25:21] pub id FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1
    [2010-10-20:17:25:21] Application not located
    [2010-10-20:17:25:21] Waiting for user confirmation
    [2010-10-20:17:25:34] User confirmed action: install
    [2010-10-20:17:25:34] creating native installer in: C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] native installer creation complete
    [2010-10-20:17:25:36] Starting install
    [2010-10-20:17:25:36] using conversion output in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp
    [2010-10-20:17:25:36] Destination for installed application is C:\Program Files
    [2010-10-20:17:25:36] Beginning install
    [2010-10-20:17:25:36] Installing C:\Documents and Settings\TamraMB\Local Settings\Temp\fla20.tmp\setup.msi
    [2010-10-20:17:25:41] Execution complete; beginning commit phase
    [2010-10-20:17:25:41] Commit complete
    [2010-10-20:17:25:41] Re-launching application from C:\Program Files\TweetDeck\TweetDeck.exe
    [2010-10-20:17:25:42] starting cleanup of temporary files
    [2010-10-20:17:25:44] application installer exiting
    [2010-10-20:17:26:14] UI SWF load is complete
    [2010-10-20:17:26:18] UI initialized
    [2010-10-20:17:26:18] Begin background update check
    [2010-10-20:17:26:18] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.3.13070/update
    [2010-10-20:17:27:16] Background update successfully downloaded
    [2010-10-20:17:27:16] User notified of available background update
    [2010-10-20:17:28:19] User deferred installation of background update
    [2010-10-20:17:28:19] begin quitting
    [2010-10-20:22:01:38] UI SWF load is complete
    [2010-10-20:22:01:41] UI initialized
    [2010-10-20:22:01:41] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-10-20:22:01:44] begin quitting
    [2010-10-20:22:02:08] Performing runtime update
    [2010-10-20:22:02:09] UI SWF load is complete
    [2010-10-20:22:02:12] UI initialized
    [2010-10-20:22:02:12] starting user confirmation
    [2010-10-20:22:02:13] Version of this installer: 2.0.4.13090
    [2010-10-20:22:02:13] Installed version: 2.0.3.13070
    [2010-10-20:22:02:14] Installation type: patchNewer
    [2010-10-20:22:02:19] starting install
    [2010-10-20:22:02:19] Scheduling runtime installation operations
    [2010-10-20:22:02:19] Active AIR product GUID is {B194272D-1F92-46DF-99EB-8D5CE91CB4EC}
    [2010-10-20:22:02:19] Scheduling an MSI repair operation
    [2010-10-20:22:02:20] Beginning runtime installation
    [2010-10-20:22:02:20] Beginning install
    [2010-10-20:22:02:20] Reinstalling c:\docume~1\tamramb\locals~1\temp\air37.tmp\setup.msi
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\airappinstaller.exe to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\airappinstaller.exe
    [2010-10-20:22:02:43] Copying C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Copying C:\DOCUME~1\TamraMB\LOCALS~1\Temp\AIR37.tmp\Adobe AIR\Versions\1.0\Resources\digest.s to C:\Documents and Settings\Default User\Application Data\Macromedia\Flash Player\www.macromedia.com\bin\airappinstaller\digest.s
    [2010-10-20:22:02:43] Execution complete; beginning commit phase
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3B.tmp\temp
    [2010-10-20:22:02:43] Deleting C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3C.tmp\temp
    [2010-10-20:22:02:43] Commit complete
    [2010-10-20:22:02:43] install complete
    [2010-10-20:22:02:51] begin quitting
    [2010-10-20:22:02:51] attempting launch of TweetDeck
    [2010-10-20:22:03:43] UI SWF load is complete
    [2010-10-20:22:03:49] UI initialized
    [2010-10-20:22:03:51] Pingback request completed with HTTP status 200
    [2010-10-20:22:03:51] Begin background update check
    [2010-10-20:22:03:52] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-20:22:03:52] Background update not available
    [2010-10-20:22:03:52] begin quitting
    [2010-10-28:09:52:08] UI SWF load is complete
    [2010-10-28:09:52:11] UI initialized
    [2010-10-28:09:52:11] Begin background update check
    [2010-10-28:09:52:12] Starting download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.0.4.13090/update
    [2010-10-28:09:53:08] Background update successfully downloaded
    [2010-10-28:09:53:08] User notified of available background update
    [2010-10-28:09:55:56] User selected immediate install of background update
    [2010-10-28:09:55:56] Running C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update
    [2010-10-28:09:55:58] begin quitting
    [2010-10-28:09:56:10] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:09:56:10] Commandline is: -update
    [2010-10-28:09:56:10] Installed runtime (2.0.4.13090) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:09:56:38] Starting runtime update. Updating runtime from version 2.0.4.13090 to version 2.5.0.16600
    [2010-10-28:09:56:38] Installing msi at c:\docume~1\tamramb\locals~1\temp\air12.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2010-10-28:10:00:31] Runtime Installer end with exit code 0
    [2010-10-28:10:24:27] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-10-28:10:24:35] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-10-28:10:24:35] Commandline is: -updatecheck
    [2010-10-28:10:24:35] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-10-28:10:24:37] Performing pingback request
    [2010-10-28:10:24:47] Pingback request completed with HTTP status 200
    [2010-10-28:10:24:47] Starting runtime background update check
    [2010-10-28:10:24:47] Clearing unused background update directory
    [2010-10-28:10:24:50] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-10-28:10:24:50] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-10-28:10:24:52] Runtime update not available
    [2010-10-28:10:24:52] Unpackaging cancelled
    [2010-10-28:10:24:53] Runtime Installer end with exit code 0
    [2010-11-04:11:34:43] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-04:11:34:47] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-04:11:34:47] Commandline is: -updatecheck
    [2010-11-04:11:34:47] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-04:11:34:48] Performing pingback request
    [2010-11-04:11:34:48] Starting runtime background update check
    [2010-11-04:11:34:48] Clearing unused background update directory
    [2010-11-04:11:34:48] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-04:11:34:48] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-04:11:34:49] Runtime update not available
    [2010-11-04:11:34:49] Unpackaging cancelled
    [2010-11-04:11:34:49] Runtime Installer end with exit code 0
    [2010-11-08:15:41:41] Application Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-08:15:41:41] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.36.1
    [2010-11-08:15:41:41] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-08:15:41:41] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-08:15:41:43] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3E.tmp
    [2010-11-08:15:41:46] Application signature verified
    [2010-11-08:15:41:46] Unpackaging/validation complete
    [2010-11-08:15:41:46] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp
    [2010-11-08:15:41:51] Native installation package creation succeeded
    [2010-11-08:15:41:51] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.35.3 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2010-11-08:15:41:51] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla3F.tmp\setup.msi with guid {18436EF4-C98B-B4C3-DF3E-B41918B6BED6}
    [2010-11-08:15:42:13] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2010-11-08:15:42:14] Application Installer end with exit code 0
    [2010-11-11:14:12:59] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:14:13:00] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:14:13:00] Commandline is: -updatecheck
    [2010-11-11:14:13:00] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:14:13:03] Performing pingback request
    [2010-11-11:14:13:03] Starting runtime background update check
    [2010-11-11:14:13:03] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:14:13:03] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:14:13:06] Runtime background update check failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="not an AIR file" errorID=0]
    [2010-11-11:14:13:06] Runtime Installer end with exit code 0
    [2010-11-11:17:40:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-11:17:40:56] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:17:40:56] Commandline is: -updatecheck
    [2010-11-11:17:40:56] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:17:40:58] Performing pingback request
    [2010-11-11:17:40:58] Starting runtime background update check
    [2010-11-11:17:40:58] Clearing unused background update directory
    [2010-11-11:17:40:59] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update
    [2010-11-11:17:40:59] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.0.16600/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-11:17:41:49] Unpackaging complete
    [2010-11-11:17:41:49] Download success
    [2010-11-11:17:41:49] Runtime updated downloaded
    [2010-11-11:17:42:59] User had deferred installing the update
    [2010-11-11:17:42:59] Runtime Installer end with exit code 0
    [2010-11-11:21:14:00] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Runtime Installer begin with version 2.5.0.16600 on Windows XP x86
    [2010-11-11:21:14:36] Commandline is: -applyupdates "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:14:36] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:14:42] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:14:54] Starting runtime background update installation
    [2010-11-11:21:14:54] Launching subprocess with commandline C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background\updater -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:15:33] Runtime updater successfully launched
    [2010-11-11:21:15:33] Runtime Installer end with exit code 0
    [2010-11-11:21:17:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-11:21:17:34] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe"
    [2010-11-11:21:17:34] Installed runtime (2.5.0.16600) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-11:21:17:34] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-11:21:18:05] Starting runtime update. Updating runtime from version 2.5.0.16600 to version 2.5.1.17730
    [2010-11-11:21:18:06] Reinstalling c:\docume~1\tamramb\locals~1\temp\air2c.tmp\setup.msi
    [2010-11-12:03:35:34] Launching subprocess with commandline c:\program files\tweetdeck\tweetdeck.exe
    [2010-11-12:03:35:35] Runtime Installer end with exit code 1
    [2010-11-12:04:21:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-12:04:21:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-12:04:21:51] Commandline is: -updatecheck
    [2010-11-12:04:21:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-12:04:21:53] Performing pingback request
    [2010-11-12:04:21:54] Pingback request completed with HTTP status 200
    [2010-11-12:04:21:54] Starting runtime background update check
    [2010-11-12:04:21:54] Clearing unused background update directory
    [2010-11-12:04:21:55] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-12:04:21:55] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-12:04:21:55] Runtime update not available
    [2010-11-12:04:21:55] Unpackaging cancelled
    [2010-11-12:04:21:55] Runtime Installer end with exit code 0
    [2010-11-19:11:19:12] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-19:11:19:34] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-19:11:19:34] Commandline is: -updatecheck
    [2010-11-19:11:19:34] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-19:11:19:37] Performing pingback request
    [2010-11-19:11:19:37] Starting runtime background update check
    [2010-11-19:11:19:37] Clearing unused background update directory
    [2010-11-19:11:19:37] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-19:11:19:37] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-19:11:19:41] Runtime update not available
    [2010-11-19:11:19:41] Unpackaging cancelled
    [2010-11-19:11:19:41] Runtime Installer end with exit code 0
    [2010-11-26:14:25:52] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-11-26:14:25:55] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-11-26:14:25:55] Commandline is: -updatecheck
    [2010-11-26:14:25:55] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-11-26:14:25:57] Performing pingback request
    [2010-11-26:14:25:57] Starting runtime background update check
    [2010-11-26:14:25:57] Clearing unused background update directory
    [2010-11-26:14:25:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-11-26:14:25:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-11-26:14:25:58] Runtime update not available
    [2010-11-26:14:25:58] Unpackaging cancelled
    [2010-11-26:14:25:58] Runtime Installer end with exit code 0
    [2010-12-03:20:44:53] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-03:20:44:57] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-03:20:44:57] Commandline is: -updatecheck
    [2010-12-03:20:44:57] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-03:20:45:10] Performing pingback request
    [2010-12-03:20:45:10] Starting runtime background update check
    [2010-12-03:20:45:10] Clearing unused background update directory
    [2010-12-03:20:45:11] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-03:20:45:11] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-03:20:45:13] Runtime update not available
    [2010-12-03:20:45:13] Unpackaging cancelled
    [2010-12-03:20:45:13] Runtime Installer end with exit code 0
    [2010-12-13:17:04:46] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-13:17:04:52] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-13:17:04:52] Commandline is: -updatecheck
    [2010-12-13:17:04:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-13:17:04:56] Performing pingback request
    [2010-12-13:17:04:57] Starting runtime background update check
    [2010-12-13:17:04:57] Clearing unused background update directory
    [2010-12-13:17:04:57] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-13:17:04:57] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-13:17:05:00] Runtime update not available
    [2010-12-13:17:05:00] Unpackaging cancelled
    [2010-12-13:17:05:00] Runtime Installer end with exit code 0
    [2010-12-21:10:22:01] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-21:10:22:21] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-21:10:22:21] Commandline is: -updatecheck
    [2010-12-21:10:22:21] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-21:10:22:46] Performing pingback request
    [2010-12-21:10:22:46] Starting runtime background update check
    [2010-12-21:10:22:46] Clearing unused background update directory
    [2010-12-21:10:22:53] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-21:10:22:53] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-21:10:23:38] Runtime update not available
    [2010-12-21:10:23:38] Unpackaging cancelled
    [2010-12-21:10:23:38] Runtime Installer end with exit code 0
    [2010-12-28:11:57:39] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-28:11:57:40] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2010-12-28:11:57:40] Commandline is: -updatecheck
    [2010-12-28:11:57:41] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2010-12-28:11:57:43] Performing pingback request
    [2010-12-28:11:57:43] Starting runtime background update check
    [2010-12-28:11:57:43] Clearing unused background update directory
    [2010-12-28:11:57:46] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2010-12-28:11:57:46] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2010-12-28:11:57:48] Runtime update not available
    [2010-12-28:11:57:48] Unpackaging cancelled
    [2010-12-28:11:57:48] Runtime Installer end with exit code 0
    [2011-01-04:16:53:30] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-04:16:53:31] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-04:16:53:31] Commandline is: -updatecheck
    [2011-01-04:16:53:31] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-04:16:53:33] Performing pingback request
    [2011-01-04:16:53:33] Starting runtime background update check
    [2011-01-04:16:53:33] Clearing unused background update directory
    [2011-01-04:16:53:34] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-04:16:53:34] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-04:16:53:35] Runtime update not available
    [2011-01-04:16:53:35] Unpackaging cancelled
    [2011-01-04:16:53:35] Runtime Installer end with exit code 0
    [2011-01-11:18:38:25] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-11:18:38:32] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-11:18:38:32] Commandline is: -updatecheck
    [2011-01-11:18:38:32] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-11:18:38:42] Performing pingback request
    [2011-01-11:18:38:42] Starting runtime background update check
    [2011-01-11:18:38:42] Clearing unused background update directory
    [2011-01-11:18:38:45] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-11:18:38:45] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-11:18:38:47] Runtime update not available
    [2011-01-11:18:38:47] Unpackaging cancelled
    [2011-01-11:18:38:47] Runtime Installer end with exit code 0
    [2011-01-18:22:45:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-18:22:45:47] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-18:22:45:47] Commandline is: -updatecheck
    [2011-01-18:22:45:47] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-18:22:46:01] Performing pingback request
    [2011-01-18:22:46:01] Starting runtime background update check
    [2011-01-18:22:46:01] Clearing unused background update directory
    [2011-01-18:22:46:01] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-18:22:46:01] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-18:22:46:02] Runtime update not available
    [2011-01-18:22:46:02] Unpackaging cancelled
    [2011-01-18:22:46:02] Runtime Installer end with exit code 0
    [2011-01-26:11:06:47] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-01-26:11:06:48] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-01-26:11:06:48] Commandline is: -updatecheck
    [2011-01-26:11:06:48] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-01-26:11:07:07] Performing pingback request
    [2011-01-26:11:07:08] Starting runtime background update check
    [2011-01-26:11:07:08] Clearing unused background update directory
    [2011-01-26:11:07:09] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-01-26:11:07:09] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-01-26:11:07:10] Runtime update not available
    [2011-01-26:11:07:10] Unpackaging cancelled
    [2011-01-26:11:07:10] Runtime Installer end with exit code 0
    [2011-02-04:13:47:49] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-04:13:47:51] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-04:13:47:51] Commandline is: -updatecheck
    [2011-02-04:13:47:51] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-04:13:48:00] Performing pingback request
    [2011-02-04:13:48:00] Starting runtime background update check
    [2011-02-04:13:48:00] Clearing unused background update directory
    [2011-02-04:13:48:05] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-04:13:48:05] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-04:13:48:07] Runtime update not available
    [2011-02-04:13:48:07] Unpackaging cancelled
    [2011-02-04:13:48:07] Runtime Installer end with exit code 0
    [2011-02-09:11:14:43] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-09:11:14:43] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.2
    [2011-02-09:11:14:43] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-09:11:14:44] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-09:11:14:46] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1C.tmp
    [2011-02-09:11:14:50] Application signature verified
    [2011-02-09:11:14:50] Unpackaging/validation complete
    [2011-02-09:11:14:50] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp
    [2011-02-09:11:14:55] Native installation package creation succeeded
    [2011-02-09:11:14:55] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.36.1 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-09:11:14:55] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla1D.tmp\setup.msi with guid {D3EA25C7-485B-5245-780A-B997DED97161}
    [2011-02-09:11:15:19] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-09:11:15:27] Application Installer end with exit code 0
    [2011-02-13:23:23:10] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-13:23:23:12] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-13:23:23:12] Commandline is: -updatecheck
    [2011-02-13:23:23:12] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-13:23:23:15] Performing pingback request
    [2011-02-13:23:23:15] Starting runtime background update check
    [2011-02-13:23:23:15] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-13:23:23:15] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-13:23:23:16] Runtime update not available
    [2011-02-13:23:23:16] Unpackaging cancelled
    [2011-02-13:23:23:16] Runtime Installer end with exit code 0
    [2011-02-21:14:07:13] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-21:14:07:24] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-21:14:07:24] Commandline is: -updatecheck
    [2011-02-21:14:07:24] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-21:14:07:29] Performing pingback request
    [2011-02-21:14:07:29] Starting runtime background update check
    [2011-02-21:14:07:29] Clearing unused background update directory
    [2011-02-21:14:07:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-21:14:07:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-21:14:07:35] Runtime update not available
    [2011-02-21:14:07:35] Unpackaging cancelled
    [2011-02-21:14:07:35] Runtime Installer end with exit code 0
    [2011-02-27:18:48:52] Application Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-27:18:48:52] Commandline is: -update "c:\program files\tweetdeck\tweetdeck.exe" "C:\Documents and Settings\TamraMB\Application Data\TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1\Local Store\#ApplicationUpdater\update.air" 0.37.5
    [2011-02-27:18:48:52] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-27:18:48:52] Installed app (TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1) located at c:\program files\tweetdeck\tweetdeck.exe
    [2011-02-27:18:48:54] Unpackaging file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air to C:\Documents and Settings\TamraMB\Local Settings\Temp\fla34.tmp
    [2011-02-27:18:48:57] Application signature verified
    [2011-02-27:18:48:57] Unpackaging/validation complete
    [2011-02-27:18:48:57] Converting unpackaged application to a native installation package in C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp
    [2011-02-27:18:48:59] Native installation package creation succeeded
    [2011-02-27:18:48:59] Starting app update of c:\program files. Updating from TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.2 to TweetDeckFast.FFF259DC0CE2657847BBB4AFF0E62062EFC56543.1 version 0.37.5 using the source file at file:///C:/Documents%20and%20Settings/TamraMB/Application%20Data/TweetDeckFast.FFF259DC0C E2657847BBB4AFF0E62062EFC56543.1/Local%20Store/%23ApplicationUpdater/update.air
    [2011-02-27:18:48:59] Installing msi at C:\Documents and Settings\TamraMB\Local Settings\Temp\fla37.tmp\setup.msi with guid {564D71D4-6BFD-E2EA-9EBA-0719178B8D7B}
    [2011-02-27:18:49:47] Launching subprocess with commandline c:\program files\TweetDeck\TweetDeck.exe
    [2011-02-27:18:49:52] Application Installer end with exit code 0
    [2011-02-28:21:17:23] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-02-28:21:17:26] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-02-28:21:17:26] Commandline is: -updatecheck
    [2011-02-28:21:17:26] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-02-28:21:17:31] Performing pingback request
    [2011-02-28:21:17:32] Starting runtime background update check
    [2011-02-28:21:17:33] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-02-28:21:17:33] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-02-28:21:17:34] Runtime update not available
    [2011-02-28:21:17:34] Unpackaging cancelled
    [2011-02-28:21:17:34] Runtime Installer end with exit code 0
    [2011-03-09:03:45:21] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-09:03:45:59] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-09:03:45:59] Commandline is: -updatecheck
    [2011-03-09:03:45:59] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-09:03:46:20] Performing pingback request
    [2011-03-09:03:46:20] Starting runtime background update check
    [2011-03-09:03:46:20] Clearing unused background update directory
    [2011-03-09:03:46:31] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update
    [2011-03-09:03:46:31] Unpackaging http://airdownload.adobe.com/air/3/background/windows5.1/x86/patch/2.5.1.17730/update to C:\Documents and Settings\TamraMB\Application Data\Adobe\AIR\Updater\Background
    [2011-03-09:03:46:53] Runtime update not available
    [2011-03-09:03:46:53] Unpackaging cancelled
    [2011-03-09:03:46:56] Runtime Installer end with exit code 0
    [2011-03-17:19:30:41] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-03-17:19:30:49] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-17:19:30:49] Commandline is: -updatecheck
    [2011-03-17:19:30:49] Installed runtime (2.5.1.17730) located at c:\Program Files\Common Files\Adobe AIR
    [2011-03-17:19:30:52] Performing pingback request
    [2011-03-17:19:30:52] Startin

    Hi,
    I'm sorry you're running into problems with the AIR installer.  Could you try out the script that I attached to this post and let me know if it helps you?
    Thanks,
    Chris

  • Air update - initial content not found

    I had a working AIR-Project using this configuration:
    Win 7 64 bit
    Flex SDK 4.0.0
    AIR 1.5.3
    However, I needed to include a C++ library in the project and therefore update to AIR 2.0 or newer (at least I was told AIR 1.5 does not support calling native processes or C++ libraries).
    I tried updating both, the AIR version only or the Flex SDK including a newer AIR version - however, all update atempts led to the following error:
    Process terminated unexpectedly.
    initial content not found
    Launch command details:  "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\bin\adl.exe" -runtime "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\runtimes\air\win" "<root>\TestAirVersion\bin-debug\TestAirVersion-app.xml" "<root>\TestAirVersion\bin-debug"
    As you can see the above error occured using Flex SDK 4.5.0 and AIR 2.5.0 - but a similar error is thrown by any configuration above AIR 2.0 (both in Flash Builder or by calling the ADL manually).
    The project descriptor was updated (<application xmlns="http://ns.adobe.com/air/application/2.5">) and the SDKs were put in the Adobe Flash Builder4\sdks\xxx directory - did I miss something? (the project above is an empty test-project!)
    I also discovered that the AIR runtimes 2.0 and later include a Template.exe and a template.msi in the \Resources\ directory. If I run these, I get a
    Source file not found: C\ <...> \Resources\REPLACE. Verify that the file exists and that you can access it.
    Error (template.msi) - Template.exe leads to an invalid-application error - are these supposed to work?
    Thanks in advance!

    I had a working AIR-Project using this configuration:
    Win 7 64 bit
    Flex SDK 4.0.0
    AIR 1.5.3
    However, I needed to include a C++ library in the project and therefore update to AIR 2.0 or newer (at least I was told AIR 1.5 does not support calling native processes or C++ libraries).
    I tried updating both, the AIR version only or the Flex SDK including a newer AIR version - however, all update atempts led to the following error:
    Process terminated unexpectedly.
    initial content not found
    Launch command details:  "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\bin\adl.exe" -runtime "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4\sdks\4.5.0\runtimes\air\win" "<root>\TestAirVersion\bin-debug\TestAirVersion-app.xml" "<root>\TestAirVersion\bin-debug"
    As you can see the above error occured using Flex SDK 4.5.0 and AIR 2.5.0 - but a similar error is thrown by any configuration above AIR 2.0 (both in Flash Builder or by calling the ADL manually).
    The project descriptor was updated (<application xmlns="http://ns.adobe.com/air/application/2.5">) and the SDKs were put in the Adobe Flash Builder4\sdks\xxx directory - did I miss something? (the project above is an empty test-project!)
    I also discovered that the AIR runtimes 2.0 and later include a Template.exe and a template.msi in the \Resources\ directory. If I run these, I get a
    Source file not found: C\ <...> \Resources\REPLACE. Verify that the file exists and that you can access it.
    Error (template.msi) - Template.exe leads to an invalid-application error - are these supposed to work?
    Thanks in advance!

  • FLV embedded in a SWF file, does not play in HTML file.

    Hi,
    I embedded a FLV file into flash movie clip, which on publish plays well on SWF file, but when the same is embedded in HTML, it does not play.
    What is it i'm missing ..
    Kindly help.
    Regards
    Shashi

    First, clarify this... are you embedding the .flv into the time line, as in:
    The .FLV file is imported on the  timeline of a movie clip.
    I embedded the .flv file,
    If you are in fact embedding the video, then there is no external video file... it's embedded into the timeline.
    If you are using the FLVPlayback component and an external vid file to display the video and the .swf when testing plays the video just fine but not on the HTML Web page:
    SWF plays external video file, as soon as I embed SWF in HTML, it no longer playes the external video file.
    then it's most likely a pathing problem.
    If you are placing the .swf on a Web page and the .swf and/or the .flv file are not both in the same folder as the Web page.... then the .swf should NOT work when you test it directly! That's because it should be pathed to play from the Web page and not the location of the .swf.
    For your review:
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best of luck,
    Adninjastrator

  • Adobe air swf file error in browser

    my fla file setting
    version: adobe air 1.0 actionscript 3.0
    i able to compile without problem and when i load the swf file in browser, if my actionscript included this line "import flash.filesystem.File". My flash just show up "blank" . no error in flashlog. if i removed this line, my swf file able to run. what is wrong?
    p/s: i embeded the air app as swf and open with browser

    You can't load SWFs published for AIR in a browser. The Flash plug-in does not recognize the extra AIR APIs like File.
    AIR SWFs can only be used as part of an AIR application.

Maybe you are looking for

  • Manage-bde error via prompt.

    Hi !!! I have a big network with 200 Laptops all with Windows 7 32-bit version installed. Now i want to deploy bitlocker security with TPM,all this laptops have the TPM module enable. I'm installing bitlocker via remote prompt launching this command:

  • How to populate values dynamically & allows user to edit some other columns

    Hi..I am new to Apex..please help me to sove it out... I have a scenario like editing the some of the Customer details where as one field is dynamically populating from a different table. Columns like Include, Frequency, Communication, Address and Ex

  • SIM not provisioned on IPAD

    I have not been able to access a network since I purchased my IPAD. Can't seem to find someone at AT&T nor apple care that know how to fix this problem either. I get the error message USIM9992 when I try to active a data plan both online and on the I

  • Spotlight not showing  results of system Apps in Spanish

    Hi, I'm using a Intel Core2Duo imac with 10.4.8 and 1 GB of RAM. I've been able to use the spotlight searchs for aplications from the beginings, but since 2 weeks ago I can't find any application of Apple Mac OS X which are in Spanish (for instance:

  • Import parameter to method does not default when executed

    Hi Everybody...i have a method with import parameter IV_DATE type SY-DATUM default SY-DATUM. When i execute the method the system date does not default...the IV_DATE field is blank(Spaces). Is there anybody that can help. This is very strange. Thanks