Search found 120 matches
- Thu Jul 31, 2025 6:28 pm
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 20241
Re: SpiderBasic 3.10 is out !
Too bad, I'm a month too late, but I'm not going to buy another license now. Maybe next time.
- Wed Jul 02, 2025 6:56 pm
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 20241
Re: SpiderBasic 3.10 beta 2 is ready !
Whoooo, HeaderSection is a nice one! Thanks!
- Tue Jun 03, 2025 9:08 pm
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 20241
Re: SpiderBasic 3.10 beta 1 is ready !
Code: Select all
- Added: Android app creation support for Linux and MacOS !

- Thu May 15, 2025 3:43 pm
- Forum: Showcase
- Topic: S.P.I.D.L.E
- Replies: 7
- Views: 12996
Re: S.P.I.D.L.E
Thanks Fred and everyone, it's nice to see SPIDLE getting some attention. :D
Yes, it's inspired by Cookie Clicker, for me the best idle game by far. I also like Spaceplan and Fill the Oceans. Other nice ones are Mr.Mine, Idle Wizzard or Idle Cave Miner.
I plan to some day build a large idle ...
Yes, it's inspired by Cookie Clicker, for me the best idle game by far. I also like Spaceplan and Fill the Oceans. Other nice ones are Mr.Mine, Idle Wizzard or Idle Cave Miner.
I plan to some day build a large idle ...
- Thu Feb 13, 2025 3:26 pm
- Forum: General Discussion
- Topic: SpiderBasic 3.02 is out !
- Replies: 28
- Views: 144529
Re: SpiderBasic 3.02 is out !
Thanks, Fred, great news!
- Thu Dec 05, 2024 8:56 pm
- Forum: Coding Questions
- Topic: Can i create a transparent Sprite with CreateSprite()?
- Replies: 2
- Views: 5194
Re: Can i create a transparent Sprite with CreateSprite()?
Use #PB_Sprite_AlphaBlending during creation.
EnableExplicit
Procedure Render()
ClearScreen(#Red)
DisplayTransparentSprite(0,0,0)
FlipBuffers()
EndProcedure
Procedure Main()
OpenScreen(800,600,32,#Null$)
SetFrameRate(60)
CreateSprite(0,128,128, #PB_Sprite_AlphaBlending)
StartDrawing ...
EnableExplicit
Procedure Render()
ClearScreen(#Red)
DisplayTransparentSprite(0,0,0)
FlipBuffers()
EndProcedure
Procedure Main()
OpenScreen(800,600,32,#Null$)
SetFrameRate(60)
CreateSprite(0,128,128, #PB_Sprite_AlphaBlending)
StartDrawing ...
- Sat Nov 30, 2024 6:43 pm
- Forum: Coding Questions
- Topic: How to use a custom font?
- Replies: 15
- Views: 29216
Re: How to use a custom font?
You could try this:
https://forums.spiderbasic.com/viewtopic.php?t=1687
Worked fine for me in several projects.
https://forums.spiderbasic.com/viewtopic.php?t=1687
Worked fine for me in several projects.
- Sun Sep 29, 2024 5:30 pm
- Forum: Coding Questions
- Topic: Moving a Gadget with a Tablet?
- Replies: 14
- Views: 17442
Re: Moving a Gadget with a Tablet?
It works!
This finally solves an old issue in one of my apps.
Thank you very much, Fred!

Thank you very much, Fred!
- Sat Sep 28, 2024 2:20 pm
- Forum: Coding Questions
- Topic: Moving a Gadget with a Tablet?
- Replies: 14
- Views: 17442
Re: Moving a Gadget with a Tablet?
Yes, please a short example. Thanks!
- Sat Sep 14, 2024 8:12 am
- Forum: General Discussion
- Topic: SpiderBasic 3.01 is out !
- Replies: 12
- Views: 40165
Re: SpiderBasic 3.01 is out !
Wow, that was fast. Thanks, Fred!