Firefox opens duplicate windows performing the same actions microseconds apart. I noticed it because videos had an echo. Then I made an online donation--triggered 2 email confirms and 2 charges to my credit card. Help?

This has been going on for a week or two.

Does this still happen if you restart Firefox in safe mode? For instructions, see '''[[Troubleshooting extensions and themes]]'''.

Similar Messages

  • Why all JMenuItem's of JPopupMenu perform the same action?

    Why all JMenuItem's of JPopupMenu perform the same action?
    I trying to do something similar to what there is in JBuilder where you right click a method or a class - you get a popUpMenu and if you choose the
    "Browse Symbol" JBuilder browses to that method/class.
    I'm trying to do the same and to browse to some class of mine (not a java class). But there's a problem.
    This is my code : -
    OMClass desiredClass = event.getNavigationClass();
    if(desiredClass instanceof OMComplexClass) {
    Set classSet = desiredClass.getSimpleClasses();
    JPopupMenu menu = new JPopupMenu();
    JMenuItem menuItem = null;
    menu.add("Browse to :");
    menu.addSeparator();
    Iterator it = classSet.iterator();
    for(; it.hasNext(); ) {
    OMConcept concept = (OMConcept)it.next();
    menuItem = new JMenuItem(concept.getName());
    menuItem.addActionListener(new NavigateToComplexClass(concept));
    menu.add(menuItem);
    menu.show((JComponent)(event.getMouseEvent().getSource()), getX(), event.getMouseEvent().getY());
    ComplexClass is build of SimpleClasses - so if I want to browse to complex class I ask the user by a JPopupMenu what specific SimpleClass he would like to browse to. My ActionListener is a NavigateToComplexClass class - and hewe is the code : -
    public class NavigateToComplexClass implements ActionListener, ItemListener {
    private static OMClass classToShow = null;
    GUI_Location currentLocation = null;
    public NavigateToComplexClass(OMConcept desiredClass) {
    classToShow = (OMClass)desiredClass;
    public void actionPerformed(ActionEvent evt) {
    currentLocation = frame.fillGUI_Location();
    frame.getProject().getHistoryManager().updateHistory(currentLocation);
    if(classToShow == null) {
    return;
    frame.getClassDisplay().getTabbedPane().setSelectedIndex(1);// 1 - parameeter : Property tab.
    frame.getConceptViewPanel().selectConcept((OMConcept)classToShow);
    public void itemStateChanged(ItemEvent e) {
    The problem is that no matter what JMenuItem I select and press it's navigating to the same simpleClass like if I have a
    b
    c
    no matter what I'll press I'll always goto a (or b or c but always the same)

    hi,
    for your actionlistener all those items are more or less the same. when browsing to them you have to give them different names or better different actioncommands.
    regards

  • HT2731 how can i install free application in my iphone 4s i am a student and i haven not a credit card. help me

    how can i install free application in my iphone 4s i am a student and i haven not a credit card. help me

    There are instructions on this page for how to create a new account without giving a credit card number : http://support.apple.com/kb/HT2534 e.g. select a free app in the store and click on 'create Apple id' when 'buying' it

  • Opening duplicate copies of the same File in CS4

    Hi
    I have recently upgraded some of my customers from CS3 to CS4 and I have noticed that when I open a document that was last opened in CS3 i can open the file more than once and they get listed as tabs. If i make changes to the the first open document and save it, the changes do not effect the other open copies of the file.
    however once i have saved the file in CS4, if i try and open the document again it simple brings up the already open file in Indesign.
    Is their any way I can make this the default behaviour for all documents, as a number of my clients have complained that they have accidentally opened the file more than once and they save the document and close it down and when they close the duplicate copies down and click save it overwrites all the work previously done.
    Thanks
    Nick.

    I'm not sure what you want to change the default behavior to, but I'm pretty sure there's no way to change it. This is no different than the way previous versions opened old-version files, except that CS4 shows you the multiple, same-named files as tabs instead of as separate windows. If you want ID to behave exactly as it did in previous versions, you can turn off the tabs in preferences (Edit > Preferences > Interface > Open documents as tabs).
    Why do you want to open multiple copies of the same file? If you're converting from CS3 to CS4, why not just open the CS3 file and Save As to a new name?
    Keep in mind that CS4 H&Js slightly differently than CS3. You can expect to see some minor text re-wrap going from CS3 to CS4 (but not until you start editing a story). It's always a good idea to finish CS3 jobs in CS3, start new jobs in CS4.
    Ken

  • Open new window in the same form

    Hi
    I created a form with 6 records displayed. I have a check box for each record. I would like to select a record and make the check box checked. Once I check a checkbox I would like to automatically open a new window in the same form with further details of the checked record. Could you please help me how I could work on this.

    Dear you have to create relation between the blocks then you can achieve this like:
    1) Create two canvases in your form (canvas1 and canvas2).
    2) Create a window in your form with name Window2 now you have two windows (Window1 and Window2).
    3) now set the property 'Primary Canvas' of each window (Window1 = Canvas1, window2 = Canvas2)
    4) Now create database block of you main table with (CAT, NAME, DEPT) fields and select the Canvas1 in the layout wizard.
    5) Create another database block with same table but this time select only 3 fields (CAT,SAL, DATE) and at the time of creation mention relation between blocks in the Data block wizard (block1.cat = block2.cat) and select the Canvas2 in the layout wizard.
    6) Now create check box field name MASTER_CHBOX in first block and set Database Item property no of this check box item and set the Value When Checked property to Y and N for Value When unChecked.
    7) Create a trigger on CheckBox Item and paste below code in it.
    if :MASTER_CHBOX = 'Y' then
    show_window('WINDOW2');
    go_item('SAL');
    end if;
    Regards.
    Omer

  • Open new window in the same Window

    Im developing a project in JavaFX where I wish to open the new window in the same window
    Here is my code :
    Stage st=(Stage)((Node)t.getSource()).getScene().getWindow();
    I tried this but its giving an exception

    It is possible to specifiy a named window instead of _blank.
    So you could use the following instead:
    web.show_document('html/hello.htm','my_window');
    where my_window can be anything you want to call that browser window.
    However, I have discovered that if you put this in a button trigger, the second time you press the button (if the window is still open) it will not take focus - ie. it remains in the background.
    You can get around this by closing the window if it is already open:
    web.show_document('html/close.htm','my_window');
    web.show_document('html/hello.htm','my_window');
    The close.htm needs to contain some javascript to close the window:
    <html>
    <body onload="closeit()">
    <script>
    function closeit()
    window.opener = top;
    window.close();
    </script>
    </body>
    </html>
    Apparently XP SP2 is a little stricter with javascript and may not allow this. Also, not sure if this works in all browsers, I only tried IE6.

  • Can you open multiple windows of the same Keynote presentation?

    Like you can in PPT, where you can go Window > New Window, and see more than one slide at once of the same presentation in the large view. If there is any way to view more than one slide at time, in the large view, please let me know.
    I know about Light Table, and that's useful but I really want to be able to open multiple instances of the same presentation like I could in ppt.

    Thanks, I will. It seems like such an obvious thing, yet I could not find anyone referencing it anywhere. I thought I was the only one who used ppt (or now keynote) that way. Otherwise it is awesome, so much better than PPT.

  • Firefox opens Google link in the same tab (the way I like it), but I can't figure how to keep that and still have YouTube windows pop-up in a new tab. Help?

    Hello, here is my problem: reading your mozilla support, I learned how to make Firefox open links in Google results in the same tab, that's the way I like it, but I still like to have my YouTube windows pop-up in a new tab (I participate in one forum, when I come to the YouTube window in some topic, I usually click on a small right-down button "watch on YouTube", and that always opens video it in a new tab; all until latest few updates of Firefox). Can this issue be corrected in about:config feature, and how? Sorry if my English isn't so glorious.
    Thanks a lot for answering, and best regards...

    Hello. I have just tried this add-on you suggested, and no change.
    And no, there was no some other add-on before, not that I know about it. Mainly, I need this option while I'm on a forum (IP board powered), it is not really something so important, but it's neat function for me.
    So, to be more detailed - I read a certain topic on this forum, and some of the posts from other members contain YouTube screens (looking same as on the original YouTube page), showing the frame of a video.
    In earlier versions of Firefox, I used to click on a small YouTube logo button (right side, down, between "watch on full screen" and "watch later" buttons). Clicking on this button automatically opened new tab, leaving forum tab as it is, and in new tab original YouTube page, with that certain video. In the same time, in Google search page, when clicking on a link, all links were opening in the same tab.
    Now, after some of the latest updates of Firefox, I noticed that some default settings were changed - in Google search, clicking on a link always opens a link in a new tab. I have found out here on your forum how to set this back in about:config feature, and now I have again that links in a Google results page are opened in the same tab (that's the way I like it).
    But YouTube screens on this forum are now also being opened in the same tab, and that is what I don't like, and trying to change back.
    So, what I need: all links to open in the same tab after clicking, as I have it now, and YouTube screens (e. g. on this forum) to be opened in a new tab (by clicking on a small YouTube logo ("watch this video on YouTube").
    Pedantic I am, I know that, and I know that this may look silly to some people, but if there is a way to do something, please tell me.
    Thanks for answering, and best regards.
    P.S.
    Is it possible that forum updates changed my setting, and not the Firefox? Thanks again...

  • I have recently opened a new account with Itunes.I want to download my previous music purchases to my new account which has a different computer name, email address and Apple ID. My credit card details remain the same. Please HELP.

    How can I restore my old account music purchases which I closed, to my new current account which has a new computer name, email address and Apple ID? The credit card details remain unchanged, so would this act as a tracking device  for Apple to locate my substantial past purchases?

    Why would you start another account?
    You cannot transfer purchases to another account.

  • Need to Open Two Windows at the same time

    Hi All ,
    I have a requirement wherein I am opening a new page when the user presses a link . The information displayed to the user in the new page is Read-Only.To display the reqd info on the new page I pass some parameters encoded in the page call URL.
    Besides , displaying the info in the new page , it is imperative that i allow the user to continue performing some transactions in the current page (calling page).
    However , i am not able to achieve the same . If I use 'retainAM=Y' in the URL then i pass the Session Control from the calling page to the called page . So that option is out.
    Can u suggest something wherein i am able to pop-up a new page to the user , but still not loose the session control from the current page.
    It is necessary that the user has both windows open to perform the transactions.
    Thanks
    Chirag

    Senthil
    I need to clarify some things . I cannot create an OA Function as you have earlier advised . Lets say its a constraint i have. My scenario is that i have to prepare a HyperLink Declaratively . In that i am currently giving _Blank as the target .
    Now i want to open the new page and still allow the user to perform some transactions in the original page while the new page is still open . How should i go abt maintaining my AM from original page.
    Following are the scenarios i have already tried out.
    1) I have opened the the new page and released my application module in that page . This didnt work .
    2) I have tried doing retainAM=N . This also does not work.
    3) Using PopUp is not an option since i cant create OAFunction .
    Are their any other way . When i open a new window thru a current window , my AM gets transferred to the new window . Hence i am not able to perform any transactions on that the original page . How can u release the AM On click of a link ?
    Pls Suggest
    Thanks
    Chirag

  • Firefox opens new windows under the current window

    Whenever I right-click on a link and tell it to open in a new window, the window opens behind the current window. I have selected "When I open a link in a new tab, switch to it immediately". That used to solve this problem but seems to have stopped working.
    I have read all the threads on this problem, including the one saying it's caused by Flash.
    However, I have checked in safe mode and I still get the same problem.
    This started happening around Christmas on three computers. Since then, because of problems getting a driver to install for a new peripheral, I have done a fresh install of Windows 7 64 bit, reinstalled FF newest version and restored my profile, but get the same problem. At this point I have started in the FF safe mode which should disable all the add-ons, but the same thing still happens. I have also reset FF using the reset option in the help menu. It doesn't always happen, but it can happen when flash is already running in another window.
    Are there a series of steps I can take which will verify that the fault is caused by Flash? I had thought the safe mode would do that.
    Honestly, this is enough of a problem to make me switch browsers, and I don't even like any of the other browsers. If you can offer any other suggestions I would really appreciate it.

    Safe Mode actually doesn't disable Flash. It's a little confusing: it disables extensions, but not plugins, so "Restart with Add-ons Disabled" is really not a very good description.
    If you want to test with Flash disabled, you can set it to "Never Activate" temporarily. Open the Add-ons page using either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column that lists the categories, click Plugins. You're looking for "Shockwave Flash." Change it to "Never Activate."
    You can keep this tab open during your testing. If you close and re-open the Add-ons page, Shockwave Flash will fall to the bottom with the other disabled plugins.

  • Open application windows in the same place consistently

    Hello,
    I am hoping to find out if anyone knows of a good way to convince application windows to open in the same location on the screen every time, consistently. This is, clearly, a minor problem, but perhaps you know how to do it. For example, I tend to use Safari with the window open over the entire screen, but every time I open a new window it locates itself with a couple mm between left side of the screen and left side of the Safari window, and the right side of the Safari window (the scroll bar) is partially off the screen (because the window is shifted). So every time I open a new Safari window I have to click the top bar and drag it a little bit to place it where I want it. Is there a way to "teach" Safari where I want it to open so that it will open in the same place every time? Maybe the problem is that I have a hidden dock on the left side of the screen and Safari does not want to come too close to the dock?
    (I also have the same issue with Mail, because though I use that program with the application window only open over part of the total screen area it always opens in the same place on the screen which is always slightly off from where I want it to be)
    Any suggestions? Thanks!!
    PS I apologize if this has been posted before; I tried several searches but the only results that came up were not at all related to my actual question.

    I don’t think there is a way to teach Safari not to shift the window when a new one is created. And I don’t think it is related to the position of the Dock.
    I leave a few cm of space on the right side of the Safari window and have the screen filled from top to bottom with the Safari window. Then when I make a new window, it opens shifted a little to the right of the previous window, but it doesn’t put the scroll bar off the screen and because the screen is filled from top to bottom, it doesn’t shift down, just right next to the previous window.
    You might try using tabs. When you click a link that you want in a new window, hold the Command key down. It will open in a new tab in the same window and you can change between the window tabs by clicking on it on the top of the window. The X on the tab will close the tab.

  • When I click a link in Mail (Mac OS) Firefox opens two windows. The frontmost window is always blank. The other window shows the page to which the link pointed. I would like to avoid having two windows open.

    Links from Mail open two windows. One is empty.
    == This happened ==
    Every time Firefox opened
    == In the past couple of weeks. I had not noticed this behavior previously

    That is this bug:
    https://bugzilla.mozilla.org/show_bug.cgi?id=531552 - Firefox 3.6b opens two windows when opening external links
    (please do not comment in bug reports, you can vote instead to show your interest)

  • When I have firefox open, it crashes at the same time as my display driver crashes (Crash signature: kernelbase.dll@0xb9bc)

    The screen turns black (audio remains normal if I'm playing music) and then flickers back on. I get a message that says "Nvidia display driver stopped responding and has recovered successfully." This happened before and Firefox wouldn't always crash, but the last few days it happens several times a day and Firefox always crashes at the same time as the display driver.

    No, they aren't working on the same files. All 3 employees are working on different files.
    They are all on Dell Optiplex GX745 with 4 Gb of RAM.
    The crashes are at different times, not all 3 crashing at the same time. Therefore, I don't believe network is the cause of the issues. Also, it didn't crash on CS5, but now it does on CS6.
    What I'm looking for are possible settings within Illustrator CS6 that I can tweak to make it a more stable program.
    Thanks

  • Open minimised window in the same desktop.

    Do anyone know a preference, so when I open a minimised window, it doesn't open in the desktop from where it was minimised but in which I'm currently working...?

    Dear you have to create relation between the blocks then you can achieve this like:
    1) Create two canvases in your form (canvas1 and canvas2).
    2) Create a window in your form with name Window2 now you have two windows (Window1 and Window2).
    3) now set the property 'Primary Canvas' of each window (Window1 = Canvas1, window2 = Canvas2)
    4) Now create database block of you main table with (CAT, NAME, DEPT) fields and select the Canvas1 in the layout wizard.
    5) Create another database block with same table but this time select only 3 fields (CAT,SAL, DATE) and at the time of creation mention relation between blocks in the Data block wizard (block1.cat = block2.cat) and select the Canvas2 in the layout wizard.
    6) Now create check box field name MASTER_CHBOX in first block and set Database Item property no of this check box item and set the Value When Checked property to Y and N for Value When unChecked.
    7) Create a trigger on CheckBox Item and paste below code in it.
    if :MASTER_CHBOX = 'Y' then
    show_window('WINDOW2');
    go_item('SAL');
    end if;
    Regards.
    Omer

Maybe you are looking for