While closing popup window screen freezes

Hello,
I have a main window that contains a button to show a popup window (POPUP_1). This POPUP_1 has some editable data by the user, if the user modifies this data and then wants to press the CANCEL button, I show another popup (POPUP_2) with a confirmation message ("do you want to exit without saving?"), and 2 buttons "YES" and "NO", if the user clicks "NO", I close POPUP_2 and POPUP_1 remains visible, however if the user clicks "YES" I also have to close POPUP_1 to get back to the main page.
Currently when I call POPUP_2 I use suscribe_to_button_event to an action "CANCEL_YES" in POPUP_1 and it's assigned as the action to the button "YES", in this event "CANCEL_YES" I use the code for closing the Window, in this case POPUP_1.
So, my problem is that after clicking "YES" in POPUP_2 both popups close, but the screen remains frozen (grayed out) like if there's still a popup open... and I can't do anything in the main window having to restart the application.
Has anyone had some problem like this, or do you know another way of closing both popups succesfully?
Thanks,
Luis.

>
Luis Martinez wrote:
> Currently when I call POPUP_2 I use suscribe_to_button_event to an action "CANCEL_YES" in POPUP_1 and it's assigned as the action to the button "YES", in this event "CANCEL_YES" I use the code for closing the Window, in this case POPUP_1.
>
> So, my problem is that after clicking "YES" in POPUP_2 both popups close, but the screen remains frozen (grayed out) like if there's still a popup open... and I can't do anything in the main window having to restart the application.
>
> Has anyone had some problem like this, or do you know another way of closing both popups succesfully?
>
> Thanks,
> Luis.
Hallo Luis,
are you closing both windows in the "CANCEL_YES"  event handler or you close only POPUP_1 ?
I would have done the following.
1. Created 2 Component controller ,public attributes go_popup1,go-popup2 of type if_wd_window.
2.Create a method close_popups and implement code to close first go_popup2 and then go_popup1.
3.On cancel_yes handler method call the close_popups method.

