Search found 188 matches

by Paul
Thu Jun 25, 2026 5:56 pm
Forum: Feature Requests and Wishlists
Topic: SetGadgetItemColor
Replies: 2
Views: 464

Re: SetGadgetItemColor

I actually found this and it does what I need...
https://www.purebasic.fr/german/viewtop ... 27#p349255
by Paul
Thu Jun 25, 2026 4:10 pm
Forum: Feature Requests and Wishlists
Topic: SetGadgetItemColor
Replies: 2
Views: 464

SetGadgetItemColor

Would be really nice to have a SetGadgetItemColor() command so we can color individual cells of a ListIconGadget just like in PureBasic :D

While we wait for this feature request, it there a way to do it with javascript?
Thanks !!
by Paul
Tue May 05, 2026 1:39 pm
Forum: Coding Questions
Topic: Text Input on Mobile
Replies: 3
Views: 2187

Re: Text Input on Mobile

Thanks Danilo !!!
Exactly what I needed :)
by Paul
Tue May 05, 2026 12:53 am
Forum: Coding Questions
Topic: Text Input on Mobile
Replies: 3
Views: 2187

Text Input on Mobile

How would I do an equivalent to a EditorGadget using mobile mode since there is no EditorMobile ?

The HtmlMobile command looked promising to do something like
HtmlMobile("<textarea id='txt1' name='txt1' rows='4' cols='50'></textarea>")
but then how to get the text from it like GetMobileText ...
by Paul
Fri Mar 20, 2026 5:24 pm
Forum: Coding Questions
Topic: form design
Replies: 2
Views: 2337

Re: form design

PureVision will export code specific for SpiderBasic with the SpiderBasic Export Module.
https://reelmedia.org/purevision/
by Paul
Thu Feb 12, 2026 2:16 pm
Forum: General Discussion
Topic: html interface
Replies: 8
Views: 6908

Re: html interface


this for example gives me an error about "checkbox" is not a valid operator... how to handle the extra ""?

TextGadget(3, 10, 50, 250, 20, "<input type="checkbox">")


Because your syntax it incorrect with the quotes...
TextGadget(3, 10, 50, 250, 20, "<input type='checkbox'>")
by Paul
Wed Nov 19, 2025 4:19 pm
Forum: General Discussion
Topic: Web UI Tools
Replies: 3
Views: 11847

Re: Web UI Tools

We use PureVision with SpiderBasic Export Module to create User Interfaces for Web Apps ;)
by Paul
Sat Nov 15, 2025 6:17 pm
Forum: Coding Questions
Topic: WebGadget Android
Replies: 5
Views: 12292

Re: WebGadget Android

Works if I change

Code: Select all

Global URL.s= "http://www.spiderbasic.com"
to secure website...
Global URL.s= "https://www.spiderbasic.com"
by Paul
Sat Nov 15, 2025 2:43 pm
Forum: Coding Questions
Topic: WebGadget Android
Replies: 5
Views: 12292

Re: WebGadget Android

Code: Select all

ResizeGadget(Wgadget, #PB_Ignore, #PB_Ignore, w , h)
Wgadget = ??
by Paul
Fri Mar 28, 2025 7:23 pm
Forum: General Discussion
Topic: Publishing on website instructions?
Replies: 8
Views: 77052

Re: Publishing on website instructions?

Is there a reason you can't load your images from a resource folder?

(See "Examples" folder "Waponez Web")