Is there a way to notify users that Air installer is starting

Hi,
I've developed an Air application that I would guess is large by typical Air standards, and when the installer starts, there is some delay before you see anything.  This is being developed for a particular set of users who can be notified of the issue, but I am wondering whether there is any workaround as with most installers there is instant notification that the installation process is beginning.
Best regards,
Chris McLaughlin

Brian, Accepeted. We can not create Infoset on PSA.
To create report on PSA, follow this.
https://websmp104.sap-ag.de/~sapidb/011000358700008145112002
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/968dab90-0201-0010-c093-9d2a326969f1
/message/5239445#5239445 [original link is broken]
Thanks...
Shambhu

Similar Messages

  • Is there a way to upload music that I have saved on my computer to my ipod? I didn't see anything in the user guide for doing this.

    Is there a way to upload music that I have saved on my computer it my ipod touch or is uploading from iTunes the only way to upload music? I didn't see anything in the user guide on how to do this.

    These two articles explain how to put music from your PC into iTunes and then all you need to do is sync it with your iPod
    http://support.apple.com/kb/HT1473#2
    http://support.apple.com/kb/ht1347

  • Is there a way to notify/alert users about records from PSA

    Hi All,
    During transaction data load in BW 3.5 I am using the option" No update of transaction data if Master data does not exist" in the Infopackage.
    If any records don't meet this criteria they will show in different Request in PSA.
    My question: Is there a way to notify/alert users about these records from PSA?.
    Through process chain we can't send any alerts in this case as loads will not fail.
    Please help.
    Thank you.
    Sree

    Brian, Accepeted. We can not create Infoset on PSA.
    To create report on PSA, follow this.
    https://websmp104.sap-ag.de/~sapidb/011000358700008145112002
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/968dab90-0201-0010-c093-9d2a326969f1
    /message/5239445#5239445 [original link is broken]
    Thanks...
    Shambhu

  • Is there any way to forse user to put at least 5 characters when using LOV?

    Hi gurus,
    I have a question.
    Is there any way to force user to put at least 5 characters when using LOV?
    I want user to put at least 4 characters before/when using LOV.
    Is there any way to do that?
    Thank you for your answers.
    Nerijus

    Hello,
    i've tested it both on 6i and 10g and also set the lov name at runtime.
    All i can say is, it does what it is supposed to do.
    So you should give it one more try:
    - leave the item properties NULL ( LOV name ) and NO ( Validate_From_List )
    - add following code in the WVI - Trigger
    IF :AUFTRAG_NEU.PN IS NOT NULL AND LENGTH ( :AUFTRAG_NEU.PN ) < 5 THEN
      Show_Message ( 'Bitte 5 Zeichen eingeben' );
      RAISE FORM_TRIGGER_FAILURE;
    ELSIF :AUFTRAG_NEU.PN IS NULL THEN
      NULL;
    ELSE
      SET_ITEM_PROPERTY ( 'AUFTRAG_NEU.PN', LOV_NAME, 'LOV_PN_PROJEKT' );
      SET_ITEM_PROPERTY ( 'AUFTRAG_NEU.PN', VALIDATE_FROM_LIST, PROPERTY_TRUE );
      IF SHOW_LOV THEN
        NULL;
      END IF;
      SET_ITEM_PROPERTY ( 'AUFTRAG_NEU.PN', VALIDATE_FROM_LIST, PROPERTY_FALSE );
      SET_ITEM_PROPERTY ( 'AUFTRAG_NEU.PN', LOV_NAME, '' );By the way, what exactly doesn't work?
    Bernd

  • Is there a way to create user logins or some other way to ...

    Is there a way to create user logins or some other grouping for a set of applications to use (memory) resources optimally -- for example only mail and Safari and Word in one grouping and another for Safari and an audio recording application, etc.?

    It is possible to use Parenal Controls to limit which applications can be used be a particular user account.
    But it's not really necessary as far as managing memory.
    Matt

  • My laptop screen when black now it will not turn on or off. And is there a way to see everything that has been done to my laptop at a apple store?

    My laptop has been in the apple store to be fixed more times in the past 2 years then you could imagine. They just replaced a defective wire in it, and hardrive not even a month ago and now the screen just went black and wont turn back on. Also is there a way to see everything that has been done to this laptop through the apple store?

    If I were you I would call Apple Customer Relations (800) 767-2775.  Tell them exactly what you stated in your post in a polite way.  See what they can do for you.
    Nickc111209 wrote:
    is there a way to see everything that has been done to this laptop through the apple store?
    Yes.  And also on Apple's repair history website.

  • Is there a way to get music that is on my iPod touch to my iPhone 5 with music no on the cloud or in itunes?

    I just bought a new iPhone 5 and want to transfer all the music on my ipod 3rd gen. to my iPhone. the dilema im having is that not all of my music is on my iTunes. is there a way to move all that music?

    No.  You can download previously purchased music to your iPhone, but all other music must be synched via iTunes.

  • Is there a way to play movies that require flashplayer on a ipad2

    is there a way to play movies that require flashplayer on a ipad2

    Take a look at the "More Like This" to the right.  That question has been asked and answered many times in the past.
    Short answer: try alternate browsers like Skyfire or Puffin.

  • Is there any way to an index that can be used to include the "OR condition "?

    Hello I have some questions.
    The test was conducted in the following procedure .
    create table test
    c1 varchar2(10),
    c2 varchar2(10),
    primary key(c1)
    create index test_idx1 on test(c2);
    Command> explain select * from test where c1 = 'AAAAAAAAAA' or c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA' OR TEST.C1 = 'AAAAAAAAAA'
    Command>
    Command> explain select * from test where c1 = 'AAAAAAAAAA' and c2 = 'AAAAAAAAAA'
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   TEST.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         TEST.C2 = 'AAAAAAAAAA'
    Command>
    By including the "OR condition " in this test does not use the index.
    Is there any way to an index that can be used to include the "OR condition "?
    Thanks.
    GooGyum.

    A database cannot in general use indexes in this way for an 'or' involving two different columns. However, for this specific example one can easily rewrite the query using 'UNION' to use the relevant indexes while still giving the same (correct) result:
    Command> explain select * from test t1 where t1.c1 = 'AAAAAAAAAA' union select * from test t2 where t2.c2 = 'AAAAAAAAAA';
    Query Optimizer Plan:
      STEP:                1
      LEVEL:               1
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST
      INDEXED CONDITION:   T1.C1 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                2
      LEVEL:               2
      OPERATION:           RowLkRangeScan
      TBLNAME:             TEST
      IXNAME:              TEST_IDX2
      INDEXED CONDITION:   T2.C2 = 'AAAAAAAAAA'
      NOT INDEXED:         <NULL>
      STEP:                3
      LEVEL:               1
      OPERATION:           OrderBy
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
      STEP:                4
      LEVEL:               2
      OPERATION:           UnionMergeSort
      TBLNAME:             <NULL>
      IXNAME:              <NULL>
      INDEXED CONDITION:   <NULL>
      NOT INDEXED:         <NULL>
    Maybe you can apply a similar trick? If you know there is no possibility of duplicate rows then you can further optimise this (in terms of performance) by using UNION ALL.
    Chris

  • How do I get Adobe Air Desktop App to notify user that a URL text file has been updated?

    How do I get an Adobe Air Desktop App to notify user that a URLRequest ".txt" file has been updated? via blinking system tray icon or something.
    New to Air and need someone to point me in the right direction. I have been searching web for hours and probably not asking the question right.
    I have a very simple Desktop App that just loads a text file from a web location into a dynamic text field at a set timer. it just repeats this action on the timer. right now every 5 minutes
    What would the actionscript be to tell the Air App to look at the date or time stamp of the ".txt" file and notify user if its new?
    Thanks

    Try to follow below steps
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go
    Then open Application Support > Adobe folders
    Trash AAMUpdater and OOBE folders.
    Now click on finder and hold Command + Shift + G keys on your keypad.
    This time type /Library and click on Go.
    Make sure to remove ~ symbol.
    Then open Application Support > Adobe folders.
    Trash AAMUpdater, Adobe Application manager, OOBE folders.
    Now Click on Finder and then hold Command + Shift + U keys on your keypad.
    It will open utilities folder.
    Trash Adobe Creative Cloud and Adobe Application Manager folders
    Download and Run CC cleaner tool from below link
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems/_jcr_conte nt/main-pars/accordion_container_1/accordion-par/accordion-item-1/accordion-item-par/proc e dure/proc_par/step_3/step_par/download/file.res/AdobeCreativeCloudCleanerTool.zip
    Accept the license agreement and click on Adobe Application Manager
    Then click on clean up selected
    Close the window
    Download and install Creative Cloud App from below link
    Free Creative Cloud | Download Adobe Creative Cloud free trial

  • Is there a way to import images that have been edited and assign them to the original?

    I am transitioning to mac and aperture. Is there a way to import images that have been edited and assign them to the original? I have 10,000 originals and about 2,000 edited images. The originals are named img_XXXX and anything modified img_XXXX_modified. I would like to be able to import the originals and then import the edited versions and assign them to the original masters. Instead of starting from here and going forward with 12,000 masters, some of which are actual originals and others not. Thanks for the help.

    Ah, the vestiges of a destructive workflow! Once you "get" Aperture, (specifically Masters and Versions) you are going to love it, as all of this work goes away - the relationship that you seek to retain is automatic in Aperture; it is simply done differently.
    The short answer to your question is EVERY image file that is Imported into Aperture will create a new Master and one Version. Assuming that your images are PSD/TIFF/JPEG that you created in something like Photoshop, then each one that your import will be a new Master. You have many options:
    -- Stick the originals in one Project(s) and the edited versions in another Project(s).
    -- Stick them all in the same Project(s) and "Stack" them.
    But here is the real question: Why are you doing all of this work and what are you trying to accomplish? Seems you are trying to preserve old things that don't need preserving in a non-destructive workflow.
    So, what is most valuable to you?
    -- The original, out of camera files? (That is, the fear/need to revert.)
    -- The edited versions? (That is the hours of work that it took you to get there.)
    If the former, import the originals and ignore the edited versions. (Either simply leave them out on disk or import them into their own Projects which you ignore.) Use Aperture to recreate the work you had done previously. This will always give you the ability to revert to the original Master and create as many Versions as you want. This is the best idea if your edits are relatively simple crops and exposure adjustments,
    If the latter, then import the edited versions and do as above with the originals. This makes more sense if your work uses lots of layers and, perhaps lots of clone tool type corrections.
    Of course, you can do a bit of both.
    Others may have better suggestions, but you will find it easy to answer your own question when you understand an image based, as opposed to a file based, non-destructive workflow.
    Good luck!

  • HT201302 When I am trying to import pictures from my iphone to PC, I get the message'No new pictures of videos were found on this device'. There are lots of pictures which i can see on the iphone. I have a 4S. Is there a way to get around that?

    When I am trying to import pictures from my iphone to PC, I get the message'No new pictures of videos were found on this device'. There are lots of pictures which i can see on the iphone. I have a 4S. Is there a way to get around that?

    It sounds like you are using an application to import. You can do it manually.
    Start > Computer (on the right) > scroll to the bottom and you will see your iPhone under Portable Devices > Open it and you will see a Drive, open that and there will be a DCIM folder. That is where your photos will be (There may be other folders each holding photos).

  • HT204074 I went to buy a song on iTunes and it said I have already purchased this item, but it's not in my library. Is there a way to populate songs that I have downloaded on past computers with the same apple ID?

    I went to buy a song on iTunes and it said I have already purchased this item, but it's not in my library. Is there a way to populate songs that I have downloaded on past computers with the same apple ID?

    If iCloud is available for your country, you should. Here is the article that has the steps on how you can do this:
    http://support.apple.com/kb/HT2519

  • HT4859 I used a purchased program iannotate to download, highlight and store many documents. My ipad is brocken and I m ahtinking of getting it replaced by Apple for a payment of 240 or so. Is there a way to make sure that I do not lose pdf documents in i

    I used a purchased program iannotate to download, highlight and store many documents. My ipad is brocken and I m ahtinking of getting it replaced by Apple for a payment of 240 or so. Is there a way to make sure that I do not lose pdf documents in iA?

    I am sorry that you don't find the answer to be correct. In THIS forum, telling you that you are in the wrong forum, and suggesting where to post for correct answers, or indeed any support, IS the answer.
    I'm also sorry that you purchased a phone that you are having trouble with. If the vendor cannot help you (HTC), and the eBay seller cannot help you, then you really do need to either follow up with the forums Ken suggests, or the HTC forum, or with eBay.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog:http://unlockpowershell.wordpress.com
    My Book:Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C40686F746D61696C2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • My iPhone 5 is in recovery mode but i want to save my pictures and videos! is there any way i can do that? i have a back up from 2 days ago and i don't have my iCloud sync with my photos

    is there any way i can do that? i have a back up from 2 days ago and i don't have my iCloud sync with my photo

    When restoring from the backup, whatever is included with the backup from two days ago should be restored which includes photos/videos in the Camera Roll at the time of the backup along with all other data included with the backup at the time of the backup two days ago.

Maybe you are looking for

  • Fade in on first page

    I want to fade in (not move) elements upon loading. I don't want it upon moving to other pages. I must be doing something wrong. Please help.

  • All my send out email lost in cyberspace! Pls Help!

    Hi pp, Pls help me! I believe my Mail started to behave strangely when I update the latest security patch or OSX to 10.4.5 ... am using Mail 2.0.7 now... Everything look and work fine for my mail server... I can download all email that people send to

  • .mov copy of mp4 webcam video not importing onto pp cc

    I recorded a face cam with a logitech c920. When I put it onto premiere pro cc the audio doesnt sync up to the video. I tried turning it into a mov video and it says that it cant import at all. Can you help me with this problem?

  • Abap based on object oriented program

    hi all, I am knew in OOPS as i want to make a autority object that is globally used in several reports in our several company can u provide me such kind of authority object which uses check on user name sales organization sales division sales group t

  • INstalling new sound card on HP Pavilion a1029_uk

    Hi Due to the issues raised in my other thread http://h30434.www3.hp.com/t5/Desktop-PC-Sound-and-Audio/Suddenly-no-sound/td-p/607655 I've gone and bought separate sound card (not from HP admittedly) but can't get it to install as the install software