Triggering an event when the new  AIR application installation has done for first time in machine

I am installing AIR application from web page by using a badge.Is it possible to call a function once the installation of AIR app was finished[once we click finish button in the installer] to update the AIR application version dynamically inside our code.If so please share. Any suggestion would be appreciated.

Hi Rizwana,
So as you said that you had created a event linkage between change document object and Business object you can now switch on the event trace SWELS and go to the particular transaction by which the event of this Business  Object gets triggered ( the event you mentioned in SWEC). Switch of the event trace (SWELS) and check the Business object that had triggered in SWEL transaction.
Hope this would help you.
Any clarification.. then please revert back.
Good luck
Narin

Similar Messages

  • New 9 Cell S10 Battery-Advcie For First Time Charge and After?

    Did search on first time charge for laptop batteries. I just picked up a 9 cell laptop battery for my S10. What is the best way to keep the life of these battries long. Read discharge fully then charge for 12 hours. Read charge fully then discharge 3 x's.
    Any one know for sure? Please advise!-Thanks.
    PS- the battery came charged at 81%.

    Hi ... i did the first 3 x times charged full / empty .. later you can charge if you want / need  the battery ... if you use long period of time plugged with psu (week, month)  ... its better to eject the battery ..
    store at cool & dry place... and use it when you want mobile
    thats only my suggestion
    sincerely KalvinKlein  
    Thinkies 2x X200s/X301 8GB 256GB SSD @ Win 7 64
    Ideas Centre A520 ,Yoga 2 256GB SSD,Yoga 2 tablet @ Win 8.1

  • When the new 3.6 installs, I can no longer access my on-line banking. Every thing else is ok. What can I do.

    Trying to figure out what caused it, I restored my computer to an earlier date and my on-line banking came back. As soon as Firefox updated to 3.6 again, I cant access again. Must be the upgrade. Please help. I like Firefox other than this.

    You won't get an answer from Apple here, this is a user forum.
    Post feedback if you want Apple to know how much this bothers you.
    http://www.apple.com/feedback/
    There are many possible errors, & possible solutions you will need to be more specific about what actually happens.
    Also check you don't have any extensions enabled within Safari's preferences, or make sure they are up to date.

  • Firefox 17 keeps crashing on my brand new computer. It has done this 9 times in the past 10 days which I find unacceptable.

    I am hoping someone can help me solve this problem.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • I can't see my country name when I tried to log into iTunes Store for first time

    Hi,
    Couple of days ago, I successfully registered in iOS Developer Program. All of the process is completed. Today I tried to log into iTunes Strore from my mac. But it asked me "This Apple ID has not been used with the iTuens Store" Please review your account information.
    I clicked on review.
    I am not in United Kingdom, so I need to select my country for a valid billing information. But my country name isn't listed there. :-(
    I am from Bangladesh, and I believe that we do not have payment processing problem. So I don't know why Bangladesh isn't included there! Can someone give me any suggession? Should I contact with Apple Support Team?
    I have already Purchased iOS Developer Program Using my Credit Card. If my credit card is acceptable, then why can't I get registered in iTunes Store? I want to connect with it and all of you know that iTunes Store is the worlds best store for applications/games/.................... and more......
    Please help someone
    thanks.

    Ohemod,
    There are 120+ countries that have iTunes Stores, but that leaves many that do not.  You can consult this document:  iTunes Store: Which types of items can I buy in my country?
    Opening in a new country requires a tremendous amount of legal, commercial and financial investment, but I am sure Apple would be interested in knowing where there is unmet demand.  If you wish to make suggestions to Apple, you can use the iTunes Feedback page.

  • Need better alternative to Adobe AIR Application Installer

    In order to build a double-clickable desktop application,
    apparently one has to use the Adobe AIR Application Installer. This
    is bad for a few reasons:
    It's not scriptable.
    It hard-wires the name of the swf file to load into the
    generated binary.
    For Mac OS X, the "swf launcher" should be a simple "launcher
    stub". The name of the swf file to load should be read from the
    Info.plist file. If it did this, then the stub could be the same
    for all applications. For Windows, there could be a simple XML
    config file in the same directory as the app that serves the same
    purpose as Info.plist on the Mac.
    I hope Adobe addresses this soon.

    quote:
    Originally posted by:
    mattkane
    How about creating your native launcher app with the whole
    AIR client in the Resources folder. When you launch your app it
    launches your server executable, then after its done its stuff it
    launches the AIR app.
    You could make the launcher app itself headless so you don't
    get two dock icons.
    This doesn't address the need to have a non-GUI alternative to
    the Air Application Installer so builds can be completely
    automated.
    It definitely breaks the drag-and-drop of a file onto the
    application's icon.
    I never said I have 2 Dock icons. (I already solved that
    problem by making the server "faceless" by setting LSUIElement to 1
    in the server's Info.plist.)
    Why do I want completely automated builds? Aside from the
    ease of just being able to type "ant" and press Return, any real
    development group has things such that a "build machine"
    automatically rebuilds the app (on all platforms) after ever
    developer check-in to check for accidental build breakage. Those
    builds also become available to QA for them to test.
    Ever time some new development tool comes out where the
    authors provide a GUI tool (presumably because they think GUI =
    easy), I have to wonder, "What were they thinking?" If the authors
    are themselves developers, how can they not see how crippling not
    providing an all-command-line tool-chain is? Don't all non-trivial
    development groups do automated builds as described above? The only
    answer I can think of is that some
    PHB
    somewhere thought it would be a "neat idea" to have an
    "easy-to-use" GUI application (because that sells to other PHBs).
    As to drag-and-drop: presumably, the swf launcher that gets
    generated properly handles drag-and-drop of files onto the
    application's icon and Does The Right Thing when it happens (where
    "right thing" usually means simply opening the document dropped
    onto the icon). Now, since my launcher gets launched instead, that
    breaks drag-and-drop unless I implement that functionality myself.
    The way I've implemented my launcher is such that, after the
    fork(), it's the parent process that exec's itself into the client
    thus keeping the original process ID. The hope is that Launch
    Services on the Mac, when handling and drag-and-drop event, will
    send said event to the original process -- which is now the client
    -- and everything Just Works. I have yet to get around to testing
    this (I'm busy with other things at the moment); but, if it turns
    out that my hope isn't fulfilled, well then I can fall back to
    keeping my launcher running to get and forward the OpenDoc
    AppleEvents from my launcher to the swf launcher.
    So, anyway, back to my original plea: Adobe,
    please just give us a command-line replacement for the Air
    Application Installer (preferably just a launcher stub that reads
    Info.plist). Thanks.

  • Adobe AIR Application Installer command-line

    Could someone provide the command-line reference (parameters
    and usage) for Adobe AIR Application Installer?
    Tks!

    Hey Oliver!
    I've applied for an AIR distribution license but I still have
    some doubts.
    My application is based in one .air component and another one
    service created using C++. So, in order to install my application,
    I need to install both applications. I've used the bundled
    installation mentioned in the distribution docs, but it is not the
    best solution for my problem. I would like to have just one entry
    point in the “Add/Remove Programs” applet.
    Is there another way to deliver the .air application (e.g.
    not using the Adobe AIR Application Installer)?
    For example, is it possible get all files needed to create my
    .air file and install them without creating the .air file properly?
    I mean, is there any license or technical restrictions that
    invalidate this approach?
    Thanks!

  • Error when booting app server for first time

    Hi All,
    My OS is OEL 6,PT 8.53 and HCM9.2 after creating the app server domain and booting it for first time i am getting an error as below,
    exec PSWATCHSRV -o ./LOGS/stdout -e ./LOGS/stderr -A -- -ID 221921 -D TESTSERV -                              S PSWATCHSRV :
    CMDTUX_CAT:816: ERROR: Cannot exec, executable file not found
    tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error ha                              ndler
    exec tmshutdown -qy
    Any help appreciated.
    TUXEDO LOG Says,
    162253.wipcoe1234!tmloadcf.5379.1098766080.-2: 05-03-2013: client high water (0), total client (0)
    162253.wipcoe1234!tmloadcf.5379.1098766080.-2: 05-03-2013: Tuxedo Version 11.1.1.3.0, 64-bit
    162253.wipcoe1234!tmloadcf.5379.1098766080.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 1197 512-byte blocks)
    162253.wipcoe1234!tmloadcf.5379.1098766080.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file /home/oracle/psft/pt/8.53/appserv/HCMDM92/PSTUXCFG has been created
    162253.wipcoe1234!tmloadcf.5384.2986219264.-2: 05-03-2013: Tuxedo Version 11.1.1.3.0, 64-bit
    162253.wipcoe1234!tmloadcf.5384.2986219264.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 1197 512-byte blocks)
    162253.wipcoe1234!tmloadcf.5384.2986219264.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file /home/oracle/psft/pt/8.53/appserv/HCMDM92/PSTUXCFG has been created
    162258.wipcoe1234!PSADMIN.5355: Begin attempt on domain HCMDM92
    162302.wipcoe1234!tmadmin.5392.1509406464.-2: TMADMIN_CAT:1330: INFO: Command: boot -A
    162304.wipcoe1234!tmboot.5393.2297452288.-2: 05-03-2013: Tuxedo Version 11.1.1.3.0, 64-bit
    162304.wipcoe1234!tmboot.5393.2297452288.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is set to 120 seconds
    162304.wipcoe1234!tmboot.5393.2297452288.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAIL option is selected
    162306.wipcoe1234!BBL.5394.2180380416.0: 05-03-2013: Tuxedo Version 11.1.1.3.0, 64-bit, Patch Level (none)
    162306.wipcoe1234!BBL.5394.2180380416.0: LIBTUX_CAT:262: INFO: Standard main starting
    162308.wipcoe1234!tmboot.5397.3909768960.-2: 05-03-2013: Tuxedo Version 11.1.1.3.0, 64-bit
    162308.wipcoe1234!tmboot.5397.3909768960.-2: CMDTUX_CAT:1851: INFO: TM_BOOTTIMEOUT is set to 120 seconds
    162308.wipcoe1234!tmboot.5397.3909768960.-2: CMDTUX_CAT:1855: INFO: TM_BOOTPRESUMEDFAIL option is selected
    162308.wipcoe1234!tmboot.5397.3909768960.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
    162311.wipcoe1234!BBL.5394.2180380416.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    162314.wipcoe1234!PSADMIN.5355: End boot attempt on domain HCMDM92
    Edited by: ajith on May 3, 2013 5:39 PM

    If not solved yet...
    What says appsrv.log ? Which user are you using to start the appserver ? Which user have you specified when sreating the database ?
    Nicolas.

  • Hi i haven't updated my iDVD seen 2005 and to get the new one i need 7.0.4 first and i downloaded it from the apple website and when i go into the updating process its says "An eligible iDVD application was not found in the location /Applications." why"

    Hi i haven't updated my iDVD seen 2005 and to get the new one i need 7.0.4 first and i downloaded it from the apple website and when i go into the updating process its says "An eligible iDVD application was not found in the location /Applications." why

    Because you need to buy iLife 08 or newer on DVD first. If you're using iDVD 05, you probably have a PowerPC Mac and can't use iLife 11.
    (69573)

  • How can flex tell if  it's a mouseup event when the user releases the mouse button outside the flex application?

    how can flex tell if it's a mouseup event when the user
    releases the mouse button outside the flex application? Say for
    instance mousedown was done within a 500x500 embedded flex app but
    mouseup is outside or relased on the HTML background. One more
    thing, when we have something draggable, Flex doesn't execute the
    stopDrag() when the user releases the mouse button outside the
    embedded swf or fles app. Pls. help me with this. Thanks!

    I don't think the flex app can tell what happens outside the
    app. But it can detect when it leaves the app, so I have found the
    following line works fine inside initApp():
    this.stage.addEventListener(Event.MOUSE_LEAVE, yourFunction);
    and you have to:
    import flash.display.Stage;
    Doug

  • 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

  • How to publish android app with the new AIR 2.6 ?

    Please anyone can help to instruct the correct way to install the new AIR SDK?
    I work with Flash IDE and don't know how to link them...
    And another noob question, are there any differences between "AIR Android" and "Adobe AIR 2" in publish settings when I'm going to create an android app with up-to-date AIR version? I was very confused by the scenario that as long as I upgraded to AIR2.6 SDK, "AIR Android" remains 2.5 though "Adobe AIR2" will surely be 2.6?
    Much appreciated for any help.

    To create an APK package, use the ADT package command, setting the target type to apk for release builds, apk-debug for debug builds, or apk-emulator for release-mode builds for running on an emulator.
    adt     -package
        -target apk
        -storetype pkcs12 -keystore ../codesign.p12
        myApp.apk
        myApp-app.xml
        myApp.swf icons
    Type the entire command on a single line; line breaks in the above example are only present to make it easier to read. Also, the example assumes that the path to the ADT tool is on your command-line shell’s path definition. (See Path environment variables for help.)
    You must run the command from the directory containing the application files. The application files in the example are myApp-app.xml (the application descriptor file), myApp.swf, and an icons directory.
    When you run the command as shown, ADT will prompt you for the keystore password. (The password characters you type are not displayed; just press Enter when you are done typing.)
    You can find more details here

  • How do I merge events on the new IPhoto. The old one was simply drag and drop, this one will not.

    How do I merge events on the new IPhoto. The old one was simply drag and drop, this one will not.

    There are no longer events in Photos.  The new Photos for Mac is structuring the Photos Library automatically into Moments based on dates and locations. You cannot change the moments.
    When Photos migrates an iPhoto Library, it will create album for each event in the iPhoto Library, as a substitute, but these album based "events" are a fake, because albums behave differently from events.
    In iPhoto each photo could be only in one event, so you could move photos from one event to another. With albums, dragging a photo from an album to another album will simply add the photo to the other album as well.
    You will have to remove the photo from the original album.

  • How to stop the new health application from Count the steps/ woking background?

    how to stop the new health application from Count the steps/ woking background?
    I really need your help

    I agree with Mr. Hall that using mx.controls.Alert in Flex may be a better route.
    Show the Alert like this:
    // show an alert with a question and yes and no choices
    Alert.show( "Would you like to go to the Adobe Forums?", "Question",
         Alert.YES | Alert.NO, this, closeHandler, null, Alert.YES );
    Then handle the response in the closeHandler() function:
    protected function closeHandler( closeEvent:CloseEvent ):void
    if( event.detail == Alert.YES )
         navigateToURL( new URLRequest('http://forums.adobe.com'), '_self' );
    else if( event.detail == Alert.NO )
         // they chose no
    The following documentation on Alerts may be helpful:
    http://www.flexafterdark.com/docs/ActionScript-Alert
    Let me know if that helps...
    Ben Edwards

  • I recently bought a MacBook Air.  I migrated the info from my old MacBook to the new Air.  None of my contacts migrated.  I still have them on my old Macbook, Ipad and iPhone.  How do I get them to the new Air?

    I recently bought a MacBook Air.  I migrated the info from my old MacBook to the new Air.  None of my contacts migrated.  I still have them on my old Macbook, Ipad and iPhone.  How do I get them to the new Air?

    You can copy the iWeb application from the desktop machine to your new MBA.  But if it's iWeb 2 it won't work with Mavericks or Mt. Lion. Also  copy the Domain.sites file from the desktop to your MBA as that's the file with your webstite files in it.
    Happy New Year

Maybe you are looking for

  • Clearing values of input boxes

    Can any one Help me with the problem i am having with clearing the values for several input text fields from the generated HTML page. so the user can press the back button and all the fields are clear in the previous page. this is my line of thought

  • Problem with 694T

    Hi, I have instaled a PIII 1Ghz. in a motherboard 694T, with kingston memory and a trident AGP video card. The problem is that it never boot when pass the info screen. The D-Leds was in RED Green Green Green, so in the manual say this: Boot Attempt -

  • IPad wont sync of WiFi

    I've plugged my iPad into my Mac (OSX 10.6.8) using the latest iTunes and checked the box "sync iPad over wifi" in the summary tab. I remove my iPad and plug it into an electrical outlet and when i go into my iPad into the "iTunes-Wifi sync" the butt

  • Data from two diff. Modules - Situation

    Hello all, If the datas are coming from two diff. module like two FI modules. While doing Transport through ETL what should be prequatious steps the consultant is supposed to tell the user ?? Can anybody guide me ??? Thanks in advance

  • Alignment issues between timelines?

    I am stumped. I am not a newbie, but this is driving me crazy. (not my file, supplied by client) I have a movie clip in the main timeline, which in its own timeline has rollover buttons which coincide with popup panels in the main timeline. I need to