I am working on a game using Java Applets, meant to be played in the JDK AppletViewer, and I have run into an issue. The status bar at the bottom of the applet (the brownish one that says "Applet Started") looks bad with the game playing above. On recommendation from:
http://www.coderanch.com/t/256541/Applets/java/JFrame-applet
I added the permission "showWindowWithoutWarningBanner". However, upon adding this to my security policy: permission java.awt.AWTPermission "showWindowWithoutWarningBanner";
So I open the applet, but the status bar is still there. I can confirm that the Security Policy file is being used, as I am able to read and write using the same Policy file.
2nd Attempt, tried setting the status to null using setStatus(null);
to see if that would finish the job but that only removed the "Applet Started" text, the brownish status bar is still there. Any ideas if I am doing something wrong, or if there are any next steps to take?