How to override confirmation message as part of batch action?

I have created an action in Illustrator CS5 that ungroups a radar graph and deletes the axis lines. And I would like to run this action on a batch of 100 files. The problem I am having is that when I run the action, I get the following pop-up message at the ungroup command:
If I click OK, the action continues.  But, as part of a batch, it becomes a bit tedious to have to click "OK" 100 times, and it sort of defeats the purpose of running the action as a batch.
I see options in the batch window to override action "Save As" and "Export" commands, but is there a way to have the batch override this confirmation message? I suspect there may be a way to do this with a script, but I am not proficient enough with scripting yet to take that route.
Thanks for looking at my questions.
NW

One year of patience. That's commendable …
Neil, I have not done what you did, but my suggestion would be to take the Flatten Transparency command instead of the Ungroup command in your action.
You should get the same result – that is, ungrouped (expanded) graph objects – if you carefully set up the Flatten Transparency dialog.

Similar Messages

  • How to display confirmation message in SPItemEventReceivers

    Is there a way to display confirmation message in ItemAdding event?
    I would like to display confirmation message and based on user input proceed with the other steps.
    public override void ItemAdding(SPItemEventProperties properties)
      // Display confirmation message
      if(OKClicked)
     // Do something
      else
      // Cancel Operation
    Thanks in advance,
    dhijit

    http://sharepoint.stackexchange.com/questions/32055/creating-event-handler-feature-ondeleting
    http://social.technet.microsoft.com/Forums/lync/en-US/39115b48-873b-462e-aa16-a7f7ce5c91d8/sharepoint-2013-online-office-365-list-item-added-event-receiver-how-to-sow-confirmation-message?forum=sharepointdevelopment
    http://social.msdn.microsoft.com/forums/sharepoint/en-US/2941f80e-37c9-4b83-a41c-a9cc712d2e18/display-message-from-itemadded-event-receiver
    http://sharepoint.stackexchange.com/questions/65858/confirmation-message-as-a-popup-for-itemupdating-in-event-receivers
    http://stackoverflow.com/questions/11999312/popup-alert-message-using-event-receiver-in-sharepoint-2010

  • How to override confirmation fr sending sms? -urgent-

    I made an application that suppose to send an sms automatically. But it always prompts a confirmation question. How to override this? Thank you..

    This is a problem not only when sending to the few people without a data plan but for people roaming with their data connection disabled to control costs. Somehow, my iPhone can tell the other phone is an iPhone even with no data connection and tries to send an iMessage. It would be nice to be able to send a text message right away instead of waiting for the iMessage to fail or perhaps failing to notice that the "Delivered" notice did not appear.

  • How to disable confirmation message when submitting a pdf form

    How do I disable the confirmation mesage, so that the user does not get at message like " you form has been recieved"  each time data is submitted?
    The reason for my question, is that i have a pdf form that i'd like to fill out offline, store the settings (data) in an array and the when I get online again run a loop that populates the form with the values storen in my array and submits them one at the time to formscentral.
    I'm able to make the loop work just fine, however I do not want to see the confirmation message each time data is submitted,  because my loop is paused each time the confirmation message appears, and the only way to resume it, is to click "ok".
    Hope someone can provide me with some help here

    Hi,
    >>however I do not want to see the confirmation message each time data is submitted,  because my loop is paused each time the confirmation message appears, and the only way to resume it, is to click "ok". 
    Sorry, disabling the confirmation message is not possible.  The confirmation is always enabled.
    Thanks,
    Lucia

  • How to Avoid confirmation messages in midp

    Hi everybody,
    while trying to take pictures or connecting with some servlet we get following confirm messages in midlets:
    Multimedia Sna... Midlet wants to get snapshot, Is that OK?
    How to avoid from these messages ?
    thanks in advance,
    zeeshan.

    You will probably need to sign your MIDlet and request the appropiate permissions in the jad.
    Understanding MIDP 2.0's Security Architecture
    shmoove

  • How to add confirm message before submit

    How to jump confirm box before form submit?

    chan15tw wrote:
    How to jump confirm box before form submit?
    there are several ways do do that, however the underlying technology is always javascript. Please read the webreference.com tutorial "JavaScript's confirm() Method With Form Submission" here
    Cheers,
    Günter

  • Canon MP560. How to override U043 message for using scan function?

    Hi, I've no ink cartridge on my Canon MP560, at the moment.
    How can I override U043 error message for using scan function?
    I tried to push and hold stop button for at least 10 seconds but it didn't work.
    (OS: Windows 7)

    Hello Coz,
    It's been a while since you've posted, I hope you have not given up.  I was having grief with my MF4150 as well, but got it working.  There is a more current driver - search for Mac_UFRII_V230_uk_EN and install it.
    Then, when you go to add your printer through System Preferences > Print & Fax, make sure you click the "default" icon in the top of the dialog.  It should show your Canon MF 4100 series , then use the bottom drop down menu to choose your driver and select Canno MF410 Series UFRII LT (UK) from the list.

  • How to Display Confirmation message when data is stored in DB ?

    Hello.
    I am persisting user entered data to database table. But I want to display custom message like "Stored successfully" or "Not Stored".
    I am using following approach in my controller and AM impl
    in PFR:
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean) ;
    am.invokeMethod("insertDataToDeviceDetailsTable") ;
    in AM Impl :
    public void insertDataToDeviceDetailsTable(){
    getDBTransaction().commit();
    //delegating control to Device Details Page
    How to do it ? and also what is the best way to show messages in this scenario. As in some pages a dialogue box appears and the page become inactive.
    waiting for reply..
    Regards,
    Ajay

    Hi,
    You can pint message after am.invoke method:
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean) ;
    am.invokeMethod("insertDataToDeviceDetailsTable") ;
    throw new OAException("Stored successfully", OAException.INFORMATION);
    in AM Impl :
    public void insertDataToDeviceDetailsTable(){
    getDBTransaction().commit();
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to display confirm message in APEX pl/sql process

    I have a pl/sql process that selects success messages from a database table. These messages need to be displayed to the user and confirmed (only one button, to acknowledge/dismiss the mssage) along the way.
    Is there a way to do this within the process? I see lots of examples in the Forum of doing this in javascript (which I know very little about) but suspect there must be a simple way to do this in my pl/sql process.
    Help?
    Thanks,
    Carol

    Hi Carol,
    You can put you success messages inside page items or application items (when pages are rendered or processed...).
    Then using :
    1) javascript can display these values
    2) rendering the page can display these values
    Hope this help
    Louis-Guillaume
    Homepage : http://www.insum.ca
    InSum Solutions' blog : http://insum-apex.blogspot.com

  • How to read the messages from the processed Batch session log

    Hi All,
    I am posting an accounting document through FB01 by submitting the report RFBIBL00 along with the file through which a Batch session gets generated in SM35.The Batch session is then processed by submitting the report RSBDCSUB. My code is as shown below:
    SUBMIT rfbibl00 WITH  ds_name = co_file_output
                      WITH callmode = co_batch AND RETURN.
    Process Batch session
      SUBMIT rsbdcsub
        WITH mappe = gv_name_jd
        WITH von   = sy-datlo
        WITH bis   = sy-datlo
         AND RETURN
    My requirement is to capture the document number from the log of the processed batch session. Can anyone suggest me how to go about this.
    Thanks in Advance,
    Vinay B

    Hi,
    check the routine read_bdc_log_plain in program rsbdc_protocol.
    get the data from table APQL and then use the logic.
            bapiret2-id = logtable-logmessage+74(16).
            bapiret2-number = logtable-logmessage+94(3).
            bapiret2-message_v1 = logtable-logmessage+100(20).
            CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'
              EXPORTING
                id         = bapiret2-id
                number     = bapiret2-number
                textformat = 'ASC'
                message_v1 = bapiret2-message_v1
              IMPORTING
                message    = bapiret2-message.
            WRITE: (60) bapiret2-message.
    Edited by: Keshav.T on Apr 7, 2010 4:23 PM

  • How to raise Error Message in foreground through Dynamic Action?

    Hi,
    I have a requirement where I have to raise an error message in foreground so as to stop processing whenever HR_INFOTYPE_OPERATION fails to update a record in a dynamic program. I tried using MESSAGE statement but it did not work, as the error message was not displayed properly on the Infotype screen that calls the dynamic action.
    For ex.: If infotype PA0000 is calling PA0014 through dynamic action, then I want the error message to be displayed on the Actions Screen of PA0000.
    Is there any specific way to raise error messages through dynamic action programs?
    Quick answers will be appreciated.

    HI Sanjana,
    In the Substitution exits you can create the message in the configuration it self.
    You dont't need raise message explicitly.
    Thanks,

  • How can i get message telling me my batches have completed?

    I am using photoshop cs3. I like to run batch actions on various numbers of images. Is there anyway to get a popop or a messege of some kind even if a homade jpg that popups or gives me a clue that the batch actions have completed?
    thanks for any ideas

    If you are seriously interested in this functionality, you might want to get a script. I'm not into PS scripting, but it is probably just a few lines of code like this (pseudocode):
    app.runAction("myAction")
    app.execute("C:\Program Files\winamp\winamp.exe -finished.mp3")
    Needs just to be properly fleshed out, so I'd ask on the respective sub-forum.
    Mylenium

  • How to get the User input of Dynamic Action confirmation message ?

    Hi Guys,
    I'm using apex 4.1,
    I have added a confirmation message box as page Dynamic Action. How can i get the user input of that confirmation pop up ?
    Thanks

    Hi,
    you don't directly get the user input. But you should still be able to get what you want. Let's assume you have a dynamic action which fires for a "Change" (or any other) event and which has two or more actions
    1) Confirm
    2) Execute PL/SQL Code
    If the user clicks Cancel/No in the confirm dialog, APEX will stop the execution of this dynamic action and not run "Execute PL/SQL Code".
    Hope that helps
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • How to display a confirmation message to the second stage approver.

    Hi,
    I am working on an application which involves 2 stages of serial approvals. After the first stage approval, the request is forwarded to the second stage. When the second stage approver approves the request, the workflow proceeds with the user creation. I would like to let the second stage approver know about the status of user creation after he clicks the approve button. It can be just a simple message saying that the user creation has been successful or unsuccessful.
    My question is how is it possible to show this confirmation message to the second stage approver after the user creation process?
    I tried to use manual action. But it is not working(probably because the owner of the workflow is different from the second stage approver). Is there any other way to implement this?
    thanks,
    manoj.

    It is really simple to implement, you have to just write another manual action to second supervisor after user creation and pass the result to manual action.
    Hoping you are tried to create simple user with out assigning so many resources otherwise it will take time to load.
    Please let me know if you face any issue to implement.

  • How to send image as a part of message rather than as an attachment

    Dear All,
    I have to configure one scheduler job to send html message containing image.
    I went through couple of posts in the same thread list and I could send email but in all approaches image is being sent as attachment.
    Can somebody guide on how to send within message itself?
    Sample code will help a lot.
    Thanks
    -Ashish

    Dear Billy,
    Thanks for putting in a clear way. I hope now I could understand what you were trying to say. :)
    I generated output in accordance with your format. I also got transferred content printed, still outlook is showing red cross.
    Can you please verify below and let me know what could be wrong?
    MIME-Version: 1.0
    To: [email protected]
    Content-Type: multipart/related; boundary="a1b2c3d4e3f2g1"
    Content-class: urn:content-classes:message
    --a1b2c3d4e3f2g1
    Content-Type: text/html;
    <html>
    <head>
    <title>Test HTML with Embedded Image-chk latest</title>
    </head>
    <body>
    Test HTML with Embedded Image-chk latest
    <p>And here it is:</p>
    <img src=3D"cid:[email protected]">
    <p>The end.</p>
    </body>
    </html>
    --a1b2c3d4e3f2g1
    Content-Type: image/png; name="image001.png"
    Content-Transfer-Encoding: base64
    Content-ID: <[email protected]>
    Content-Description: image001.png
    Content-Location: image001.png
    iVBORw0KGgoAAAANSUhEUgAAAVQAAADsCAMAAAAcoq4rAAADAFBMVEUAAAABmf5/
    nbkZR3vpoZ/VQh/0+f6qoWaKGR56enryohyIq97T4vr35uYGWp7apyCq1P+WnMZz
    grW2cXOVqLyGxv7s6dgdn/VaY3TW2N6UobPw0YE+daK7jR6FZyPir62EnMtYQUSV
    xvaFhYVBqf/sWysEOXn22HwBd8qtHh7Zuobqt7iwo4V4pty0wtbKysr/tVq4wszA
    WlzekFoUYeDkgnu0uMBonc3syTCdjKi3uL0/wP2bFxq5gTFsabjmcGI2SmSSgq7O
    5vOqkJuhut3VoHr0jDf+q1ThZlYmXpjAxoAZgKuPfaXS6f6gYixCk+Cgy/bcySS6
    ODI/q/P2xDztynwIt/9Y0v+1tbUBb8C3nDtXfoTs7vHM2vr97alwHyG6iHpuUgnk
    8f/Nm6DaXE6faSDmmVTllynk5Ob/n3hFyf+mtcv2wDP19PScOzaLr+TRUUbd48br
    hToESIjIOxxCia42fs+wtlW5yvOcnJyHqdyOlKCmvu4kl/2xxfG1l5PD4P7wzCp/
    ibT422YXceC3fVOqs/XauDb59/asrKwCW7b/h1Ziv/yl0/7JRjzMz9T/z3a2KCam
    hpSTlsGaWzJvNChlbn73bTX/lknXd3aMq86Ap+dxeor/3ZmPj4/g3993tOqZqL7K
    iyqr0vYlnNqYksJuXia/a27c4+vaoTqNcTIchMTc6/2LjripPEGsvdOYptO7MSx3
    lK+WtOHikIu02f9Tq/bDxckKUZbpyMnBkH0hSmvCnJV9lciwvc1kdY1vfK774ISL
    kbaapMipsF6Zy/xjQy5Qsv0Vc8O5YDGaeB5SjbCyNRPs8/2mFhfT3eeDGCD6+PaU
    GBz2sRq9jSonapoYtv/M5v//vCfkwoCBnbaEotZ6pOnh6vDa5vv/j0aKgbb7wGPL
    g4GswvD///+ErOZ0qObZk2Ccqti3g3B6j8LDPTasl6zi7PzXZ16qsLuXpNJ2iLtE
    pve6ulGUkYu83P7nxij/dji9vb3kaFq6vcX09/7bSSKywth+h5eiFhgOjrQiAAAA
    AWJLR0TkL2I7KQAAAAlwSFlzAAAOxAAADsQBlSsOGwAADC5JREFUeNrtnQmAHEUV
    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
    RK5CYII=
    a1b2c3d4e3f2g1
    Regards,
    Ashish

