I have noticed recently that in net beans sometimes lines are left on the screen and aren't cleaned up. I cant get a screen shot for some reason so an image from my phone will have to do:
Is there a setting I need to change, or something? or is it a problem with my monitor?
Nope, just minimalize/resize window to redraw
Related
On two different laptops, when I run my javafx application on eclipse-- the background and objects that is loaded onto the screen is not where they are suppose to be positioned. For example, the ImageView background is supposed to be centered and fill the screen, but instead it appears immediately to the bottom-right. Only when I resize the screen (doesn't matter how big) but the background and objects automatically reposition themselves where they should be. I believe a possible cause is my eclipse settings, except they're all defaulted. I don't think it's something wrong with my code, because when I run the same code, the same program on a different desktop and on another laptop, everything appears as it should. I tried changing my screen resolution but that has no effect. I also tried changing using css to set and position my background but same results.
Has anyone had a similar problem or have any suggestions to fix this?
Please help! Thank you.
Tried the other solutions and can't find the option to line wrap. i never write code with lines this much long and am getting frustrated of that horizontal scroll whenever i try to scroll down and my fingers move even a little bit diagonally.
gif addressing the problem : http://g.recordit.co/dhuj8y0JZP.gif
Restart your IDE. You are using a Mac and have probably not closed it for days. This happens when you use the zoom with alt + scroll down
restart IDE. Nothing wrong in preferences.
I just started to program in javafx, I installed the java 1.8 beta jdk and a beta build of eclipse. I followed the circle example. All goes well except when i resize the window that comes up the screen flickers for a bit, and then goes completely black. I then added a label to the scene, and weirdly enough the label still shoes when the screen goes black. I checked to make sure i have the latets video card drivers installed, so that does not seem te be the issue. I tried to search online, but no one seems to have this issue (only issues that their screen is black to begin with)
What could possibly be the issue that causes my window to go black once i resize it.
EDIT:
It seems that when i start to move the window around the circles appear for a split second and then disappear again
This issue only seems to occur since I upgraded from 1.5 to 1.6
The main JFrame, randomly seems to get stuck infront of every other application in windows.
Even another JDialog popping up set to alwaysontop(true) will be behind this main JFrame.
Any ideas on what could be causing this issue? / Any ideas for solutions?
Never had this issue before on Java 5.
Sorry guys it seems it was a program used as a screen splicer that was causing an issue with th Java program. Once the screen splicer was uninstalled, the issue has not occured.
I also have this issue for a long time now and was able to reproduce it.
While a modal always-on-top dialog is open in front of the frame, click the frame. The frame inherits the always-on-top behaviour, even if it is not set to stay on top.
I found an article about this behaviour here.
The simple solution: Dialogs must not be modal and always on top at the same time. Modalarity already includes an always-on-top-behaviour.
When my program starts up, the comboboxes (there are 2 that are having this problem) do show up. However, when I click on the arrow one item (there should be 7 items showing) shows up and there is no border around the list. If I drag my mouse over the area all the other items appear, but still no border.
This is only happening at our warehouse which is about 400 yards from the main office. We have fiber going over there and are on the same LAN. I'm not sure if this is a network issue or a java issue.
Any help is very much appreciated.
Chris
I remotely logged into the computer this morning to try this out for myself, with different versions of the package (one that was built using 1.4.1_18 and one with 1.4.1_15). Turns out that if I minimized the program and then maximized it, everything was fine (using both versions).
I commented out setExtendedState(getExtendedState() | MAXIMIZED_BOTH) which comes after everything is initialized for the frame. Rebuilt, restarted and the borders are there along with all the items, so it now works perfectly.
Does anyone know why this would be causing a problem?