Search found 182 matches

by the.weavster
Mon Jul 18, 2022 8:08 am
Forum: General Discussion
Topic: Instructions for creating an Android app
Replies: 28
Views: 5362

Re: Instructions for creating an Android app

There are pinned posts at the top of Tips and Tricks
by the.weavster
Thu Feb 24, 2022 8:33 am
Forum: General Discussion
Topic: Has SpiderBasic Development Stopped
Replies: 14
Views: 7412

Re: Has SpiderBasic Development Stopped

Kurzer wrote: Wed Feb 23, 2022 4:08 pm If your project needs a dynamic web interface and should be displayed correctly on smartphone, tablet and PC, then don't do it.
This particular app is really too data dense to be workable on a smartphone/tablet but I decided not to use SpiderBasic anyway as it seems to be abandoned :(
by the.weavster
Wed Oct 20, 2021 8:26 am
Forum: General Discussion
Topic: Has SpiderBasic Development Stopped
Replies: 14
Views: 7412

Re: Has SpiderBasic Development Stopped

.
Now I have a test of faith :?
I have a new project that requires a web front end, do I use SpiderBasic or not :?:
by the.weavster
Tue Aug 24, 2021 8:15 pm
Forum: General Discussion
Topic: Has SpiderBasic Development Stopped
Replies: 14
Views: 7412

Re: Has SpiderBasic Development Stopped

I just think it's taking a back seat because of the big change that's in progress with PureBasic. Fred was weighing up alternative UI libraries so I'm confident we'll see some enhancements to SB once PB's C backend is in shape. I think Microsoft's introduction of WebView2 presents the opportunity fo...
by the.weavster
Thu Jun 03, 2021 6:40 am
Forum: Javascript
Topic: What am I doing wrong when importing a JS script?
Replies: 11
Views: 13575

Re: What am I doing wrong when importing a JS script?

Peter wrote: Wed Jun 02, 2021 8:48 pmHowever, I don't know if there are side effects.
That's why I restored it after the imports complete ... I don't know either :mrgreen:
by the.weavster
Thu May 27, 2021 8:12 pm
Forum: Javascript
Topic: What am I doing wrong when importing a JS script?
Replies: 11
Views: 13575

Re: What am I doing wrong when importing a JS script?

Paul wrote: Thu May 27, 2021 8:02 pm Browser Dev Tools shows
Uncaught SyntaxError: Unexpected token '{' spiderbasic.js:279
That's because the SB IDE has altered the case of the JavaScript code.
You have to go to:
Preferences->Editor->Editing->Enable Case Correction
to stop it doing that (untick the checkbox)
by the.weavster
Thu May 27, 2021 5:08 pm
Forum: Javascript
Topic: Babylon.js : Problem with the latest release
Replies: 29
Views: 24063

Re: Babylon.js : Problem with the latest release

I think you guys may be interested in this, I tried it with Babylon also and it seems to work (I get BABYLON in the global namespace).
by the.weavster
Thu May 27, 2021 4:47 pm
Forum: Javascript
Topic: What am I doing wrong when importing a JS script?
Replies: 11
Views: 13575

Re: What am I doing wrong when importing a JS script?

I have found how to import Metro UI. It's another library that detects define in the global namespace and it's that that interferes with LoadScript() so what I have done is temporarily hidden define until the imports are completed: Global nLoaded Global nImports = 2 Procedure Main() EnableJS var btn...
by the.weavster
Wed May 26, 2021 8:24 pm
Forum: Coding Questions
Topic: Spiderbasic invents query strings...?
Replies: 6
Views: 1454

Re: Spiderbasic invents query strings...?

I think you need to include the file extension in the URL. That worked for me with Apache, without the extension I got 404. Protected URL.s = "http://127.0.0.1:8080/cgi-bin/cgiprinter.exe" Sometimes you see a CGI's extension edited to be .cgi in order to keep the client side scripts platfo...