Search found 976 matches

by Peter
Tue Jan 27, 2026 12:06 am
Forum: Showcase
Topic: MaterialSB brings Material Design to SpiderBasic.
Replies: 6
Views: 5551

Re: MaterialSB brings Material Design to SpiderBasic.

Very interesting! Thanks for sharing! Image
by Peter
Fri Jan 16, 2026 5:53 pm
Forum: Coding Questions
Topic: Babylon.js
Replies: 6
Views: 6471

Re: Babylon.js

In general, it would be worth testing whether it makes more sense to place the content of the HeaderSection BEFORE the include of spiderbasic.js.

But that doesn't help in general. babylon.js is quite large and takes time to load. If I call it up before it is completely loaded, you get an error ...
by Peter
Fri Jan 16, 2026 5:00 pm
Forum: Feature Requests and Wishlists
Topic: Event Handling
Replies: 5
Views: 9427

Re: Event Handling

nad wrote: Fri Jan 16, 2026 12:28 pmThe proglem is when displaying the table with html ...
Is there a need to use an HTML table? Have you ever looked at ListIconGadget()?

BTW: There is an easier way to read the JSON. Feel free to take a look at ExtractJSONList().

P.S.: Your code seems to be missing the plus sign (html + ...)
by Peter
Tue Jan 13, 2026 3:42 pm
Forum: General Discussion
Topic: SpiderBasic 3.20 is out !
Replies: 12
Views: 16641

Re: SpiderBasic 3.20 is out !

Image
by Peter
Mon Dec 22, 2025 1:30 pm
Forum: Coding Questions
Topic: MessageRequester does not run in WebView with macOS
Replies: 7
Views: 8797

Re: MessageRequester does not run in WebView with macOS

Ah, now I understand and can reproduce it. :idea:
by Peter
Sun Dec 21, 2025 3:25 pm
Forum: Coding Questions
Topic: MessageRequester does not run in WebView with macOS
Replies: 7
Views: 8797

Re: MessageRequester does not run in WebView with macOS

Unfortunately, I still can't reproduce it.

Image
by Peter
Sun Dec 21, 2025 12:58 am
Forum: Coding Questions
Topic: MessageRequester does not run in WebView with macOS
Replies: 7
Views: 8797

Re: MessageRequester does not run in WebView with macOS

I can't reproduce that.

Do you have a working code snippet for us?
by Peter
Tue Oct 14, 2025 10:09 am
Forum: Coding Questions
Topic: [Solved] Compiling MobileUI.sb for Android
Replies: 3
Views: 15769

Re: Compiling MobileUI.sb for Android

Madmix wrote: Tue Oct 14, 2025 9:28 amHowever, when I try to install it, I get an installation failure, both on a normal Android mobile and on an Android emulator (MEMu).
Can you tell us what this error message says?
by Peter
Wed Sep 10, 2025 1:36 pm
Forum: Coding Questions
Topic: Is there a way to color a panel?
Replies: 3
Views: 108353

Re: Is there a way to color a panel?

Here is a code that can be used to colour individual tabs:

Enumeration
#Window
#PanelGadget
EndEnumeration

Procedure SetPanelItemColor(Gadget, Item, ColorType, Color)

If GadgetType(Gadget) <> #PB_GadgetType_Panel
ProcedureReturn
EndIf

! try {

! const tabHeader = spider_GadgetID(v ...
by Peter
Sun Aug 10, 2025 7:45 pm
Forum: Coding Questions
Topic: Double recursion query
Replies: 4
Views: 41028

Re: Double recursion query

What do you expect? With fib(100), the procedure is run billions of times. It's understandable that the browser then crashes.

Here is a small code provided by ChatGPT:
EnableExplicit

Global Dim memo.q(100) ; Cache for memoization
Global naiveCount.q = 0 ; Counter for naive recursion calls
Global ...