Search found 319 matches
- Fri Jul 03, 2026 10:24 am
- Forum: Bugs Reports
- Topic: [Done] NextSelectedFile() is not a function?
- Replies: 3
- Views: 1575
[Done] NextSelectedFile() is not a function?
; Example from : https://www.spiderbasic.com/documentation/requester/openfilerequester.html
Procedure RequesterSuccess()
; Process all the selected filename
;
While NextSelectedFile()
Debug "Filename: " + SelectedFileName()
Wend
EndProcedure
Procedure ButtonEvent()
OpenFileRequester ...
- Tue Apr 28, 2026 6:47 am
- Forum: Tricks 'n' Tips
- Topic: WaveSurfer for SB
- Replies: 4
- Views: 1687
Re: WaveSurfer for SB
Great, that's awesome. I could really use that. Thanks a lot 
- Tue Apr 28, 2026 6:40 am
- Forum: Tricks 'n' Tips
- Topic: Load JS library before SB libs
- Replies: 4
- Views: 2686
Re: Load JS library before SB libs
Well done
Thanks, Danilo!
- Mon Feb 16, 2026 10:25 am
- Forum: Coding Questions
- Topic: HTML from Markdown
- Replies: 3
- Views: 6799
Re: HTML from Markdown
Nice! Thx for sharing, Ken
- Fri Jan 16, 2026 8:03 am
- Forum: Coding Questions
- Topic: Babylon.js
- Replies: 8
- Views: 15760
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: 8
- Views: 15760
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: 9429
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: 17473
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: 35186
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: 35186
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 ...