Is Is the option: "Do you want to save this session?" gone? I can't find it anywhere in options.

When one closes the Firefox browser in 3.xx versions, if the "warn me about closing multiple tabs" button is enabled, option listed as the following question: "Do want to save this session?" would be given as "yes" or "no". This provided the convenience of opening the browser with all the original tabs from the last session: a VERY usable option. It is nowhere to be found with 4.xx versions. If it was removed please re-install with the next upgrade release. If its still available, tell me how to enable it. Reese

Firefox now always stores the old session, and you can access it by going to the History menu and selecting "Restore Previous Session"
If you want Firefox to display the message to save the session, it can be turned back on by changing some preferences.
# Type '''about:config''' into the location bar and press enter
# Accept the warning message that appears, you will be taken to a list of preferences
# Locate the preference '''browser.tabs.warnOnClose''', if its value is set to '''false''', double-click on it to change its value to '''true'''
# Repeat this for these 3 preferences '''browser.warnOnQuit''', '''browser.warnOnRestart''' and '''browser.showQuitWarning'''
If you always open the last set of tabs, an alternative approach is this:
# Click the orange Firefox button, then select options to open the options window
# Go to the General panel
# Change the setting "When Firefox starts" to "Show my windows and tabs from last time"

Similar Messages

  • HT1657 I rented a movie a few hours ago and never finished it.  I can't view it on my Apple TV nor on my Computer.  When I go to rent it again it says you have already rented this movie, but I can't find it anywhere.  How do I watch the remainder of the r

    I rented a movie a few hours ago and never finished it.  I can't view it on my Apple TV nor on my Computer.  When I go to rent it again it says you have already rented this movie, but I can't find it anywhere.  How do I watch the remainder of the rental?

    I had the same issue with my apple tv 3rd generation. I rented Sinister and selected the "rent and watch now" option. Half way through the movie I accidentally pressed the menu button. When I looked for the rented movie on my apple tv I could not find it. Not even above the movie pannel where "purchased" and "top movies" comes up on the main menu. the apple tv suggests to go to settings>downloads but I don't have that option. I did go to settings> itunes store> check rentals but that didnt work either. It took too long to even check. Thank you because this SOLUTION worked great.
    SOLUTION: How to reset apple tv 3 3rd generation to view rented movies:on the apple tv remote: press and hold "menu" to go to the main menu. Select SETTINGS> GENERAL >RESET >RESET ALL SETTINGS. After the apple tv resets, input all your information again and your rented movies should be visible when you cruise above the "movies" section. THANK YOU!!
    Apple needs to solve this issue because honestly it took me 3 hours and a half to watch a movie that only lasted 2 BECAUSE I wast trying to solve the issue, reseting and all. blahh.

  • How to override the dialog "Do you want to save" while closing the form?

    HI
    I have two blocks on the form.Master block is based on a view wheres the detail block is populated by a procedure.
    Even if the user doesnot change any record and trying to close the form it is still showing the default "Do you want to save" with three options save,discard,cancel as choices.How can we prevent the form displaying that if the user is closing the form with out any uncommited changes.
    Thanks in advance.

    Read this thread about the affects of post-query and when-validate triggers:
        Message Do you want to change the changes you have made? caused by a lov

  • When closing the Form "Do you want to save changes" window

    Hi
    I have a Master-Detail form where in my POST-QUERY trigger i am changing the LOV non-database item field to some value. When I just select Master record(NOT in query mode) my detail records pop up in the detail block. This is done by EXECUTE_QUERY in WHEN-NEW-BLOCK-INSTANCE trigger in Detail Block. But when i close the form it asks me to save changes even though i haven't changed anything. I have this statement in POST-QUERY Trigger
    SET_RECORD_PROPERTY(:SYSTEM.TRIGGER_RECORD,:SYSTEM.TRIGGER_BLOCK,STATUS,QUERY_STATUS); This issue does not happen in QUERY-MODE.
    I tried both Set_Item_Property('BLOCK.CODE',ITEM_IS_VALID,PROPERTY_TRUE); this property in the POST_QUERY and Set_Item_Property('item_name',VALIDATE_FROM_LIST,PROPERTY_TRUE); in QUERY-MASTER-DETAILS trigger but it didn't work.
    please help
    thanks

    Hi!
    I think, beause the message "Do you want to save the changes ..." has no error number,
    you will not get to catch it on a form level on-message-trigger.
    Better find out, why the record status changed.
    - Look to a post-query trigger that fills or changes a database item
    - change the Validate From List item Property to No
    - check for a when-validate-item or post-change trigger on items with a lov that has the Validate From List item Property set to Yes
    Regards

  • Suppress the message do you want to save the changes you have made

    hi all
    i have written a rollback
    it clears my record
    but gives me the message
    do you want to save the changes you have made
    i have written
    :system.message_level :=25;
    rollback;
    :system.message_level=0;
    but still it is giveing me the message
    can you please tell me how to suppress this message
    please help me
    thanks
    mandar

    try in reverse

  • Show the alert 'Do you want to save the changes? after entering each record

    Hi,
    Is there a way to show the alert 'Do you want to save the changes you have made?', after entering each record.
    i.e. as soon as a record is entered, user should be prompted to 'Do you want to save the changes?' the record when they move to the next record.
    I used the below code in Post-Record rigger. Prompt was diplaying fine as per the requirement,but record was not being saved.
    DECLARE
    n_button_selection INTEGER;
    BEGIN
    if :System.Record_Status='INSERT' then
    fnd_message.set_string('Do you want to save the changes?');
    n_button_selection := fnd_message.question('Yes', 'No','Cancel', 1, 2,'question');
    IF n_button_selection = 1 THEN
    forms_ddl('commit_FORM');
    ELSIF n_button_selection = 2 THEN
    RAISE form_trigger_failure;
    ELSE
    NULL;
    END IF;
    end if;
    END;
    I used forms_ddl('commit_FORM') to commit the record. Because we can't us Do-key('commit_form') in post-record trigger. But forms_ddl('commit_FORM') is not working. So can anybody please give some idea regarding this.
    --

    Forms_ddl issues dynamic sql - you cannot call another builtin (like commit_form) within forms_ddl. Check form_status after the call and you will see that it failed.
    Moreover, forms is not able to execute the post and commit process if you issue "forms_ddl('commit');", so this will not be a solution either.
    You could use the When-New-Record-Instance - Trigger, which allows restricted built-ins to be executed, and issue do_key('commit_form');". However, you would have to check the :system.block_status or :system.form_status, because :system.record_status will already hold the new record number.
    Regards,
    Gerd

  • How to enforce the message "Do you want to save changes?"

    Hello,
    How to enforce the message "Do you want to save changes?" when the user attempts to close a form after checking a non-database item (check-box).
    All the other database items in the block are not updateable and only viewable.
    After checking the non database item check-box, if the user tries to commit, then the system is saving the changes and call the appropriate procedure on save.
    But if the user tries to close the window without committing, the form is not showing the message "Do you want to save changes?" since the check-box is a non database item.
    How to enforce the message "Do you want to save changes?" in this scenario when the user tries to close the window?
    Thanks in advance.
    Cheers
    Sri

    This is a fairly common question in the forum. You will need to override the default exit form process and check to see if the checkbox is checked. You can do this in the Key-Exit trigger. For Example:
    DECLARE
      al_id     ALERT;
      al_button  NUMBER;
    BEGIN
      IF ( CHECKBOX_CHECKED('YOUR_BLOCK.CHECKBOX_ITEM') ) THEN
         /* Display an Alert here that asks, "Do you want to save changes?" */
         ...code here to set the properties of your alert...
         al_button := Show_Alert(al_id);
         IF ( al_button = ALERT_BUTTON1 ) THEN
            --YES
            /* Perform COMMIT Processing here...*/
         ELSIF ( al_button = ALERT_BUTTON2 ) THEN
            --No
            Exit_Form(NO_VALIDATE);
         ELSE
            --Cancel
            RAISE Form_Trigger_Failure;
         END IF;
      ELSE
         Exit_Form;
      END IF;
    END;If you need more help with the Alert, please check out the SHOW_ALERT topic in the Forms Help.
    BTW, what happens if all the user does is check the checkbox? No other changes have occured. What changes are you trying to process?
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to remove the warning "do you want to save changes to investigation.pdf before closing"

    Issue: To remove the warning "do you want to save changes to investigation.pdf before closing"
    I have created a XFA pdf file(using LC Designer 8.2) to display this issue
    I am not able to attached the PDF. Without attaching the pdf it would be difficult to explain.
    click event js:
    function activateUser() {
      var PDFVersion=xfa.host.variation+xfa.host.version;
      xfa.host.messageBox("button click event registered");
      xfa.form.form1.sendForm.welcomeMsg.presence = "invisible";
      xfa.form.form1.sendForm.successMsg.presence = "visible";
      event.target.dirty=false;
    docReady event js:
    function displayInfo(){
    var res =xfa.host.variation;//Added this line to display the successMsg
    //xfa.host.messageBox("docReady event registered");
    xfa.form.form1.sendForm.welcomeMsg.presence = "visible";
    xfa.form.form1.sendForm.successMsg.presence = "invisible";
    docClose event js:
    xfa.host.messageBox("docClose event registered");
    event.target.dirty=false; 
    Steps to get the warning:
    1) Open the attached pdf using Acrobat Professional.
    2) Click the Confirm Enrollment" button
    3) Now close the document & the acrobat gives a warning "do you want to save changes to investigation.pdf before closing"
    Summary of the XFA pdf:
    It has two text fileds. On docReady event field A is made visisble & field B is made invisible.
    On button click event the field A is made invisisble & field B is made visible.
    On closing the pdf it should not throw this warning message.
    My Efforts:
    1) Found a property in adobe js docs.
           event.target.dirty=false;
    It doesn't solve the problem.
    2) I tried to put this logic in almost all the events listed in designer but I am not able to resolve the issue.
    Please help me resolve this issue.

    I tried putting the below 2 lines of code at the end of button click event & docClose event.
          event.target.dirty=false;
          event.target.requiresFullSave=false;
    It still gives the warning.
    Also I tried to found out the line of code which is making the pdf dirty.
      xfa.host.messageBox("is doc dirty (before displayInfo's visible-invisible work): " + event.target.dirty);
      xfa.form.form1.sendForm.welcomeMsg.presence = "visible";
      xfa.form.form1.sendForm.successMsg.presence = "invisible";
      xfa.host.messageBox("is doc dirty (after displayInfo's visible-invisible work): " + event.target.dirty);
    The doc got dirty when the successMsg field is made invisible.
    Problem I am trying to solve is:
         To display a welcome message before user action and after user action wants to display a success message.
         I follwed the visible & invisible approach & it wokred but gives me a warning on doc close.(Highly imp to avoid it)
    Is there any other approach I could follow here.

  • I have been uploading my old cd's to iTunes and it worked fine. suddenly it will not show the window "do you want to load this cd" What have i done wrong ?

    i am a new boy to itunes and have been loading my old cd collection.
    Mostly it goes fine - AS LONG  as the window "do you want to upload this (Elvis) cd to itunes" appears.
    Then it just will not appear, so i can't do anymore.
    I've quit itunes, ejected the usb from my Mac mini and started over but zip - nothing
    Result total confusion
    Any offers for a solution would be MUCH appreciated - especially if it's in simple English. I'very new to Mac too.
    Tks

    for purchases from the iTunes store do this:
    connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    for everything else check out this post by Zevoneer.

  • Suggestion: iPhone when locked should ask the passcode if you want to turn it off. We can locate if steel by someone if they cant turn it off. Also they should put a kind of security so robbers cant take the SiMCard out easily

    Suggestion: iPhone when locked should ask the passcode if you want to turn it off. We can locate if steel by someone if they cant turn it off. Also they should put a kind of security so robbers cant take the SiMCard out easily

    Belander wrote:
    Suggestion: iPhone when locked should ask the passcode if you want to turn it off. We can locate if steel by someone if they cant turn it off. Also they should put a kind of security so robbers cant take the SiMCard out easily
    Do a search in this forum about forgot passcode or phone is disabled because of forgotten passcode.
    See how many threads there are for that, now imagine if what you want happens, how many threads do you think we will have about not remember the passcode.
    Bad idea.

  • I downloaded an AudioBook onto my iPad due to battery life.  Now I want to have it on my iPhone which is one of the appliances that is authorized for my icloud account, but I can't find it anywhere.  What gives?

    I downloaded an AudioBook from iTunes onto my iPad due to battery life.  Now I want to have it on my iPhone which is one of the appliances that is authorized for my iCloud account, but I can't find it anywhere other than the iPad.  How do I get access on my iPhone?

    It will only be where you put it.
    If it is on the ipad then transfer it to your computer, File>Devices>Transfer Purchases, then sync it to your iphone

  • How to avoid the message "Do you want to save the changes you have made?"

    i have 3 forms
    master block
    detail1 block of master
    detail2 block of detail1
    when i go out of detail1 and detail2 blocks after doing some modifications it asks me "Do you want to save the changes you have made"?
    i want to avoid this message as well as my changes should be posted in the database. what is the solution for this big pblm?

    hi
    may be you are trying to modify the database item or reassigning the database item value which is not actually needed.
    try to comment the reassigning database values
    and give clear_form(do_commit);
    most probably u will not get the message again
    Regards
    Rajdeep .A

  • Disable the prompt "Do you want to save the chnages you have made?"

    Hi,
    I have a forms application with some text fields on it.
    After the data is displyed on the text fields from the
    database, one of the text fields gets highlighted
    automatically, even though I have not selected it
    manually.
    When I close the forms window, I get the
    message prompt "Do you want to save the changes
    you just made?",though nothing was changed in the
    text fields.
    Can anyone help me get rid of these implicit forms messages?.
    Thanks
    sharath

    Hi
    After the data is displyed on the text fields from the database
    Are you displaying data through querying the base table through execute_query (or similar built-ins) or are you populating the block programatically?
    In case you are querying the record, then form should not display save confirmation dialog box.
    If you are populating the data block programatically and if the block is a database block then try including this as the last statement of your populating logic: -
    set_record_property(:system.cursor_record,<block_name>,status,query_status);
    Regds
    Sumit

  • Where has 'do you want to replace this file' gone when copying items in lion?

    Hello, can anyone tell me if I can still have the option when copying items from one folder to another to be asked ' do you want to replace this file' instead of only having the new options to: stop / keep both / or replace all?  thanks for your help.

    If you don't mind losing them, it's all right to do it.
    Maybe you just want to delete them instead?
    Or do you mean you want to replace the faulty one in your Projects folder with a correct one from your Applications folder?
    Is this the Application you're talking about moving?

  • How do you specify the folder that you want to save a download to? I only see the options for recent places or favourites? How do you drill down?

    how do drill down into the folders when downloading? I only get the option of recent places and favourites?

    Using Safari ??
    From your Safari menu bar click Safari > Preferences then select the General tab.
    Click the:  Save downloaded files to pop up menu then click Downloads or click Other then navigate to the folder you want to use to save downloaded files to.

Maybe you are looking for