Similar Messages

  • When closing Popup Window it does not ask "discard data?" dialog

    We have a popup window to create/update a record. When we click on 'Close Window' on this popup window with unsaved changes it does NOT show the dialog popup - "The changes you have made to this page have not been saved. If you continue, the changes will be discarded. Do you wish to continue?"
    What do I need to do to ensure the dialog popup is shown so that the underlying VO/EO are left in a consistent state before closing the popup window?
    At the moment, if the user navigates to the popup window a second time in the same session the EO cache is retained and causes create to fail.
    Regards
    Firoz

    The message you are talking about is a Warn About Changes message and it shows only if the user tries to navigate away from the page page without committing/rollbacking the data.
    As far as Window close is concerned check whether the windows.close() could be handled using Javascripts. As far as OA framework is concerned I would recommend you do not retain the AM while the pop up window is opened. This way no data from previous popup would be available. Just make sure that you pass sufficient parameters to initialize the popup everytime.
    Regards

  • ReturnListener invocation when closing popup window with (X) Button

    When I use a bounded task flow in an inline-pop, when the user clicks on the upper right (X) button of the popup window, the ReturnListener
    is not invoked which needs to be called in my use case because I need to refresh the caller’s table displayed in the calling screen. Do you know if there is a way to invoke the ReturnListener method to be invoked in case of closing the dialog via (X) button on the top right? Or how to refresh(addPartialTrigger) the caller’s table in that case.
    This behavior is described in Andrejus following
    http://andrejusb.blogspot.com/2009/11/crud-operations-in-jdeveloperadf-11g-r1.html
    Thanks for your feedback.
    Best Regards,
    JP

    Hi,
    We created our own region in popup system partly for that reason. You have to add a popupClosed client listener and send a custom event to the server to in turn call the returnListener. Sadly, it's really not simple to implement, so I cannot come up with a good solution for you. :(
    Regards,
    ~ Simon

  • Not closing popup window with firing Exitplug

    Hi Friends,
    Could you please help me in resolving below webdynpro issue.
    With a button (SAVE) click on 1st webdynpro application, Iu2019m calling a confirmation popup window using CREATE_POPUP_TO_CONFIRM method ("Data has been saved" is the message in the popup window). Then with the OK button on confirmation popup window, Iu2019m calling the EXIT plug to go to another webdynpro application
    Issue is: If I execute this webdynpro application in Enterprise Portal then the confirmation popup window is not getting closed even after reaching to the 2nd webdynpro.
    But If I execute direct webdynpro URL, confirmation pop is getting closed and there is no issue.
    CODE:
    Code for SAVE button action: Here Im calling the confirmation popup window.
        DATA: lt_text TYPE string_table.
        DATA: mr_popup_window TYPE REF TO if_wd_window.
    pop a confirmation window for display purpose
        DATA: l_window_manager TYPE REF TO if_wd_window_manager,
              l_cmp_api        TYPE REF TO if_wd_component,
        l_window         TYPE REF TO if_wd_window.
        l_cmp_api        = wd_comp_controller->wd_get_api( ).
        l_window_manager = l_cmp_api->get_window_manager( ).
        APPEND 'Data has been saved' TO lt_text.
        CALL METHOD l_window_manager->create_popup_to_confirm
          EXPORTING
            text           = lt_text
            button_kind    = if_wd_window=>co_buttons_ok
            default_button = if_wd_window=>co_button_ok
          RECEIVING
            result         = mr_popup_window.
    associated the action handling methods with the window
        DATA: view_controller TYPE REF TO if_wd_view_controller.
        view_controller = wd_this->wd_get_api( ).
        mr_popup_window->set_remove_on_close( abap_true ).    CALL METHOD mr_popup_window->subscribe_to_button_event
          EXPORTING
            button      = if_wd_window=>co_button_ok
            action_name = 'ON_SUCCESS_OK'
            action_view = view_controller.
        mr_popup_window->open( ).
    Code for OK button action of POPUP window: Here Im calling the EXIT plug.
        DATA: lr_ref TYPE REF TO ig_yics_userdefault,
              lv_url TYPE string.
        CALL METHOD cl_wd_utilities=>construct_wd_url
          EXPORTING
            application_name = 'YICS_HOMEPAGE'
          IMPORTING
            out_absolute_url = lv_url.
        lr_ref = wd_this->get_yics_userdefault_ctr( ).
        lr_ref->fire_go_exit_plg( url = lv_url ).
    Regards,
    Vijay.

    >Exit plugs do not work in a portal environment.
    This is a good point that I feel silly for not remembering...
    You can check if your application is running in the portal using the IF_WD_APPLICATION->GET_CLIENT_ENVIRONMENT method
      lo_api_componentcontroller = wd_this->wd_get_api( ).
      lo_api_application = lo_api_componentcontroller->get_application( ).
      l_client_environment = lo_ap_application->get_client_environment( ).
    if it is - then you can use the IF_WD_PORTAL_INTEGRATION interface
    lo_portal_integration = lo_api_componentcontroller->get_portal_manager( ).
    and the you can use the IF_WD_PORTAL_INTEGRATION methods to navigate eg - NAVIGATE_ABSOLUTE
    call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
    If you're navigating in the portal you should probably have iViews set up for the apps you are calling, but it is possible to create a pass-through iView which will redirect to a URL passed as a parameter.
    [Setting the URL at Runtime - in URL iVIew|http://help.sap.com/saphelp_nw04/helpdata/en/45/85087d755d1f88e10000000a1553f6/frameset.htm]
      data lo_api_component  type ref to if_wd_component.
      data lo_portal_manager type ref to if_wd_portal_integration.
      data lt_params type wdy_key_value_list.
      data ls_param type wdy_key_value.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      ls_param-key = 'forcedURL'.
      ls_param-value = 'http://www.google.com'.
      append ls_param to lt_params.
      call method lo_portal_manager->navigate_absolute
        exporting
          navigation_target   = 'ROLES://portal_content/blah/test_URL'
          navigation_mode     = if_wd_portal_integration=>co_show_inplace
          use_sap_launcher    = abap_false
          launcher_parameters = lt_params.
    Hope this helps
    Chris
    Chris

  • Display Do u want save changes or not? message while closing the window

    Hi All,
    I have one requirement.I developed one form that contains 4 windows.
    I entered in the 3rd window and i have made some changes but not saved.when i close 3rd window it is not giving any message like 'Do u want save changes?'after closing the 3rd window cursor will go to 2nd window.if i open 3rd window again it is propmting the message(Do u want save changes or not?).How can i get this message while closing the 3rd window?
    i have written the following code in app_custom body
    IF (wnd = 'WINDOW1') THEN
    app_window.close_first_window;
    ELSIF (wnd = 'WINDOW3') THEN      
    lv_wnd_status := get_window_property('WINDOW2',VISIBLE);
    IF lv_wnd_status = 'TRUE' THEN
         go_item('BLOCK2.ORDER_NUMBER');
         set_window_property ('WINDOW3', visible, property_false);
    ELSE
    app_window.close_first_window;
    END IF;
         ELSIF (wnd = 'WINDOW2')
    THEN
    lv_wnd_status := get_window_property('WINDOW3',VISIBLE);
    IF lv_wnd_status = 'TRUE' THEN
    set_window_property ('WINDOW2', visible, property_false);
    ELSE
    app_window.close_first_window;
    END IF;
         ELSE
    app_window.close_first_window;
    END IF;
    Can anyone give me some idea.
    Thanks in Advance
    Edited by: DhanaSurya on Apr 27, 2010 9:41 PM

    Iis this the only code which you used to hide/display window?
    Might be some navigation is happening in your form. Like if there is relationship between window2 and window3's block and when you access the window2 then you try to move to the next reocrd and then you are try to go to the WINDOW3's block.
    Or there is any CLEAR_BLOCK built-in bieng use in you form.
    -Ammad

  • ABAP Web Dynpro Window Inactive After Closing Popup Window

    Hello ABAP'ers
    I have a custom ABAP Web dynpro applications that uses multiple tiers of popup windows.  This application was functioning properly in our ECC6.0, Basis release 7.00 Service level 15 environment.  However, we are currently installing EHP4 and moving or basis release to 7.01 service level 5. In this new environment, when multiple popup window tiers are closed simultaneously, the underlining window is not re-activated.
    Here's a more specific description:
    The application starts with a control panel window presenting a series of buttons.  Selecting one of these buttons activates a modal (I know... all web dynpro popups are modal) popup window for the purpose of maintaining some object.  If the user attempts to exit this window without saving the changes, another popup window appears asking if they want to save their changes.  If they say no, both the popup window asking the question and the popup maintenance window are closed, thus returning the user to the switchboard.
    The problem is that none of the functionality on the switchboard is active. the user must manually refresh the URL to "reactivate" the switchboard. 
    When only a single popup window is closed, the underlying window is properly reactivated.  The problem only occurs when multiple popups are closed together.
    Has anybody else seen this occur? Any ideas / notes around to correct it?
    Any info is greatly appreciated.
    R/
    Jim M

    Hello Jim, hello everyone,
    I am encountering the same issue.
    Is a solution known already?
    Thanks
    Johannes

  • How to clear sessions in java while closing the window

    Dear all,
    When I am closing the window if I click 'x' on window how to handle that event in java script , or any other way for this event handling.
    Sudheendra.

    Thank you very much ,
    In my application for each login i am using different sessions.
    In one login if a user navigating then there is no chance of opening different windows.
    So when the user without clicking logout button , if he closes the window by clicking 'x' , then the session allocated for this login is retaining until the session time out.
    so i want to invalidate the session for this particular login .
    Thank you,
    Sudheendra.

  • Problem closing popup window in flash player 10.0.32.18

    Hello,
    I'm new to the forum so please bear with me. I posted this in the actual "Flash" forum yesterday but I realized afterward that the ActionScript forum would be a better place to post the question (sorry about that). I'm a web designer but I don't use a lot of Flash. I'm sure this will change as time goes on. For now, I'm still using an old version of Flash MX on my Mac - Flash MX version 6. But I don't think this has anything to do with the problem I'm experiencing. I designed a flash animation for my wife's website back in 2004 and it has always worked perfectly up until installing the most recent Flash Player 10.0.32.18 just a few days ago. Here's the problem:
    On the main page of my wife's website, we have a special link called "view presentation". When you click on that link, a smaller, new browser window pops up in front of the main page (the window sits "over top" of the main page - a typical pop up window). Inside of this new pop up window is the flash animation (the actual swf file). Inside of the HTML code for the pop up window, I have coded the following javascript:
    function closeWin() {
       if (document.images) {
         self.close();
    The above script, closeWin() is called from a button called "Quit" that the user clicks on in the actual swf file inside of the pop up window. Here is the code from the swf ActionScript:
    on (release) {
        stopAllSounds();
        getURL("javascript:closeWin();", "_self");
    This has always worked perfectly right up to Flash Player version 10.0.22.87 - the window closed as soon as the user clicked on the button. But now, with the most recent Flash Player 10.0.32.18 installed, it no longer works. The pop up window no longer closes.
    Obviously, something has changed in this latest version of Flash Player 10.0.32.18 which is preventing this from working. Does anyone have any ideas on how I can fix this?
    Any help would be greatly appreciated. Thank you so much,
    Mike

    Well, thanks to your help - I got it solved. It's not the Security Update, it's not javascript, it's not the difference in flash versions, it's nothing in the ActionScript itself or any of the other things I/we thought it might have been. I looked really closely at your HTML code and compared it to mine and changed it so that it was almost exactly the same as what you had coded - here's what made the difference (I've bolded the changes so you can see the differences):
    old code:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" id="tour" width="600" height="450" align="top">
    <param name="movie" value ="tour.swf">
    <param name="quality" value ="high">
    <param name="bgcolor" value ="#ffffff">
    <embed name="tour" src="tour.swf" quality ="high" bgcolor ="#ffffff" width ="600" height ="450" align ="top" type ="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" swLiveconnect="true"></embed >
    </object >
    new code:
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="600" height="450" id="tour" align="top">
    <param name="allowScriptAccess" value="sameDomain">
    <param name="movie" value="tour.swf">
    <param name="quality" value="high">
    <param name="bgcolor" value="#ffffff">
    <embed src="tour.swf" quality="high" bgcolor="#ffffff" width="600" height="450" name="tour" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>
    </object>
    Now works perfectly - the pop up window closes every time (I also took out swLiveconnect="true" - not sure where that ever came from).
    I'm not exactly sure how the above changes could make it work but they did so I am thrilled that you were kind enough to help out. If you have any ideas as to what actually did make the difference, please let me know as I am very curious. Maybe is was the "codebase" line? Seems like adding in the "allowScriptAccess" also had some sort of effect.
    Thanks again,
    Mike

  • Firefox crashes when tabs closed & popup windows closed

    When I try to operate a program through a pop up window, Firefox crashes. When I try to close a tab, Firefox crashes. This has only begun happening since the weekend when it updated to the newest version. I have tried uninstalling/reinstalling with no change in the results. This happens regardless of what website I go on. I have submitted crash reports every time it happens, so you should have a record somewhere. Please help!

    Submitted Crash Reports
    Report ID Date Submitted
    <pre><nowiki>bp-35c09533-b4f2-4595-ad62-cae612130116 1/16/2013 10:00 AM
    bp-d3c61272-5d96-4548-8d4f-d95b42130116 1/15/2013 7:47 PM
    bp-cb15e849-39f1-4ba8-a245-c00842130116 1/15/2013 7:44 PM
    bp-2ea5ce08-24e4-47f7-b96a-a20932130116 1/15/2013 7:32 PM
    bp-e559de98-f10d-4019-b721-31e5e2130116 1/15/2013 7:32 PM
    bp-82743207-27e1-4fb2-ad4a-d0bd32130116 1/15/2013 7:20 PM
    bp-76af1232-47fa-46aa-b8fb-330f32130116 1/15/2013 7:20 PM
    bp-c555b0ba-6d74-4b32-94b8-b03d92130115 1/14/2013 7:57 PM
    bp-c65cb85f-bfed-4a90-8f43-e60002130114 1/14/2013 1:15 PM
    bp-4aef862f-feaf-4a78-9f62-f800b2130114 1/14/2013 9:23 AM
    bp-406a6fb0-084f-47f2-84ca-6bc8c2130114 1/14/2013 9:07 AM
    bp-d0a37fed-4fa7-4378-8db0-9817a2130114 1/14/2013 8:30 AM
    bp-8ce046f3-f580-4c7f-bc13-42b6c2130113 1/13/2013 2:15 PM
    bp-35535693-0b91-4ee2-b9af-2d1d32130113 1/13/2013 2:10 PM
    bp-4fdab5f4-d1a6-4bd3-9a75-4ae2b2130113 1/13/2013 1:51 PM
    bp-ed58339f-dbc0-419f-9977-f8f0f2130113 1/13/2013 1:37 PM
    bp-59686c98-7a9a-4f60-a618-480e92130113 1/13/2013 1:36 PM
    bp-8d75c77c-9ec4-4429-93cf-b7a6c2130113 1/13/2013 1:36 PM
    bp-b2a0afd7-8a4c-47f8-a988-31cdc2130113 1/13/2013 1:35 PM
    bp-2b07e1bb-1b6f-4fee-9f03-81f602130113 1/12/2013 8:45 PM
    bp-d06854a5-c51f-48e1-9d77-343552130112 1/12/2013 6:10 PM
    bp-8ba3dc92-e68b-4271-8691-69d352130112 1/12/2013 6:07 PM
    bp-a9b24f3e-32f1-4c18-ae7c-5f6352130112 1/12/2013 6:06 PM
    8772895c-e5af-45bc-818e-1dae73ca1bb1 1/5/2013 2:12 PM
    a2d05c71-8d9b-4176-92a5-434327528654 1/5/2013 2:12 PM
    bp-24eec25d-fb1d-4504-bacb-9a7202130104 1/4/2013 10:37 AM
    d2fe0cd2-1209-4352-9db2-7a50500bcfec 1/4/2013 10:37 AM
    d59796f1-5438-49d5-b46f-55299c962a31 1/3/2013 10:51 AM
    b23fb0e1-5e04-40ff-b599-1f59aee22614 1/3/2013 10:51 AM
    bp-58d1a05a-4ff8-4f08-848d-43d6f2130103 1/3/2013 10:50 AM
    2883623f-a110-4f1e-9bea-08d67854e526 1/3/2013 10:43 AM
    bp-83e803a8-6e95-4393-ba76-8da242121129 11/29/2012 5:39 PM</nowiki></pre>
    These are all the crash report IDs. Many of them do have bp at the front. How can I fix this? I disabled the Norton toolbar, but still having problems. I do not want to disable Norton, leaving my comp. at risk.
    Thanks for your quick reply!
    Vera

  • Reg: Internal popup window from multiple Views

    HI All,
        I have a Internal Popup window() from 5 views, I am able to open a window and close from view1(according to the docs from SDN).
    I tried using the same logic in remaining views(2,3,4,5).
    I am able to open but while closing the window event fired is going to CompController and return to the "Parent window" of the Popup. For view2,3,4,5 this not taken as a parent window. Please help me
    Thanks
    Nagaraju

    Hi Naga,
    Disable the parent iviews message area before calling the child(popup) window. Then you can get the message in the child(popup) window.
    According to documentation, oldest (parent) message area would be used if there are more than one windows (in a layout).
    see this thread also How to display messages in pop up windows?
    PradeeP

  • Multiple buttons on popup window

    Hi Experts,
        Is there any possible way to add 4 buttons on webdynpro poup window.Iam already adding 2 buttons
    submit(yes),reject(No)...is there any way to add two more like cancel,change...
                             if any one could u give solution is grately appreciated thanks in advance...
    Regards,
    kranthi

    Hi Kranthi,
    If you are using standard buttons from window manager ( IF_WD_WINDOW_MANAGER) while generating popup window, we can have maximum of 3 buttons.
    Other way:
    You can add as many buttons you want inside the view and do not use standard buttons.
    Please follow the below steps
    Create a view V_POPUP and add your ui elements
    create 4 buttons YES, NO, CANCEL & CHANGE inside the view and create actions for each button
    Create a window W_POPUP & embed the view V_POPUP inside the window
    Create an attribute GO_WINDOW ( ref to IF_WD_WINDOW ) inside view-->attributes tab
    Now, call the popup window as below
    CALL METHOD lo_window_manager->create_window(
        EXPORTING
          window_name       = 'W_POPUP'
          title             = 'My Popup Window with custom buttons'
          close_button      = abap_true
          button_kind       = if_wd_window=>CO_BUTTONS_NONE " no std buttons
          close_in_any_case = abap_false
        RECEIVING
          window            = wd_comp_controller->go_window
         wd_comp_controller->go_window->open( ).
    Now, if you want to close the popup window inside the CANCEL button, write the below code
              wd_comp_controller->go_window->close( ).
    Hope this helps you.
    Regards,
    Rama

  • Windows: Intermittent Flash Pro CC Application Freeze while closing documents

    If you notice any intermittent application Freeze of Flash Pro CC while closing the FLA documents, please apply the hotfix provided by Microsoft in the below link:
    http://support.microsoft.com/kb/2619328/en-us
    Issue is specific to Windows 64 bit Flash Pro CC installations.
    Do let us know if you encounter this and if applying the hotfix fixes the issue for you.
    thanks,
    Sujai

    Hi, I've been experiencing this problem.  I followed the link you sent and it goes to a hotfix apparently designed to fix the issue "PowerPoint stops responding or crashes on a tablet computer that is running Windows 7 or Windows Server 2008 R2"
    Is this the correct fix?

  • Update to 7.1 causes screen freeze upon closing from Safari and slow wifi connection.

    I updated my iPad 3 last weekend.   Right after the update the screen froze and I had to restart it by holding the home button and on/off switch.  Ever since then the screen freezes a minimum of once a day. This normally happens when closing Safari.  I've also been kicked off of Facebook several times and brought back to the home screen.  Not to mention my wifi internet connection is running super slow at home and work. Any ideas of what this is happening?   My husband updated his iPad 2 and is not experiencing these issues.  We think the update may have been corrupted but not sure what to do.  Thanks in advance for help on this.

    The screen froze again yesterday.  This time it happened while I was in the photos app.  The screen starts to shrink when I pinch it but it doesn't close all the way.  I get a small "thumbnail" of the screen which gets stuck.  I am very good about making sure I don't have a lot of open apps, I try to close them all everyday by double clicking the home button and swiping them up. If you have any ideas please let me know.  I am going to try and keep a log of when this happens, what is open in the background and which app gets frozen.  Thanks again for the help on the internet slowness.  It is working fine now.  Not sure if this makes a difference but this is a refurbished iPad 3 that is about a year and a half old.

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • When I go to a website, it half-way downloads and then the screen freezes for 10-20 seconds while ads appear; this never happened till recently.

    Until recently, I loved Firefox. Lately, when I go to any website and try to download a page, the screen freezes for between 10-20 seconds while ads load. Why the screen freezes is both frustrating and annoying. I have the latest version, nothing on my computer is different, and as I said, it didn't used to do this. Any ideas what's going on?

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    * https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    * http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * https://support.mozilla.com/kb/Firefox+crashes
    * https://support.mozilla.com/en-US/kb/latest-firefox-issues
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx). You can find the IDs of the submitted crash reports on the about:crashes page. You can open the about:crashes page via the location bar, like you open a website.
    See:
    * http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)
    * https://support.mozilla.com/kb/Mozilla+Crash+Reporter
    * https://developer.mozilla.org/en/How_to_get_a_stacktrace_for_a_bug_report

Maybe you are looking for

  • ABAP client-to-server proxy through XI in same system

    Hello, I have one XI system (NW70 SPS16) and 2 clients: 400 which is configured as Integration server and 500 which is application system. In repository there are 2 messages interfaces, and in SPROXY of clnt 500 two classes are generated. Is it possi

  • Switching from iPhoto 08 to Lightroom 1.3

    Hello, Im a new-comer to both photography and Lightroom and even to Apple, so please bear with me. I have about 6k pictures that I dumped onto my newer iMac OS X v10.4 from various other old computers. There are many duplicates and bad pictures. Ther

  • Trouble with references....

    I am trying to write and test a simple syncronized method that 'locks' a record in a database. The reason it is not working is because the instance of Record does not seem to be retaining the value I am setting/mutating. I have been struggling wiht t

  • How do I modify the requirement for 16 steps to count as a flight in Healthkit?

    16 as a minimum seems excessive.  None of the staircases in my home hassixteen steps.  Only one staircase at work has sixteen or more.  All the others are ten or twelve.  I realze the app uses barometric pressure changes and presently requires ten fe

  • Picture messages does not display

    When I receive a picture message and I try to open it, It open up a grey sceen with IMG_12345. It allows me to save the picture and view it in my camera roll. How can I fix this? iPhone4 running 6.1OS Jailbroken