Search found 163 matches

by Caronte3D
Sat Aug 23, 2025 8:17 pm
Forum: Coding Questions
Topic: Read barcodes
Replies: 4
Views: 92650

Re: Read barcodes

Search for a Cordova plug-in, for sure exists a way to use ir on SB.
by Caronte3D
Sat Aug 23, 2025 8:11 pm
Forum: Bugs Reports
Topic: SB 3.10 - Error in the dialog library (gridbox, singlebox)?
Replies: 1
Views: 2032

Re: SB 3.10 - Error in the dialog library (gridbox, singlebox)?

I don't have an answer to your question, but in such a case I would use: colexpand='yes' :P
by Caronte3D
Thu Jun 19, 2025 9:27 am
Forum: General Discussion
Topic: Homepage Error
Replies: 3
Views: 3949

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: 4491

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: 5874

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: 5358

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: 5874

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: 5795

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 ...