Disable iMesssage message delete confirmation?

How do I disable the confirmation pop-up when I chose to delete a message in iMessage. I seem to have gotten this to work on one computer, but unable to replicate across other computers.
Thanks in advance!

The name of the button doesn't matter. What does matter is you have to have a place to put the event (a formValue element). The following uiXML illustrates:
<page xmlns="http://xmlns.oracle.com/uix/controller">
<content>
<stackLayout xmlns="http://xmlns.oracle.com/uix/ui">
<contents>
<script>
<contents>
function warning()
if(confirm("Are you sure?"))
submitForm('viewForm',1,{'event':'deleteEvent'});
return false;
return true;
</contents>
</script>
<form name="viewForm">
<contents>
<textInput name="ti1name" id="ti1ID"/>
<formValue name="event" id="event"/>
</contents>
</form>
<button name="deleteButton" text="send delete event"
onClick="return warning();" />
</contents>
</stackLayout>
</content>
<handlers>
<event name="deleteEvent">
<null/>
</event>
</handlers>
</page>

Similar Messages

  • Provide message deletion confirmation when more than X is selected

    Problem: Trying to delete a single message permanently (i.e. ctrl+del) my finger slipped and somehow ended up hitting ctrl+end and del, wiping out my inbox (got a backup, so we're good).
    Request: Provide an option to a) confirm deletion and b) only when X number of items are selected.
    So if I happen to select (accidentally or on purpose) 10000 emails, I would certainly like confirmation
    but if only deleting one don't want to be nagged every time.
    Let's add some piece of mind to Thunderbird dear Mozilla devs!

    better than the backup is the undelete add-on https://nic-nac-project.org/~kaosmos/index-en.html#recDelMsg
    As long as the folder has not been compacted you can recover everything.

  • Delete Confirm Message

    Hi All,
    How to create delete confirm message in Webdynpro ABAP.
    Regards,
    Arun

    Hi Arun,
    If you want to create the confimrmation message for deletion option follow the code here to create a window which will display a popup to the user for confirmation with 'YES' and 'NO' buttons.
    DATA:
        api_component TYPE REF TO if_wd_component,
        window_manager TYPE REF TO if_wd_window_manager,
        window TYPE REF TO if_wd_window.
        api_component = wd_comp_controller->wd_get_api( ).
        window_manager = api_component->get_window_manager( ).
        DATA : msg_tbl TYPE string_table,
               wa_msg LIKE LINE OF msg_tbl.
        MESSAGE w120(mmw_adm_mon) INTO wa_msg. "get the message you want to display in the *popup from a message class
       APPEND wa_msg TO msg_tbl. " append that to msg_tbl
        window = window_manager->create_popup_to_confirm(
                       text            = msg_tbl
                       button_kind     = if_wd_window=>co_buttons_yesno "4
                       message_type    = if_wd_window=>co_msg_type_warning "5
                       window_title    = 'Confirmation'
                       window_position = if_wd_window=>co_center )."#EC *
        DATA: view_controller TYPE REF TO if_wd_view_controller.
        view_controller = wd_this->wd_get_api( ).
        DATA: button_text TYPE string,
              tooltip TYPE string.
        button_text = wd_assist->if_wd_component_assistance~get_text(
      '026' ).
        tooltip = wd_assist->if_wd_component_assistance~get_text( '111'
        CALL METHOD window->subscribe_to_button_event
          EXPORTING
            button            = if_wd_window=>co_button_yes "6
            button_text       = button_text
            tooltip           = tooltip
            action_name       = 'ON_YES'
            action_view       = view_controller
            is_default_button = abap_true.
        button_text = wd_assist->if_wd_component_assistance~get_text(
      '027' ).
      tooltip = space.
    *          tooltip = wd_assist->if_wd_component_assistance~get_text( '040'
        CALL METHOD window->subscribe_to_button_event
          EXPORTING
            button            = if_wd_window=>co_button_no "7
            button_text       = button_text
            tooltip           = tooltip
            action_name       = 'ON_NO'
            action_view       = view_controller
            is_default_button = abap_false.
        window->open( ).
    and create the action methods ON_YES and ON_NO to handle the events.
    Regards,
    Anil kumar G

  • Identify OK or cancel is clicked by user in Delete Confirmation message

    Hello,
    I am using oracle APEX 3.2 ;
    Can anyone please help me out with this issue. I want to identify whether OK or cancel button is clicked for the delete confirmation message when the delete button is clicked by the user. I am using the javascript
    confirmDelete(htmldb_delete_message,'DELETE'); message for deleting a record. I have an alert message popped out after delete confirmation appears. Below is the javascript function which does alerts the user.
    function deleteProcess()
    alert('Successfully deleted the record. Please click OK to close popup window and \n refresh the parent window.');
    window.close();//close the popup window
    window.opener.doSubmit('REFRESH');
    //call doSubmit function on the parent window to cause the page to refresh.
    For the delete button; I have set the target: URL and
    URL target: javascript:confirmDelete(htmldb_delete_message,'DELETE');deleteProcess();
    By my problem is deleteProcess() function is executing even if I click cancel button on the delete confirmation message.
    So, can anyone please help me like how to make the function deleteProcess() conditional ; I mean alert message should be popped out only when user clicks OK on the delete confirmation message.
    Thanks,
    Orton

    Hi Orton,
    Unfortunately confirmDelete() returns no value to test on (shame - that value can be very useful). As a work-around, replace your URL target with this:
    javascript:if (confirm(htmldb_delete_message)) {doSubmit('DELETE'); deleteProcess();}Hope this helps,
    John
    If you find this information useful, please remember to mark the post "helpful" or "correct" so that others may benefit as well.

  • SRM - Delete confirmation (service entry sheet)

    Hi,
    we have the 5.00SRM.
    The user tried to post twice the same confirmation (service entry sheet) so the system replicated the first one in R3 and the second is in error for the Purchase order lock (message class SAP-T100 message-id BBP_ADMIN 010).
    It's right that the second is in error (Luckly!!!), but now we don't know how delete it (the second wrong confirmation), because in the confirmation transaction the delete button is inactive. Now the user need to create a new confirmation for the same purchase order, but since now all the confirmations for that purchase order go in error.
    Please, help me ... I looked all SAP notes and forum messages but I didn't find the solution.
    Thanks
    Lara

    Hi
    Which SRM scenarion and version are you using ?
    <u>Seems to be some bug in the system (Either due to wrong implmentation of some OSS note or some other reasons).</u>
    <b>Anyways, better to raise an OSS message with SAP as well.</b>
    <u>Refer to following OSS notes.</u>
    <b>535765 Too many entries in BBP_DOCUMENT_TAB
    1028584 You cannot delete confirmations that are in approval process
    863198 Confirmation screen is locked on click on delete button
    668829 Error when deleting held goods receipt confirmations
    852327 Disable Deletion of Confirmed PO Items
    994529 Conf can be deleted despite error in DOC_CHECK_BADI
    778489 Partial confirmations for back-end service purchase orders
    602973 Duplicate error messages during confirmation
    499917 EBP: deleted return delivery: BBPERS creates no invoice
    786051 Deleted service lines are checked
    515754 Deletion of held confirmation documents in back-end case
    355138 Cancellation of goods receipt/service confirmation
    430660 Deletion, change, return delivery possible after return</b>
    Hope this will help.
    Regards
    - Atul

  • Undo Message Delete command is sometimes present, sometimes not

    I've noticed that sometimes the Undo Message Delete command is present after I delete a message
    but other times it isn't - all that's there is Undo which is greyed out. Does anyone know the conditions
    under which the Undo Message Delete command appears? I haven't found any consistent pattern.
    I know the message can be manually moved back from the Trash but I've found that occasionally I've inadvertently
    deleted a message without knowing which message it is which makes it rather hard to find in the Trash.

    Open your firewall program. First check the settings. Make sure that the
    program is set to tell you if a new program wants access to the web. Then
    go to the list of programs the firewall has. Make sure that all the programs
    you want to access the web are set to '''ALLOW'''. If it is set to '''AUTO''', the
    firewall may not allow access.
    ====================================
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • What exactly does disabling Group Message accomplish?

    I understand that, as of now, there is no way to remove yourself from a group message. However, I have a few questions about disabling group message in settings.
    For instance, a friend sent a few of us a text about another friend. On my iPhone 4, I have group message disabled so my questions are:
    1. If I reply for the person who sent the text, will EVERYONE see that text? Whether it be today or tomorrow? I have a long thread of messages with the original sender and I really don't want to delete the conversation.
    2. If I send a text to someone who was also in the text, not the original sender, will everyone sent the message see my text? I've gotten texts from other people who were added in the conversation but not sure if when I reply to them, is it just THEM or everyone?
    I'm not a fan of group messages and I'm always paranoid responding to people.

    You can only sync the iPhone to 1 itunes library on one computer.
    Erase and sync means just that-it will erase all content on it and sync it to the new computer.
    As for the other stuff-no idea. Sorry, I don't use microsoft stuff.

  • How do I disable video messages?

    I do not want people to be able to send me video messages.  They serve me no purpose and waste space on my hard drive as I cannot find a way to delete them.  So is there any way to disable video messages being sent to me?  Also, is there any way to delete the ones that have already been sent?

    I stand corrected. That's good to know. Thanks. I also found an option to prevent them from being embedded into the chat which is nice. I still would like to disable them, but given this new information, the issue is far less important.

  • How to load the resource bundle message on confirmation popup

    hi every one
    i am using java script confirmation message on my delete button.
    this is my sample for that one
    <h:commandButton action="#{createCurrency.removeCurrency}"
             onclick="if (!confirm('Are you sure to delete this value?')) return false" value="#{messages.Delete}"/>    i need to load the "Are you sure to delete this value?" from resource bundle.
    is there any way to load above message from resource bundle.
    thiagu.m

    If you're using JSF 1.2, you can add the bundle config in your faces-config.xml file like this:
    <resource-bundle>
       <base-name>mypackage.i18n.MessageResources</base-name> // i18n is shorthand for internationalization
       <var>msg</var>
    </resource-bundle>     
    <locale-config>           
       <default-locale>en</default-locale>  // or whatever locale you preferred 
       <supported-locale>...</supported-locale> // other locale defined here if you need them
    </locale-config>Then create a property file called "MessageResources_en.properties. In this file, you can define something like:
    {code}
    MSG_CONFIRM=Do you wish to delete this value?
    // add other messages here. Syntax is: key=value
    {code}
    Then reference the bundle's message in your form as per normal:
    {code}
    !confirm(#{msg.MSG_CONFIRM}))
    {code}
    I haven't tried the above codes but it should help you get started.
    Edited by: icepax on 13/11/2009 19:44

  • Eliminating delete confirmation dialog

    Is there any way to eliminate the delete confirmation dialog in Finder? When I remotely browse the files on my iMac from my MacBook, I occasionally want to delete one. But I always get the popup dialog "Are you sure you want to delete the selected items?"
    Of course I'm sure. Besides, I have backups if I need them. How can I eliminate this nag message?
    Thank you!

    Press Command-Option-Delete
    http://www.macworld.com/article/143594/2009/10/networkdelete.html
    Message was edited by: Martin Pace

  • Delete confirmation dialog returned on its own

    I have Confirm Delete disabled in my email general settings and my email reconciliation settings for all my accounts set to delete emails on the device without prompting. However, starting today, when I select more than one email, text, etc. to delete, it pops up the delete confirmation prompt.
    I have pulled the battery, deleted browser cache and run the memory cleaner. This didn't rectify the problem.
    Help appreciated.
    Curve 8330, OS 5.0.0.438
    BlackBerry Curve 8530
    OS: 5.0.0.937
    Carrier: Boost Mobile CDMA
    16 GB microSDHC card installed

    Then it simply cannot be a settings issue as you have done everything right in that sense. If it started today and you restored to a backup from last week, we can also rule out any recent changes to device. I have been researching this for a while and cannot seem to find anyone else who has had this same problem (with 5.0 at least). My suggestion would be this; Backup all your data anew, reinstall your OS via Application loader (should also wipe your phone), test, then restore your settings. This will allow us (if nothing else) to rule out a possibility of file corruption or incompatability with an app... Keep me posted as I am still looking  
    1). Please thank those who help you by clicking the beside the 'Reply' button.
    2). If your issue has been solved, please resolve it by marking "Accept as Solution" on the correct post!
    3). Remember to have fun! We are all in this together!
    4). Follow me on

  • How to permanently disable this message: "Press Esc to exit full screen." (by Adobe Flash Player) in Mac's Safari Browser?

    Hello everyone,
    I have been searching for sometime (without any success) for a solution to permanently remove this annoying message: "Press Esc to exit full screen."
    Whenever I go to full screen mode, watching any video on YouTube, BBC, CNN (or many other websites which use Adobe Flash Player for streaming video) I have to bare seeing this message for several seconds until it fades away. Seeing this message once or twice would have been okay, but as we all watch many videos on a daily basis on internet, after weeks, months and now years seeing this message over and over again many times every day, it becomes very annoying, and I find myself rewinding many videos to their beginning after this message fades away to be able to watch it from the beginning without anything obstructing it!
    Does anyone know how to "permanently" disable this message from appearing?
    I am using the latest version of Safari 6.0 on the latest version of OS X (Mountain Lion 10.8.1), and have the latest version of Adobe Flash Player (Plug-in version 11.4.402.265) installed on my new MacBook Pro 15" with Retina Display.
    Thanks,
    Ally
    Thursday, September 13th, 2012

    Thanks Carolyn,
    I am attaching a screenshot here for you to see that this setting was already set to what you suggested. I didn't need to change it as it was like this even before I post this message.
    So the problem still presists and unfortunately your suggestion is not a solution to this probelm.
    Last night I did more reseach and found a discussion in Adobe website, it seems a lot of other people have the same issue, and even started a discussion in Adobe website about it. But unfortunately Adobe refuses to address it and enable the end user at least to have an option to turn this message off from displaying permanently on his/her computer.
    I am writing down the url links for the two posts regarding this issue on Adobe's website:
    Link #1: http://forums.adobe.com/thread/921270
    Link #2: https://bugbase.adobe.com/index.cfm?event=bug&id=3058752
    Hopefully more people will get involved and ultimately we will either get Adobe's attention, or someone will find a "hack" and post it here for all of us. I have found some suggested "hacks" for Windows environment (you can simply google it, I am sure you will find them too). But so far I haven't seen anything for Mac's Safari browser.
    Cheers,
    Ally
    Thursday, September 13th, 2012

  • How do I DISABLE text message forwarding between my iPad and iPhone?

    I want to DISABLE text forwarding from my iPhone 5 (IOS 8.1.1) to my IPad 4 (IOS 8.1.1) but....I have already tried the following (so PLEASE do not make these suggestions):
    I want to be able to text from my iPhone and those text messages (either SMS or iMessage) NOT go to my iPad.  BUT, I want to also text from my iPad and those messages NOT go to my iPhone.  I want the text messages to stay on each device independently. 
    Since I still want to be able to text from my iPad, I do NOT want to turn off iMessage.  If I turn off iMessage, I cannot text from my iPad.
    I disabled HANDOFF
    I disabled TEXT MESSAGE FORWARDING (from my iPhone)
    Creating a new Apple ID is not an option since there is other data that I need between devices.
    Having followed these steps, I still cannot stop the texts from forwarding between devices.  Any ideas?

    On your iPad, can you deselect your phone number as an option in Settings>Messages>Send and Receive at and then add an email address at which you can be reached? My iPod Touch is set up to use an email address (I have 6 email accounts) and the messages on my iPod do not sync with my other devices.
    I Do have to say that it has been ages since I set up the Touch for Messages, but I am running iOS 8 on it. I can't remember if I had to sign out of messages and start all over again on the touch in order to deselect the iPhone number.

  • I cannot open any of my Hotmail e-mail messages, delete them, look at other ones, nothing. All I can do is sign in and that is it.

    I cannot open any of my Hotmail e-mail messages, delete them, look at other old ones, nothing. All I can do is sign in and that is it. I have tried deleting cookies, clearing the cache space, rebooting the computer, rebooting my internet connection, refreshing the page several times. Here is the thing. I can get on the page and read my mail, etc. like normal if i use Internet Explorer, but I prefer Firefox. The problem is Firefox and I rely on my e-mail for job purposes. I hope someone can help me!!!

    Nevermind. I finally found a third party answer and will post it for anyone else with my problem.
    >Go to the iTunes store.
    >Halfway down the page, right hand side, says account
    >Under account it says purchaced, select that
    >Wa-la

  • Disable or Deactivate Delete Button in SAP Easy DMS.

    Dear All,
    My client is using Easy DMS and is working fine. Now the issue is as soon as files become more in Private or Public folder he is Deleting Documents using DELETE Button which is available on the Tool Bar. Whereas if he uses Delete Document from Context Menu it shows Authorization is not given to delete the Document.
    Is there any way to overcome this by Disabling or Deactivating Delete Button on the Toolbar.
    rgds,
    Dayanand

    Dear Anubhav,
    I have already tried this option. It shows this can not be implemented.
    Please let me know any other option is there to overcome this issue.
    rgds,

Maybe you are looking for