Search found 161 matches

by Caronte3D
Thu Jun 19, 2025 9:27 am
Forum: General Discussion
Topic: Homepage Error
Replies: 3
Views: 1233

Re: Homepage Error

@Fred migrated the forums to a new server, may be the download section was not fully migrated.
by Caronte3D
Sat Jun 14, 2025 9:27 am
Forum: Bugs Reports
Topic: No image on the spash screen (Android)
Replies: 0
Views: 2007

No image on the spash screen (Android)

If your device has a small screen (i.e. 4.5"), you cannot see the splash image, only the background color is displayed.
by Caronte3D
Wed Jun 11, 2025 9:44 am
Forum: Feature Requests and Wishlists
Topic: About the new native notification library for mobile apps...
Replies: 7
Views: 3725

Re: About the new native notification library for mobile apps...

I know, the notification can show even with the app closed, but on this case you are limited a notifications created when the app is running (timed notifications).
I mean (in example) a notification that is shown when a background process trigger something (not time) like an update for the app, an ...
by Caronte3D
Wed Jun 11, 2025 5:50 am
Forum: Coding Questions
Topic: Incorrect div -HTMLMobile
Replies: 6
Views: 3299

Re: Incorrect div -HTMLMobile

I think would be better if the HtmlMobile write the code as is.
This way we can do things like wrap a fragment of SB code like this:
HtmlMobile("<div class=" + Chr(34) + "card" + Chr(34) + ">")
...
SB code
...
HtmlMobile("</div>")

I miss that feature many times.

Also would be nice if SB add a ...
by Caronte3D
Tue Jun 10, 2025 5:39 pm
Forum: Feature Requests and Wishlists
Topic: About the new native notification library for mobile apps...
Replies: 7
Views: 3725

About the new native notification library for mobile apps...

Whould be awesome if we can run processes in background to make that notification library more useful.
I think already exists a cordova plugin for that, but I don't tested.
by Caronte3D
Sun Jun 08, 2025 7:57 pm
Forum: Coding Questions
Topic: How to read keyboard keys into a window
Replies: 5
Views: 4024

Re: How to read keyboard keys into a window

Your code is... "strange" to me :?
Anyway I don't know if I understand you well.
I can get key inputs (if the canvas was focused) this way:
Debug ""
Procedure Gadget_event()
If EventType()=#PB_EventType_Input
Debug Chr(GetGadgetAttribute(0, #PB_Canvas_Input))
EndIf
EndProcedure

OpenWindow(0, 0 ...
by Caronte3D
Mon Jun 02, 2025 10:22 am
Forum: Bugs Reports
Topic: [Done] Copy Log doesn't seem to work
Replies: 5
Views: 14488

Re: Copy Log doesn't seem to work

Works well with SB 3.10 beta1
by Caronte3D
Mon Jun 02, 2025 9:24 am
Forum: General Discussion
Topic: SpiderBasic 3.10 is out !
Replies: 25
Views: 19668

Re: SpiderBasic 3.10 beta 1 is ready !

We must update the Java version?
I get this error trying your native notification example (on Android):
A problem occurred evaluating project ':app'.
> Failed to apply plugin 'com.android.internal.application'.
> Android Gradle plugin requires Java 17 to run. You are currently using Java 11.

EDIT ...