I want to use the Java viewer as a view-only application and to default to a 256 color display. I know that the server application can be setup to reject remote mouse and keyboard actions and to disallow file transfer, but I'd also like to disable the viewer buttons or remove them altogether and as I said, have it default to a 256 color display.
I am both a Java and .Net developer, so I can see that I can make changes to the applet code, recreate the jar and then recompile the server executable, but I'm hoping I'm missing an easier way to do this.
Any ideas would be appreciated.
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
View only - 256 colors
Re: View only - 256 colors
Hi,
I wanted it to default to view only with full colour. The only way to do this I could find was to mod and recompile the JavaViewer and UltraVNC server.
// Set up defaults
choices[encodingIndex].select("Tight");
choices[compressLevelIndex].select("Default");
choices[jpegQualityIndex].select("6");
choices[cursorUpdatesIndex].select("Disable");
choices[useCopyRectIndex].select("Yes");
choices[eightBitColorsIndex].select("Full");
choices[mouseButtonIndex].select("Normal");
choices[viewOnlyIndex].select("Yes");
choices[shareDesktopIndex].select("Yes");
Changing the values between the quotes accordingly.
Cheers,
Nick.
I wanted it to default to view only with full colour. The only way to do this I could find was to mod and recompile the JavaViewer and UltraVNC server.
// Set up defaults
choices[encodingIndex].select("Tight");
choices[compressLevelIndex].select("Default");
choices[jpegQualityIndex].select("6");
choices[cursorUpdatesIndex].select("Disable");
choices[useCopyRectIndex].select("Yes");
choices[eightBitColorsIndex].select("Full");
choices[mouseButtonIndex].select("Normal");
choices[viewOnlyIndex].select("Yes");
choices[shareDesktopIndex].select("Yes");
Changing the values between the quotes accordingly.
Cheers,
Nick.