Palidino
Palidino
LTLeaning Technologies
Created by Palidino on 12/3/2024 in #support
When adding tailscaleAuthKey, nothing loads and no console messages
<applet
archive="myjar.jar"
code="MainClass"
height="100%"
width="100%"
></applet>
<script>
(async function () {
await cheerpjInit({
});
})();
</script>
<applet
archive="myjar.jar"
code="MainClass"
height="100%"
width="100%"
></applet>
<script>
(async function () {
await cheerpjInit({
});
})();
</script>
Changing it to
await cheerpjInit({
tailscaleAuthKey: "KEY"
});
await cheerpjInit({
tailscaleAuthKey: "KEY"
});
Gets me "load: class MainClass not found.", where the first bit of code works fine.
10 replies
LTLeaning Technologies
Created by Palidino on 12/3/2024 in #support
When adding tailscaleAuthKey, nothing loads and no console messages
I did run into a different issue though. Using a key works fine for running a jar, but if I were to use the applet tag, my main class stops being found if I add tailscaleAuthKey. If I remove it, it finds my main class fine
10 replies
LTLeaning Technologies
Created by Palidino on 12/3/2024 in #support
When adding tailscaleAuthKey, nothing loads and no console messages
Thanks for the quick reply! I ended up copying the partial key displayed on the keys page rather than the full key
10 replies
LTLeaning Technologies
Created by Palidino on 12/3/2024 in #support
When adding tailscaleAuthKey, nothing loads and no console messages
<script>
(async function () {
await cheerpjInit({
tailscaleAuthKey: "MY_KEY"
});
cheerpjCreateDisplay(-1, -1, document.body);
cheerpjRunMain(
"...",
"..."
);
})();
</script>
<script>
(async function () {
await cheerpjInit({
tailscaleAuthKey: "MY_KEY"
});
cheerpjCreateDisplay(-1, -1, document.body);
cheerpjRunMain(
"...",
"..."
);
})();
</script>
10 replies