Open Camera doesn’t currently offer a setting to lock or force a fixed zoom level across reconnects, so when the Bluetooth remote reconnects the zoom can reset to 1×. The most reliable workaround is to use digital zoom via the on-screen control just before recording or switch to a camera profile where zoom is less likely to reset. You can also report this as a feature request or bug to the Open Camera developer, as it’s a known limitation rather than a user setting.
The first error is caused by a typo in your javac command—you’re missing a dot before java in the wildcard. It should be robots\eu\ase\jrobot*.java, not *java. Once the classes compile correctly, also ensure your classpath includes both robocode.jar and the current directory (-cp .;libs\robocode.jar), otherwise Java won’t find robocode.Robocode.
Amazon Corretto JRE 8 is not enough for GloboNote in most cases. GloboNote typically depends on JavaFX, which is not bundled with Corretto JRE 8. That’s why it fails to run, even though the Java version matches. What works: Use JDK 8 (with JavaFX included) instead of JRE or Install OpenJFX 8 separately and add it to the classpath Ensure JAVA_HOME points to the JDK and you’re using the correct 32/64-bit build Run via java -jar globonote.jar from the JDK In short: Corretto JRE 8 alone won’t work; you...