Search found 10 matches

by vividpixel
Tue Oct 15, 2024 4:36 pm
Forum: The PureBasic Editor
Topic: [Theme] Solarized (Light and Dark)
Replies: 3
Views: 7041

Re: [Theme] Solarized (Light and Dark)

Thank you, Kenmo. Selenized Black & Dark are themes I can appreciate!
by vividpixel
Fri Aug 23, 2024 2:01 pm
Forum: Game Programming
Topic: bE3D Engine Wrapper for purebasic
Replies: 47
Views: 33345

Re: bE3D Engine Wrapper for purebasic

chi wrote: Tue Aug 13, 2024 11:13 am Irrlicht :wink:
It would be nice as Irrlicht since that engine is cross-platform.
by vividpixel
Fri Aug 23, 2024 1:56 pm
Forum: Off Topic
Topic: Forum: Please try again in 1 second.
Replies: 7
Views: 2839

Re: Forum: Please try again in 1 second.

It's normal for forums to impose a limitation on the frequency a user can submit a search. I assume this would prevent bots and automated scripts from querying excessively.
by vividpixel
Thu May 04, 2023 2:05 pm
Forum: Mac OSX
Topic: Dark Mode Help Files
Replies: 2
Views: 717

Re: Dark Mode Help Files

AZJIO: On MacOS, PureBasic and SpiderBasic do not use CHM files for help, so I made these regular HTML files. I don't know how often the help gets updated but these are also based on PureBasic 6.02 Beta 2, and SpiderBasic 2.50 Beta 1. :)
by vividpixel
Thu May 04, 2023 12:15 am
Forum: Mac OSX
Topic: Dark Mode Help Files
Replies: 2
Views: 717

Dark Mode Help Files

I've created these packages for PureBasic and SpiderBasic.
https://vividpixel.co/user/pages/01.home/04.spiderbasic-dark-mode-help-files-macos/macos-spiderbasic-dark-help-1.png
https://vividpixel.co/images/d/2/f/6/4/d2f6400a478eb951cffee89ae62911e3938063c5-macos-spiderbasic-dark-help-2.png ...
by vividpixel
Fri Sep 09, 2022 4:57 pm
Forum: General Discussion
Topic: Mobile version of the forum shows phpBB logo
Replies: 2
Views: 680

Re: Mobile version of the forum shows phpBB logo

That's true for most themes/styles on the forum, even on desktop.
Image
by vividpixel
Wed Aug 17, 2022 5:17 pm
Forum: Coding Questions
Topic: When to use #PB_Any instead of enumerated IDs
Replies: 3
Views: 558

Re: When to use #PB_Any instead of enumerated IDs

Thank you STARGÅTE, I had overlooked that upper limit from the docs.
Do you happen to know when it is appropriate to use #PB_Any? Docs show it in use for windows and the menu itself. I'm sure I will figure out over time where it works and doesn't, either way.
by vividpixel
Wed Aug 17, 2022 4:59 pm
Forum: Coding Questions
Topic: When to use #PB_Any instead of enumerated IDs
Replies: 3
Views: 558

When to use #PB_Any instead of enumerated IDs

Example 1 - Fails
menu_button_about = MenuItem(#PB_Any, "&About" + Chr(9) + "Shortcut")
Later in the code...
Case menu_button_about
MessageRequester("About " + #Program_Title,
"About Text", #PB_MessageRequester_Info)

Fails to display the MessageRequester, which I'm thinking is due to it ...
by vividpixel
Wed Aug 10, 2022 9:38 pm
Forum: Linux
Topic: Simple install of PureBasic (Ubuntu, Mint, Raspberry)
Replies: 60
Views: 82932

Re: Simple install of PureBasic (Ubuntu, Mint, Raspberry)

AZJIO wrote: Wed Aug 10, 2022 9:33 pm
vividpixel wrote: Wed Aug 10, 2022 9:00 pm~/Desktop/
I don't have any folder. I have a folder name in Russian. Many will have problems.
Simple solution is just change "Desktop" to the Russian equivalent, yeah?
by vividpixel
Wed Aug 10, 2022 9:00 pm
Forum: Linux
Topic: Simple install of PureBasic (Ubuntu, Mint, Raspberry)
Replies: 60
Views: 82932

Unpack PureBasic & Create Shortcut via Terminal Commands

These instructions only streamline the process of extracting PureBasic and creating a functional desktop shortcut. You will still want to install the other necessary packages using apt-get. Tested on Ubuntu 22.04.1 LTS 64-bit.

Creating Apps folder in current user's home directory.
mkdir ~/Apps ...