Search found 316 matches
- Mon Feb 16, 2026 10:25 am
- Forum: Coding Questions
- Topic: HTML from Markdown
- Replies: 2
- Views: 751
Re: HTML from Markdown
Nice! Thx for sharing, Ken
- Fri Jan 16, 2026 8:03 am
- Forum: Coding Questions
- Topic: Babylon.js
- Replies: 6
- Views: 6148
Re: Babylon.js
In other words: the order in which JavaScript libraries are initialized matters!
This works (created with HtmlPreProcessor)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="user-scalable=no, width=device-width, height=device-height, initial-scale=1, minimum ...
This works (created with HtmlPreProcessor)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="user-scalable=no, width=device-width, height=device-height, initial-scale=1, minimum ...
- Wed Jan 14, 2026 8:23 am
- Forum: Coding Questions
- Topic: Babylon.js
- Replies: 6
- Views: 6148
Re: Babylon.js
Unfortunately, HeaderSection inserts the code at the end of the head section.
For this to work correctly, you need the HtmlPreprocessor.
HeaderSection
<canvas id="renderCanvas"></canvas>
EndHeaderSection
;! <HtmlPreprocessor>
;! [
;! {
;! "search": "</title>",
;! "replace": "</title>\n\n<meta ...
For this to work correctly, you need the HtmlPreprocessor.
HeaderSection
<canvas id="renderCanvas"></canvas>
EndHeaderSection
;! <HtmlPreprocessor>
;! [
;! {
;! "search": "</title>",
;! "replace": "</title>\n\n<meta ...
- Thu Nov 27, 2025 8:28 am
- Forum: Coding Questions
- Topic: Anyone made Cordova plugin for given .aar library?
- Replies: 1
- Views: 5143
Re: Anyone made Cordova plugin for given .aar library?
ChatGPT is quite good or Claude from Anthropic https://claude.ai
- Fri Nov 14, 2025 9:33 am
- Forum: Javascript
- Topic: AceEditor Module Error on loading ext-lang_tools.js
- Replies: 2
- Views: 9779
Re: AceEditor Module Error on loading ext-lang_tools.js
ChatGPT means:
Your problem had two main causes:
Ace was loaded through Dojo’s require(), so Ace’s internal modules (like ace/lib/dom.js, ace/range.js, etc.) were requested from
:9080/spiderbasic/libraries/javascript/ace/...
Those files don’t exist there ⇒ 404 errors.
You were using a non ...
Your problem had two main causes:
Ace was loaded through Dojo’s require(), so Ace’s internal modules (like ace/lib/dom.js, ace/range.js, etc.) were requested from
:9080/spiderbasic/libraries/javascript/ace/...
Those files don’t exist there ⇒ 404 errors.
You were using a non ...
- Thu Nov 13, 2025 10:17 am
- Forum: Coding Questions
- Topic: Jitsi in a webgadget
- Replies: 19
- Views: 17625
Re: Jitsi in a webgadget
Which devices did you use to test the site https://www.highoramic.de/app/Jitsi/index.html ?
It worked here with Safari & Firefox on iOS.
It worked here with Safari & Firefox on iOS.
- Wed Nov 12, 2025 9:09 am
- Forum: Coding Questions
- Topic: Jitsi in a webgadget
- Replies: 19
- Views: 17625
Re: Jitsi in a webgadget
As I already wrote, Jitsi must be loaded first. I mean in the index.html that is generated when creating the web app.
This entry:
<script src="https://meet.jit.si/external_api.js"></script>
must be loaded before the Spiderbasic app.js.
Unfortunately, the HeaderSection function adds it after app.js ...
This entry:
<script src="https://meet.jit.si/external_api.js"></script>
must be loaded before the Spiderbasic app.js.
Unfortunately, the HeaderSection function adds it after app.js ...
- Tue Nov 11, 2025 11:15 am
- Forum: Coding Questions
- Topic: Jitsi in a webgadget
- Replies: 19
- Views: 17625
Re: Jitsi in a webgadget
@Stefan: What do you mean by “the code below doesn't work”?
It won't compile, won't run, doesn't open Jitsi, or doesn't activate the multimedia functions?
Have you edit the index.html?
With the HeaderSection, you can add your own code when creating the index.html.
Unfortunately, it will be added ...
It won't compile, won't run, doesn't open Jitsi, or doesn't activate the multimedia functions?
Have you edit the index.html?
With the HeaderSection, you can add your own code when creating the index.html.
Unfortunately, it will be added ...
- Mon Nov 10, 2025 9:06 am
- Forum: Coding Questions
- Topic: Jitsi in a webgadget
- Replies: 19
- Views: 17625
Re: Jitsi in a webgadget
I just saw that Jitsi offers an iFrame API. That works. You just have to manually edit index.html and move the script to the top.
<script src="https://meet.jit.si/external_api.js"></script>"
<script type="text/javascript" src="app.js?t=1762765235"></script>
@Fred: Is it possible to control ...
<script src="https://meet.jit.si/external_api.js"></script>"
<script type="text/javascript" src="app.js?t=1762765235"></script>
@Fred: Is it possible to control ...
- Mon Nov 10, 2025 8:47 am
- Forum: Coding Questions
- Topic: How can I scroll a Webside in a Wegdadget?
- Replies: 1
- Views: 5368
Re: How can I scroll a Webside in a Wegdadget?
Please clarify what exactly you mean. Do you mean how you can scroll as a user, or how you can scroll to an anchor, etc. using JavaScript?