There is an annoying Window called "Debug" which i cant close. Do you know how to get rid of it?
The popup appears when you trigger this menu (by a click or by a keyboard shortcut). It can be dismissed using Esc key or by choosing a configuration to debug and pressing Enter.
Related
When switching to a line with user input, the variable that should store it is not initialized in the "variables" tab, which is probably logical, but I don't understand why.How do I simulate user input in debug mode?
screenshot
Make sure Console tab is enabled for the debugger tool window layout. If you can't see it, try restoring the default layout:
You can also Drag & Drop the console tab to the bottom of the tool window so that it's visible at the same time:
Focus the Console tab and type what you need.
Have issue with clicking allow or block button in the attached screen
If there is a way to disable that window that will also help. When doing manually pressing Enter/Esc on keyboard will cancel that popup
Tried different approaches.
1) getDriver().switchTo().alert().accept(): No alert present exception
2)action.sendKeys(Keys.ESCAPE);
action.sendKeys(Keys.ENTER);
3)Tried Robot framework also
4)Disabled notifications/popup is not disabling this popup
Any inputs will help
did any one faced this issue. How to resolve it.
I have downloaded Netbeans 8.1 on OSX and when I try to install Darcula theme it is not possible. I press install and the way IDE responds is like situation when user dialogue pops out which locks the application until user acts upon the dialogue. However this dialogue is not visible! The way I know it is there is because when I press ESC button, IDE is responsive back again.
The same happens when I go to preferences and click "Import" button. Application locks itself but I don't see any dialogue that I can do something about.
This happens also on Eclipse. As you can see in a picture below after I clicked "Add libraries", tab "Libraries" turned from blue to gray because some unvisible window has opened and rest of IDE is unresponsive until I press "ESC"(which usually closes the modal window).
EDIT:
I just found out that this happens when IDE is maximized. So I would like to know if I can fix it somehow that I don't have to un-maximize IDE everytime editor shows me some dialog.
For Eclipse this has been reported as bug 478975 but as yet there is no fix.
I've made a Menu bar and when i click on Help>>about a popup window jumps.
i also put on the popup window a button and i'm wondering what's the command i should use to close the popup window in the button action listener but not abort the program.
(i tried before to use (System.exit(0)) but it's abort the program.
i'm wondering what's the command i should use to close the popup window
You would use:
window.dispose();
Or better yet just use a JOptionPane to display the "About" dialog. The JOptionPane will build the dialog and buttons for you.
Check out the section from the Swing tutorial on How to Make Dialogs for more information and examples.
Is there any setting somewhere in Eclipse IDE, to automatically popup/show progress view, when some operation in progress ?
Go to Window > Preferences > General. In the General tab, uncheck the checkbox that says 'Always run in background'.
Once you do this, most operations will create a popup window showing progress of the operation, and you can also choose to push it to background if you wish to continue some other task. There is also a checkbox in the popup window which says 'Always run in background'. Never check that if you like seeing the popup window. If you do happen to check it by mistake, follow the above steps to restore the setting to your preference.