Window Loses Focus After Modal Dialog is Dismissed

hi,
I need a JDialog to be opened when i click on a button in JFrame.and it should be modal so that user must not get control to its parent window and rest of the windows can be accessed.
So, i tried setting property like setModalityType(Dialog.ModalityType.DOCUMENT_MODAL), but still unable to access all the windows not only its parent until the dialog gets closed.
Another issue i was facing is when i close out the dialog i need to get the parent to Front of other windows in application. But in my case it was not happening.After closing the dialog, i am getting the last focussed window to front but not its parent. I tried calling getParent().toFront() in windowClosing() Listener of that dialog, But still not able to solve the problem.
Hope someone understands my problems and give me solution.
Hoping for quick response and thanks in advance.

shrikanthhyd wrote:
I need a JDialog to be opened when i click on a button in JFrame.and it should be modal so that user must not get control to its parent window and rest of the windows can be accessed.
So, i tried setting property like setModalityType(Dialog.ModalityType.DOCUMENT_MODAL), but still unable to access all the windows not only its parent until the dialog gets closed.Perhaps you can fix this by calling the first dialog either without a parent or not as a JDialog but rather as a JFrame. Then the second dialog's modality will not impinge on the visibility of the original parent window. For instance:
import java.awt.Dimension;
import java.awt.Window;
import java.awt.Dialog.ModalityType;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.SwingUtilities;
class SwingFu2
    private JPanel mainPanel = new JPanel();
    public SwingFu2()
        mainPanel.setPreferredSize(new Dimension(400, 400));
        JButton showDlg1Btn = new JButton("Show Dialog 1");
        showDlg1Btn.addActionListener(new ActionListener()
            @Override
            public void actionPerformed(ActionEvent e)
                showDlg1Action(e);
        mainPanel.add(showDlg1Btn);
    private void showDlg1Action(ActionEvent e)
        Window frame = SwingUtilities.getWindowAncestor((JButton)e.getSource());
        JPanel dlg1Panel = new JPanel();
        dlg1Panel.setPreferredSize(new Dimension(300, 300));
        JButton showDlg2Btn = new JButton("Show Dialog 2");
        showDlg2Btn.addActionListener(new ActionListener()
            @Override
            public void actionPerformed(ActionEvent e)
                showDlg2Action(e);
        dlg1Panel.add(showDlg2Btn);
        //JDialog dialog1 = new JDialog(null, "Dialog 1", ModalityType.MODELESS); // either of these will work
        JFrame dialog1 = new JFrame("Dialog 1");  // either of these will work
        dialog1.getContentPane().add(dlg1Panel);
        dialog1.pack();
        dialog1.setLocationRelativeTo(null);
        dialog1.setVisible(true);
    private void showDlg2Action(ActionEvent e)
        Window window = SwingUtilities.getWindowAncestor((JButton)e.getSource());
        JPanel dlg2Panel = new JPanel();
        dlg2Panel.setPreferredSize(new Dimension(200, 200));
        JButton showDlg2Btn = new JButton("Show Dialog 2");
        showDlg2Btn.addActionListener(new ActionListener()
            @Override
            public void actionPerformed(ActionEvent e)
                showDlg2Action(e);
        dlg2Panel.add(showDlg2Btn);
        JDialog dialog2 = new JDialog(window, "Dialog 2", ModalityType.DOCUMENT_MODAL);
        dialog2.getContentPane().add(dlg2Panel);
        dialog2.pack();
        dialog2.setLocationRelativeTo(null);
        dialog2.setVisible(true);
    public JPanel getMainPanel()
        return mainPanel;
    private static void createAndShowUI()
        JFrame frame = new JFrame("SwingFu2");
        frame.getContentPane().add(new SwingFu2().getMainPanel());
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    public static void main(String[] args)
        java.awt.EventQueue.invokeLater(new Runnable()
            public void run()
                createAndShowUI();
Another issue i was facing I don't know on this one. Good luck.

Similar Messages

  • Using web.show_document the first time makes new browser window lose focus

    Hi,
    In our application we use show_document(url, '_blank') to open our reports (as pdf) in a new window.
    Our environment is Application Server 10g Release 2 with Forms 10g Release 2 and jinitiator 1.3.1.22.
    The first time I call a report, the new browser window containing the pdf is shown but loses focus after about 1 second. The focus is then returned to the applet window. When calling a report again it always keeps the focus.
    After closing the applet window and restarting the application, the same thing happens: first report called loses focus, all others keep the focus.
    Does anyone have any idea why this is happening? We want the focus to stay on the new browser window every time...

    Hi Jeroen,
    I m also facing a problem something similar to yours. If you got any solution please let me know.
    Problem-
    Currently my application is running on Forms 9.0.4.2 and my form calls another third party which displays the image in image viewer in new browser. When user clicks on the button to display image, then I m using the following Code -
    -- Method: displayDocuments ([Ljava/lang/String;)Ljava/lang/String;
    FUNCTION displayDocuments(
    obj ORA_JAVA.JOBJECT,
    a0 ORA_JAVA.JARRAY) RETURN VARCHAR2 IS
    BEGIN
    args := JNI.CREATE_ARG_LIST(1);
    JNI.ADD_OBJECT_ARG(args, a0, '[Ljava/lang/String;');
    RETURN JNI.CALL_STRING_METHOD(FALSE, obj, 'com/hli/imaging/adapter/LK_FormsImagingAdapter', 'displayDocuments', '([Ljava/lang/String;)Ljava/lang/String;', args);
    END;
    Image is displaying fine but the focus is staying on the newly opened browser. I want it to get back the focus to the forms window.Is this possible ???
    Thanks in advance
    Sai                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Second window loses focus

    Hi all,
    I set up a navigation between two wd applications within the portal. The navigation will open a new window once the user clicks a button in the first application. The navigation itself works well, however, the new window is always shown behind the portal page, in other words, it loses focus after it is opened.
    Does anyone know a way to bring the new window to the front?
    Thanks!
    Hart

    hello thomas!
    is this problem with the losing focus when you open a second window fixed now?
    can i set the focus in a new opening window manually?
    thanks for your help...
    peter

  • TextInput loses focus after a collection.refresh()

    Hi!
    I have TextInputs inside AdvancedDataGridHeaderRenderers in my ADG making filters by columns.
    But everytime I press a key (and collection.refresh() is called) to make the filter, the target text input loses focus after the call to the collection.refresh() method.
    The ADG headers inputs have the same focusManager object of my parent IFocusManagerContainer, but they are inacessible by TAB (and they do not TAB to each other).
    A note: My collection.refresh() method is called from inside my ADG override of commitProperties method.
    Any ideas?
    Thanks!

    I'd first make sure you need to make a change that requires a refresh.
    There are various ways to avoid/block refresh. It will depend on your needs.
    There is an API on ICollectionView, there is making certain properties not
    bindable and there is capturing and stopImmediatePropagation on the change
    events themselves.

  • In Unix, main JFrame focus not regained after modal dialog exit.

    Hi all,
    I'm new to this forum so hopefully this is the right place to put this question.
    I have a relatively simple GUI application written in Java 6u20 that involves a main gui window (extends JFrame). Most of the file menu operations result in a modal dialog (either JFileChooser or JOptionPane) being presented to the user.
    The problem is that when running on Unix (HPUX), the process of changing focus to one of these modal dialogs occasionally results in a quick flash of the background terminal window (not necessarily that used to launch the Java), and the process of closing the modal dialogs (by any means, i.e. any dialog button or hitting esc) doesn't always return focus to the main extended JFrame object, sometimes it goes to the terminal window and sometimes just flashes the terminal window before returning to the main JFrame window.
    I think the problem is with the Unix window manager deciding that the main focus should be a terminal window, not my Java application, since the problem occurs in both directions (i.e. focus from main JFrame to modal dialog or vice versa).
    In most cases of JOptionPane, I DO specify that the main extended JFrame object is the parent.
    I've tried multiple things since the problem first occured, including multiple calls to a method which calls the following:
    .toFront();
    .requestFocus();
    .setAlwaysOnTop(true);
    .setVisible(true);
    ..on the main JFrame window (referred to as a public static object)...
    just before and after dialog display, and following selection of any button from the dialogs. This reduced the frequency of the problem, but it always tends to flash the terminal window if not return focus to it completely, and when it occurs (or starts to occur then gets worse) is apparently random! (which makes me think it's an OS issue)
    Any help appreciated thanks,
    Simon
    Self-contained compilable example below which has the same behaviour, but note that the problem DOESN'T occur running on Windows (XP) and that my actual program doesn't use auto-generated code generated by a guibuilder:
    * To change this template, choose Tools | Templates 
    * and open the template in the editor. 
    package example;  
    import javax.swing.JOptionPane;  
    * @author swg 
    public class Main {  
         * @param args the command line arguments 
        public static void main(String[] args) {  
            java.awt.EventQueue.invokeLater(new Runnable() {  
                public void run() {  
                    new NewJFrame().setVisible(true);  
    class NewJFrame extends javax.swing.JFrame {  
        /** Creates new form NewJFrame */ 
        public NewJFrame() {  
            initComponents();  
        /** This method is called from within the constructor to 
         * initialize the form. 
         * WARNING: Do NOT modify this code. The content of this method is 
         * always regenerated by the Form Editor. 
        @SuppressWarnings("unchecked")  
        // <editor-fold defaultstate="collapsed" desc="Generated Code">  
        private void initComponents() {  
            jMenuBar1 = new javax.swing.JMenuBar();  
            jMenu1 = new javax.swing.JMenu();  
            jMenuItem1 = new javax.swing.JMenuItem();  
            jMenu2 = new javax.swing.JMenu();  
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);  
            jMenu1.setText("File");  
            jMenuItem1.setText("jMenuItem1");  
            jMenuItem1.addActionListener(new java.awt.event.ActionListener() {  
                public void actionPerformed(java.awt.event.ActionEvent evt) {  
                    jMenuItem1ActionPerformed(evt);  
            jMenu1.add(jMenuItem1);  
            jMenuBar1.add(jMenu1);  
            jMenu2.setText("Edit");  
            jMenuBar1.add(jMenu2);  
            setJMenuBar(jMenuBar1);  
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());  
            getContentPane().setLayout(layout);  
            layout.setHorizontalGroup(  
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
                .addGap(0, 400, Short.MAX_VALUE)  
            layout.setVerticalGroup(  
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
                .addGap(0, 279, Short.MAX_VALUE)  
            pack();  
        }// </editor-fold>  
        private void jMenuItem1ActionPerformed(java.awt.event.ActionEvent evt) {  
            int result = JOptionPane.showConfirmDialog(this, "hello");  
        // Variables declaration - do not modify  
        private javax.swing.JMenu jMenu1;  
        private javax.swing.JMenu jMenu2;  
        private javax.swing.JMenuBar jMenuBar1;  
        private javax.swing.JMenuItem jMenuItem1;  
        // End of variables declaration  
    }

    It won't comfort you much, but I had similar problems on Solaris 10, and at the time we traked them down to a known bug [6262392|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6262392]. The status of this latter is "Closed, will not fix", although it is not explained why...
    It's probably because the entry is itself related to another, more general, bug [6888200|http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=b6eea0fca217effffffffe82413c8a9fce16?bug_id=6888200], which is still open.
    So it is unclear whether this problem will be worked upon (I suspect that yes) and when (I suspect that... not too soon, as it's been dormant for several years!).
    None of our attempts (+toFront(...)+ etc...) solved the issue either, and they only moderately lowered the frequency of occurrence.
    I left the project since then, but I was said that the workaround mentioned in the first bug entry (see comments) doesn't work, whereas switching to Java Desktop instead of CDE reduced the frequency of the issues (without fixing them completely either) - I don't know whether it's an option on HPUX.
    Edited by: jduprez on Jul 9, 2010 11:29 AM

  • Firefox 3.6.8 does not recognize subsequent mouseclicks - window loses focus

    After updating to firefox 3.6.8 on my macbook pro (OS X 10.4.11) Firefox fails to recognize subsequent mouse clicks. You can access the page initially, but then it seems to lose focus and become unresponsive to mouse clicks until you do something to break the cycle (clicking on desktop, minimizing and resizing window, etc). I reinstalled Adobe Flash update using full installer, since others have suggested that as a possible cause, but no joy. The browser window still does not recognize mouseclicks after an initially successful page load. You can tab to the next window (for example, if you want to enter something in search) but you cannot CLICK to enter the search window, nor can you click on links on the page, etc. It is totally unresponsive.
    == This happened ==
    Every time Firefox opened
    == I updated Firefox to the version just before 3.6.8 -- then I updated to 3.6.8 to see if that fixed it -- it's still broken

    This started happening to me yesterday. All plugins are disabled, didn't help. All plugins uninstalled, didn't help. Downgraded to SP3, didn't help. I've also noticed this happen in Thunderbird, though it seems OK now.
    Sadly I've had to start using IE8 :(

  • PP CC & AE CC: Windows lose focus, AE stops playing RAM preview

    I'm experiencing very odd behavior when I have Premiere Pro CC and After Effects CC open at the same time. Please let me know if there is any additional information I can provide to troubleshoot this issue.
    Symptoms:
    I'm working in Premiere Pro CC and After Effects CC and am noticing some very odd behavior where I'll be working in an application (any Windows application) and the Window will lose focus. For example, as I'm typing this question, the window will periodically lose focus, and I'll have to wait a second to start typing again.
    Another Symptom is that I'll be in After Effects CC, I'll press 0 to do a RAM Preview, but AE will stop looping for some unknown reason. It's never at the same time and it's always intermittent.
    Obervations:
    This only happens when I have both After Effects CC and Premiere Pro CC open at the same time
    With Sysinternals Process Explorer Open, I notice that CEPServiceManager.exe (Adobe CEP Service Manager) opens as a child process of Adobe Premiere Pro.exe. When this process is open, I experience the symptoms described above. When this process stops, the symptoms stop.
    I think there's only an issue when the PP CC project has a linked AE comp in it.
    Steps to Reproduce:
    Windows 7 Utlimate x64 SP1.
    Open Premiere Pro CC and Create a new Project
    Open After Effects CC and create a new comp.
    Save the Project in AE CC.
    Add a solid to the comp.
    Save the comp.
    Drag the AE Comp to the PP CC project.
    Make a change to the AE Comp.
    Expected:
    Windows behaves normally. After Effects behaves normally.
    Actual:
    Symptoms occur as described above.

    harcnowhear wrote:
    - Even when video is rendered to a .Mov Lossless file the video is still juddery and appears to be dropping frames when played in Quick Time - VLC is better slightly.
    That is to be expected (unless you have a RAID setup for your computer's hard drives). An uncompressed HD file has a data rate that is much too high for your hard drive to handle. If you take that high data rate file into the Adobe Media Encoder and render it into a deliverable format such as H.264, it should play back without issue. If this is the case (and I'm pretty sure it is), this is unrelated to your RAM preview issue.
    What version of AE are you running? You say CC, but is it 12.2.0 or 12.1.0? If you haven't yet, update to the latest version; it fixes a lot of bugs.
    Also, when you say you've been using AE version 5 and 5.5, do you mean CS5 (actually version 10) and CS5.5 (actually version 10.5) or do you really mean you're using the really old versions?
    harcnowhear wrote:
    We have an older mac here which has an older card with more ram (1024 MB)  on the  card, which takes longer to render the preview (is that due to less system RAM?)
    Rendering speed usually has less to do with RAM and much more to do with the processor's clock speed. This is likely the difference.
    Is this older Mac running CC or is this the older version you mentioned in the "Extra notes" section?
    Have you tried updating the driver for the graphics card? The GPU has very little to do with rendering in AE (except for the Ray-Traced renderer, but that doesn't matter as you don't have an NVIDIA card), but it does have to do with AE's display of its playback.

  • When does a selection in a text field in a Finder window lose focus?

    Hello,
    this problem has emerged on account of an Applescript file that needs to access a text selection (portion of a filename highlighted) in an open Finder window.
    The bare minimum code to demonstrate the problem is this:
    *tell application "System Events"*
    * *tell process "Finder"*
    * *set selText to value of attribute "AXSelectedText" of text field 1*
    * *end tell*
    *end tell*
    other variants also exist, using "keystroke" but that does not work either. I am not asking help with Applescript here, it is here only to give a sense of the problem.
    My conclusion thus far is that the selection lose focus before the script process can access it. In the best case I get the full filename by using "attribute" and copy of the alias onto the clipboard by using "keystroke".
    So my problem is this:
    It seems that the focus stays alive when one clicks on a menubar item, any click on any other item on the desktop, including windows of irrelevant applications, changes the focus from the selection within the text field corresponding to a filename, to the filename itself.
    And my question is this:
    Is there a changeable setting within the OS that has to do with how long the focus stays alive on a selection within a text field corresponding to a filename? If yes, how do I change it?
    Thanks

    baltwo wrote:
    Thanks for clarifying. Never heard it called a text field, just a label. So, exactly what are you trying to accomplish? Is it that you want AS to select the file, highlight its label so you can edit/change it with some other text? If so, have you checked out the Finder scripts installed on the machine, especially the Finder script *Add to Finder Names*?
    UI Element Inspector calls the activated/editable filename a text field.
    Actually I want to modify one of the stock Finder scripts. I want to be able to select part of the file name in the active text field of the Finder window, then activate the script, *have the script pick up the selection* as a text string then use it internally.
    The bolded step is the one in question.
    Every attempt fails on the fact that the focus is lost from the "text field" and it reverts to the label for the filename, if I may use this distinction, (or to "FinderItem" in the parlance of UIEI) as soon as another process begins, it seems. So when the script becomes active, but before any of the commands is executed, the selection disappears.
    My guess is that it is not some absolute necessity but a setting that perhaps can be changed somehow.

  • Making JFrame Window Lose Focus to a Native Window

    How can i from within the same JFrame code or another class with the JFrame reference make JFrame lose focus to another native window on the desktop.
    Any tips

    In the core java API you can not make a native window take focus, you would have to use native code (JNI).
    The best you could do would be minimize the JFrame.

  • Frontmost app's Main window loses focus randomly

    Sep  1 12:04:52 retina.local WindowServer[91]: CGXSetWindowListAlpha: Invalid window 0
    Sep  1 12:04:53 retina.local Dock[35334]: CGSReleaseWindowList: called with 12 invalid window(s)
    I keep seeing these in the logs when it happens. It is obnoxious to be in an app and then hear the error noise because the app I am currently working in loses focus for the window I was working with. For example in Mail, I can be working and the window will lose focus so keyboard shortcuts stop working.

    I am having the same problem, and here is what I have figured out so far;
    I installed a stopwatch application so I can time it, and it is happening exactly every 5 minutes. Moving the mouse, changing the foremost app, activating the screensaver, or anything else I have tried doesn't interrupt the timer. It will still happen exactly every 5 minutes.
    I am currently looking in the console logs trying to find anything that is going off every 5 minutes.
    It happens even while typing suddenly I will get beeping because the top window I am typing on loses focus. The application name in the menu bar does remain the same as the current application, so another application doesn't seem to be coming forward, just the top window goes inactive.
    If anyone else is working on this issue and wants to see if their problem is exactly 5 minutes also, you can install the stopwatch application here; http://www.macupdate.com/app/mac/42353/timi
    I will update here is I figure out which application is causing this problem.
    The answer shouldn't be "reinstall your OS" for every little problem as Apple always says.
    Hopefully we can figure this out without having to resort to such a drastic measure.

  • Avoid window getting focus after pressing a mouse button on it

    I want that a window does not get focus although I press a mouse button on it, in Windows XP.
    I have search in Microsoft help and this fact is controlled by the Operating System itself. The notification that is sent after the user presses a mouse button is WM_MOUSEACTIVATE notification. The return value of this notification indicates the behaviour of the window after the mouse down, existing 4 options: MA_ACTIVATE, MA_ACTIVATEANDEAT; MA_NOACTIVATE & MA_NOACTIVATEANDEAT. The default is the first one, but I want to change the behaviour of the window to be the the third one: MA_NOACTIVATE, that does not activate the window, and does not discard the mouse message. The function that performs this is DefWindowProc according to the MSDN Help content.
    Any help about doing this in Labview? Is there any special function in Labview that allows setting this behaviour to a window or should I use a Windows dll? In that case how can be programmed? Has anyone done it before? I'm working with Labview 8.6.1, and I haven't found anything about this. Any help will be very useful.
    Thank you very much in advance.
    David Fernández

    It is the front panel window of a VI which I don't want to get focus. I have tried to achive this with property nodes, but the problem I think that cannot be solved in this way, because is the Operative System that gives the focus to the window when pressing a mouse button before Labview does anything. You can release the focus once the window have taken it with the Front Panel window focus property node, but what I really want is to keep the focus on the old window.
    My idea is that the VI act as a background of my application, so never can be over the rest of the windows. Some of them are floating but others are standard and I don't want to use modal windows, so I cannot solve this with the Window Appearance options.
    I have also tried to discard the mouse down in the Mouse Down? event, but I doesn't work, the window continues getting the focus although does not carry on any action.
    Any suggestion?
    Thank you for your interest
    David F

  • Adobe Reader XI moves to background (loses focus) after printing

    I have noticed that if another window is open (windowed or maximized) and you print from Adobe Reader (windowed or maximized) then as soon as you send the doc to the printer, the other window will suddenly be in front of your adobe reader window and you will have to click the Adobe icon at the bottom to bring it to the front again.
    It's sort of minor but annoying for some people here and I was wondering is anyone else noticing this and does anyone have an idea how to stop the window from jumping to the back as soon as you print?
    Please help me!!!!!

    Thanks for your response. I found the problem 1/2hr after posting my question. It had to do with the setting after hitting the print que. After installing the Adobe Reader XI the setting for destination in the print window change to save as PDF. Before it was set to my default printer. I never knew that there was other places for these documents could go. Never had to use them either.
    Again thanks for responding.

  • JButton loses Focus after a KeyPressed Event

    Hello.
    I have a simple form with a few textfields and buttons, everyone of this components has a KeyPressed Event associated, but i pressed a key (ENTER) on a button, it loses the focus and the next button catch it (i have a specified order setted).
    The point is this only happens in the buttons, the textfields and receiving the event don't lose the focus.
    Can someone tell what is wrong ?
    Thank you.

    I tryed to make a minimalist example to post here, but i couldn't reproduce the error, so i went back to try figure out what i missed.
    I commented all the lines where i had button.setEnabled(..) and now works great, still don't know why, but it seems at some point the button loses the focus when is setEnabled(false)this is what i was doing:
    private void LoginOKButtonKeyReleased(java.awt.event.KeyEvent evt) {                                         
            if (evt.getKeyCode() == java.awt.event.KeyEvent.VK_ENTER)
               button.setEnabled(false);
               WorkerLogin worker = new WorkerLogin();
               worker.execute();
    public class WorkerLogin extends javax.swing.SwingWorker<LoginResposta, Void>
             * Main task. Executed in background thread.
            @Override
            public LoginResposta doInBackground()
             * Executed in event dispatching thread
            //@Override
            public void done()
                try
                    LoginResposta resposta = get();
                    button.setEnabled(true);
    }Edited by: noe.rocha on Feb 14, 2008 9:56 AM

  • [SOLVED] stay fullscreen in flash videos when window loses focus

    I am using the awesome window manager, and am trying to view web videos (youtube, vimeo, various other flash players) in full screen on one monitor while doing something else on another monitor. I have seen people post issues with flash and other web-embedded videos and awesome, but those tend to relate to the videos getting tiled or being full screen behind the browser window or something like that. I am able to get fullscreen to work just fine, except when i transfer focus to another window, it pops out of full screen. Anyone have any ideas for keeping full screen even while the window doesnt have focus? Thanks!
    Last edited by youngmit (2014-06-17 19:19:22)

    Figured it out. I tried doing the same in Gnome, which had the same problem. Searching for linux more in general lead me to http://www.buttonhome.org/articles/23-l … itor-linux where they suggested going into libflashplugin.so and manually changing _NET_ACTIVE_WINDOW to something like __ET_ACTIVE_WINDOW, which did the trick.

  • Playback pauses when the window loses focus.  Can I fix that?

    When going through footage, I might be multitasking -- talking on chat, looking at to do lists, etc.  Whenever I tab away to some other application, playback pauses in Adobe Premiere Elements 13.  This is really annoying -- any way to turn that off?

    JustinPierce
    Your type of situation has been written about before and remains the same up to and including the current version 13.
    What you describe is what it is. There is no way to change that behavior. The Premiere Elements playback in progress stops when you
    switch to another application. No user turn off switch to prevent this from happening.
    ATR

Maybe you are looking for