3 posts, 3 voices
, Tagged: virtual BUG lcd window
|
|
Hi Brian and everyone! I have a curious problem. I accidentally closed the java window that opens when you attach an LCD to a virtual Bug, the one that emulates the real screen in the Bug. And now I don’t know how to open it again. I attached LCD to other slots, erase the settings, even reinstalled Eclipse (now 3.5) and the plugins, deleting all the workspace and program settings. Maybe there is a hidden configuration file somewhere else. How can I reenable that window? By the way, I was in the office a couple of days (May 21st and 22nd). I’m Alvaro, the chilean guy, if you remember me. Cheers! |
|
|
Are you sure it’s not in your code? The convention for Frame objects is that they’re not visible until you:
frame.setVisible(true); Also helps to set some dimensions (by default on bug you get 320×200): frame.setSize(320,200);
|
|
|
What happens if you use a known working application such as SimpleGUI? |