Can't open requested popups

Last week, I started having a problem opening requested popups. (As in, clicking a button to leave a comment on a blog or clicking pinterest "pin it" buttons, when after you click them, a popup window should open.) I downloaded the newest version of Firefox and they stopped working. I restarted my computer again and they worked again, but only for a couple days. I have tried restarting and tried changing the settings to allow popups, but nothing helps anymore.
What I have to do to get to the information now is right click and say open in a new tab, then I get the requested information. But that's a pain and I would really like for the popups to just pop up for me again.
I am using Firefox 11.0 on a Windows 7 computer. Anyone know how I can fix this?

Hello friend you've tried uninstalling and reinstalling to see if it solves the problem? This began happening after you installed any plugin or not? If yes try to uninstall firefox and all plugins together and then install it again. To see if resolve.Caso contact us resolve to try to resolve your problem as soon as possible.

Similar Messages

  • How can i open the popup from java class

    Hi,
    Please tell me how can i open the popup from java class.
    I am using jdev 11.1.1.7.0
    I have used the below code which works fine in jdev 2.1 but it will have some errors in 11.1.1.7.0.
    Please tell me some way to do this in all jdev versions.
    Bean obj = (Bean)RequestContext.getCurrentInstance.getExternalContext.getPageFlowScope(“obj”);
    Code for hide pop-up
    FacesContext context = FacesContext.getCurrentInstance();
    String popupId = obj.getPopUpBind().getClientId()
    ExtendedRenderKitService service = Service.getRenderKitService(FacesContext.getCurrentInstance(),
    ExtendedRenderKitService.class);
    String hidePopup = "var popupObj=AdfPage.PAGE.findComponent('" + popupId +
    "'); popupObj.hide();";
    service.addScript(FacesContext.getCurrentInstance(), hidePopup);
    Code to Show pop-up
    StringBuffer showPopup = new StringBuffer();
    showPopup.append("var hints = new Object();");
    showPopup.append("var popupObj=AdfPage.PAGE.findComponent('" +
    obj.getPopUpBind().getClientId() + "');popupObj.show(hints);");
    service.addScript(FacesContext.getCurrentInstance(), showPopup.toString());
    Code need to be added in jsff pop tag
    binding="#{pageFlowScope.bean.popUpBind}
    Variable need to be added in Bean.java
    private RichPopup popUpBind;

    Hari,
    Since you're using a non-public build of JDeveloper, you should be using a non-public forum.
    John

  • How can I open a popup after clicking in a table cell using Web Dynpro?

    Hello,
    I am using Web Dynpro to create an application and I would like to click in a table cell and then a popup with confirmation appears.
    I already have a table with the information that is displayed in the browser. In fact, I just added a column with images that are print icons.
    My problem is that I don't know how to implement the method to set the action: when clicking on the print icon, a popup appears.
    Thank you very much in advance.

    HI Rafael,
    Please check the below sample code
      To quickly create dialog boxes of a standardized layout (for example, for the confirmation of changes to current data) you can call the CREATE_POPUP_TO_CONFIRM method of the IF_WD_WINDOW_MANAGER. You do not need to create a separate window for this. The dialog box is created automatically by the runtime.
    ●      The CREATE_POPUP_TO_CONFIRM method creates an object of the type IF_WD_WINDOW; the dialog box can be created using its parameters.
    method onactionpopup4_1 .
      data: l_cmp_api          type ref to if_wd_component,
            l_window_manager   type ref to if_wd_window_manager,
            l_popup            type ref to if_wd_window,
            l_text             type string_table,
            l_api              type ref to if_wd_view_controller.
      l_cmp_api        = wd_comp_controller->wd_get_api( ).
      l_window_manager = l_cmp_api->get_window_manager( ).
      insert `Data where changed` into table l_text.    "#EC *
      insert `Do you want to save?`        into table l_text.    "#EC *
      l_popup = l_window_manager->create_popup_to_confirm(
                    text            = l_text
                    button_kind     = if_wd_window=>co_buttons_yesnocancel
                    message_type    = if_wd_window=>co_msg_type_question
                    window_title    = 'Test: Popup to confirm'
                    window_position = if_wd_window=>co_center )."#EC *
      l_api = wd_this->wd_get_api( ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_yes
                   action_name       = 'YES'
                   action_view       = l_api
                   is_default_button = abap_true ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_no
                   action_name       = 'NO'
                   action_view       = l_api
                   is_default_button = abap_false ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_cancel
                   action_name       = 'CANCEL'
                   action_view       = l_api
                   is_default_button = abap_false ).
      l_popup->open( ).
    endmethod.
    The SUBSCRIBE_TO_BUTTON_EVENT method of IF_WD_WINDOW assigns the actions to the appropriate buttons
    Thanks
    Vinay

  • Open a Popup with commnadButtom

    Hello,
    can I open a Popup with a commnadButton? Und Load in the Popup a PDF`?
    I can open a PDF but only in self window :-(
    Thanks for help
       public String doActionShowPreview() {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            HttpServletResponse response = (HttpServletResponse)facesContext.getExternalContext().getResponse();         
            response.setContentType("application/pdf");
            response.setHeader ("Content-disposition", "inline");
            response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
            response.setHeader("Pragma:"," no-cache");
            Documents previewDoc = getEditDocument();
            List tagListForCreator = new ArrayList();
            Set tagList = previewDoc.getText();
            Iterator iter = tagList.iterator();
            while(iter.hasNext()) {
                DocumentText docText = (DocumentText)iter.next();
                XMLParserTagInfo info = new XMLParserTagInfo(docText.getTag(),docText.getText());
                tagListForCreator.add(info);
            Collections.sort(tagListForCreator);
           XMLInDesignCreator xmlCreator = new XMLInDesignCreator();
           xmlCreator.createXML(tagListForCreator,previewDoc.getDocName(),previewDoc.getDocName());
        File file = new File("C:\\tm\\preview\\"+ previewDoc.getDocName()+".pdf");
       //convert the file content into a byte array
       FileInputStream fileInuptStream = null;
       try {
           fileInuptStream = new FileInputStream(file);
       } catch (FileNotFoundException ex1) {
       BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInuptStream);
       ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
       int start = 0;
       int length = 1024;
       int offset = -1;
       byte[] buffer = new byte[length];
       try {
           while ((offset = bufferedInputStream.read(buffer, start, length)) != -1) {
               byteArrayOutputStream.write(buffer, start, offset);
       } catch (IOException ex2) {
           ex2.printStackTrace();
        try {
            bufferedInputStream.close();
            byteArrayOutputStream.flush();
            buffer = byteArrayOutputStream.toByteArray();
            byteArrayOutputStream.close();
        } catch (IOException ex3) {
            ex3.printStackTrace();
        response.setContentType("application/pdf");
        response.setHeader ("Content-disposition", "inline");
        response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
        response.setHeader("Pragma:"," no-cache");
        try {
            response.getOutputStream().write(buffer);
            response.getOutputStream().flush();
        } catch (IOException ex4) {
            ex4.printStackTrace();
        return "";
        }

    Do the following
    1) window.open('somePath/YOUR_JSF_PAGE .jsf') in your javascript code.
    2) Invoke doActionShowPreview() method in the constructor of your BackingBean.
    Hope this helps.
    Karthik

  • Can't open file: "Could not complete your request because of a program error"

    I have a Photoshop file that suddenly won't open.  Last week I upgraded to CS5--the file had been created in CS3 prior to that.  When I try to open it, I receive this error message (in CS5): "Could not complete your request because of a program error."  I tried to open the same file in CS3; there, the file opens, but as soon as I try to do anything I get the same error message....which, annoyingly, re-appears the second I click "OK," so the only thing I can do in CS3 is force-quit.
    I've used Time Machine to retrieve versions of the file that were saved four days ago, seven days, and several weeks ago, and I get the same message every time.  Even on versions that were last saved with CS3 (before I installed CS5).
    Naturally, this is one of the most important files in my life right now....it's a 300 MB file that contains hundreds of layers and dozens of comps.  So the fact that I suddenly can't open it, after shelling out $1200 to upgrade to the latest and greatest Adobe has to offer, is, to say the least, distressing.
    Any advice will be appreciated.
    Thanks,
    TheWocky

    First thing I would do is investigate hard drive issues and the health of the OS.

  • I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries)

    I bought the Keynote app for my MacBook, but when I open the application and try to install it, I get an error message saying that the application will not work with my MacBook. What gives? And, can I please request a refund? ($19.99 = a week's groceries).
    Thank you for your help! - I did try looking for all available specs about Keynote on the Apple iTunes website, and found nothing that could help me. HELP!

    1
    Close all iWork applications
    2
    Uninstall Keynote; this must be done with an application remover tool to delete the installation properly. Appcleaner is known to work correctly for this purpose, it is free and can be downloaded from here: Appcleaner Download
    3
    empty the trash
    4
    shutdown the Mac and restart. After the start up chime, hold down the shift key until the apple logo appears
    let the Mac complete the start up procedure completely, it will take longer than usual as the hard drive is being repaired
    5
    Reinstall Keynote by logging into the Mac App Store using download / install

  • I installed Lion 10.7.4.  Went to use Photoshop Cs and got a popup window.  You can't open the application Adobe Photoshop CS because PowerPC applications are no longer supported.    Is there a way of getting this to work or do I have to get the all new!

    I installed Lion 10.7.4.     Went to use Photoshop Cs and got a popup window.  You can't open the application Adobe Photoshop CS because PowerPC applications are no longer supported.    Is there a way of getting this to work or do I have to get newest version of all of my Power PC apps?

    Welcome to Apple Communities
    PowerPC applications are unsupported in newer versions. You can upgrade Photoshop or you can install Snow Leopard in a partition.
    1. Open Disk Utility (Applications > Utilities) and select your drive
    2. Go to Partitions tab, press + button, create a new partition and press Apply
    3. Insert the Snow Leopard install DVD and reboot pressing C key
    4. Install it in the new partition
    5. If you want to change boot, go to System Preferences > Startup Disk and select 10.7

  • I am running Photoshop CS6 on a Mac OS X 10.9.3 and every time I save a large eps I can not open it again. I get this message when I try. "Could not complete your request because Photoshop was unable to parse the PostScript."

    I am running Photoshop CS6 on a Mac OS X 10.9.3 and every time I save a large eps I can not open it again. I get this message when I try. "Could not complete your request because Photoshop was unable to parse the PostScript."

    Oh, dear.
    If you use PSE as your external editor for iphoto, you need to save the images back to iphoto by using Save, not Save As and not changing anything like the name or format that would bring up the Save As window. (You may need to adjust the editor prefs>saving files>on first save to save over existing.)
    OR you can export the photos from iphoto to the desktop, use file>open in the editor and then change whatever you want and either import the saved image to the organizer or import it back to iphoto as a new file. What you are doing is extremely risky, particularly to the iphoto library which you may easily damage by your workflow.
    I would start the organizer holding down the shift key, then create a new catalog and switch to the new one. Then try opening the editor without opening an image and see if you get any farther.
    PSE and iphoto are not designed to be used as you've been doing. You are trying to write to the iphoto library from outside iphoto, which is the fastest known way to corrupt the library and lose all your photos.

  • CUP open request can not be cancelled

    GRC AC 5.3 SP 10 CUP
    There are some old open CUP requests for super user access. I need to cancel them.
    When I try to cancel a request from config - request - administration - it gives me a message that "failed to cancel follwing request".
    Also if I click on the request number to see detail then it gives message - "Request Approval Screen is not displayed because Request Status has changed" and it does not show the request detail and remains in the same list of requests screen.
    If I click on a closed request number - in next screen, it shows the same message but I can see detail request.
    Recently We upgarded GRC to SP10 from SP4. Previously I cancelled CUP requests this way.

    Hi Pal
    The request can be cancelled by the approver of the request. You can however cancel the request as an administrator in the configuration section in CUP.

  • Can't open the illustration. Can't finish previewing. Could not complete the requested operation.

    Recently, I restarted my MAC and I'm not able to place images in AI or open AI files with images.
    Sometimes when I do place a jpg, it just shows a box.
    Some errors include:
    • This file is not readable.
    • Can't open the illustration.
    • Can't finish previewing. Could not complete the requested operation.

    As Monika said, we need info about the file and exact system info. Sounds like the files are damaged or locked at the operating system level, which in turn could indicate file system issues....
    Mylenium

  • I click a link but it doesn't open. Instead I get a popup saying "Open the link in a new window," "Open link in a new tab," etc. How can I kill this popup or whatever it is forever?

    I click a link but it doesn’t open. Instead I get a popup saying “Open the link in a new window,” “Open link in a new tab,” etc. How can I kill this popup or whatever it is forever?

    That happens if the server sends the file as text/plain.
    You can see this if you open "Tools > Page Info > General": Content-Type: text/plain
    Files send this way will always open in a tab.
    *https://developer.mozilla.org/Tools/Web_Console

  • Illustrator cs6 Can't open the illustration. Could not complete the requested operation.

    Hi guys
    I'm struggling with my Illustrator CS6. I hope you will help me.
    When I try to open my project it says "Can't open the illustration. Could not complete the requested operation." After clicking ok my project is loaded WITHOUT one layer. I sacrificed a lot of time doing it and i don't want to start it over again. None of the ways to open it as older version of program work. I know that it can be recovered, because when I open the same project in After Effects all layers are loaded properly. If somebody know how to solve this problem please let me know asap.

    Thanks, Monica, Ryan, and Mike. It helps to know that this is the best I'm likely to get, so I don't waste more time looking for a better solution.
    I was able to place the file, then simply redraw or retype the broken parts on top of the placed art. Often, I could click into the placed art and copy contents from it. For type, though, I had to retype whatever got broken.
    Since I posted my 1st comment here on Dec. 5, it happened to me again. Again, I had to reconstruct parts of it, the same way.
    Sometimes, I save a file without PDF compatibility enabled, just to make it save more quickly. I'm glad I didn't do that with this file.

  • Had a new hard drive installed last month. now iphoto won't start up, popup says "you can't open the application iphoto because it may be damaged or incomplete. can this be repaired without going to the repair shop?

    had a new hard drive installed last month. now iphoto won't start up, popup says "you can't open the application iphoto because it may be damaged or incomplete". can this be repaired without going to the repair shop?

    What installed iPhoto there in the first place?  Was it the same version of iPhoto that came with the Mac?  Was iLife added at a later time from a Mac Box Set?   You can selectively install iPhoto, and then apply the appropriate iLife update without taking it to the shop, after removing the application, or recover it from your backup.

  • I can not open PhotoshopCC "Could not complete your request the internal file signature is incorrect

    I can not open Photoshop CC -  My older Photoshop CS6 opens fine. But, I keep getting a message when I try to open Photoshop CC: "Could not complete your request the internal file signature is incorrect

    It seems your copy of PS CC is corrupted now hence this message.
    As Noel suggested please try uninstalling PS and then install it again from CC app.
    After successful installation verify.
    Regards,
    Ashutosh

  • Can't open iTunes Store features tab on iPad mini. Message given is: 'Your request produced an error. (newNullResponse)."

    I can't open iTunes Store features tab on iPad mini. Message given is: 'Your request produced an error. (newNullResponse)." 
    How do I resolve this problem?

    Try restarting your iPad or testing on another Wi-Fi network.
    If that doesn't do it, try the troubleshooting steps in this iTunes Store doc. The same steps should help with App Store problems.
    iTunes: Advanced iTunes Store troubleshooting

Maybe you are looking for

  • "System copy stops in "check DDIC password"  step

    Hi, We performed a combined upgrade/unicode conversion to ECC5.0 Non-Unicode to ECC 6.0 Unicode ( Windows 2003 Server, Oracle 10gR2 ). But at the end of import ( using R3load tool ), the import stops at "check DDIC password"  step  with error message

  • Dynamic creation of UI components

    Hi All, I have to generate <h:inputText > dynamically when i click on a link, in the bean i am creating few UI components under a panel grid and returning , but the grid is not rendering on the page ,here is my code <h:panelGrid columns="2" binding="

  • Running F110 with message "Proposal has been released 07/22/10 06:42:33"

    Dear experts, When I made proposal through F110,  it shows me "Parameters have been entered", then after setting the related parameters, I tried to run Proposal with check on "Start immediately", then the message "Proposal has been released 07/22/10

  • Imovie 09 photo times change by themselves?

    When in insert photos from iMovie to my project between movie clips, i can set the length of time they are on.  however, when i go and do this to other photos, if i go back, the times are often reset.  Even clicking the apply to all doesn't work on a

  • Why is my itouch not recognized in itunes?

    Why is my itouch not recognized in itunes? Anybody know?