Maybe you are looking for

  • Problem in the configuration of debit memo issue with manual entry of freight

    Dear Seniors, i am facing an problem in the creation of a debit memo, i want to generate the debit memo with reference to billing but the entry of freight would be manual, but while doing this it will also took the billing material prices to and the

  • Memory leak in solaris 2.5.1

    Hi, I have a multithreaded application running under Solaris 2.5.1 , all created threads are dettached , but even after i call pthread_exit() function, the allocated memory is not freed up, is it normal ? Solaris only freed up the allocated memory wh

  • Use as external monitor?

    Hello, i don't have much room in my livingroom and want to use my iMac 27-inch, (Mid 2011) as a external monitor for my ps3, is this possible?, as i remember it was in earlier models 2009 something with Target Display Mode but im unabel to find a sol

  • Invalid User Name and Password after changing the sa Password

    Hi All, I've Installed SAP 9.0 PL 05 ,while installing I've given database details as User Name : sa Password : abcd Installation got success and I could able to log in to listed companies. But, after I've changed sa user Password in SQL Server i.e U

  • 10.4.11 XServe and IP POrts locked

    Ciao to all. Let me share this strange thing. On my XServe I have4 eth interfaces; one dedicated to internet ( only for mail and www) and the orthers for internal use. Also I have few services activated: AFP, print service, dns (secondary),windows se