Search found 267 matches

by plouf
Mon Jan 05, 2026 9:36 pm
Forum: Coding Questions
Topic: Nouveau problème lors de la création d'un APK
Replies: 2
Views: 137

Re: Nouveau problème lors de la création d'un APK

you try to compile somthing simple as

Code: Select all

  MessageRequester("Just a short information text.")

does it work?

seems like fails to work with a specific function / addon you use
by plouf
Sat Jan 03, 2026 11:44 pm
Forum: Coding Questions
Topic: how to know my url / local ?
Replies: 2
Views: 156

Re: how to know my url / local ?

globals are with g_

Code: Select all

Global myweb.s

! g_myweb = window.location.href;

Debug myweb
by plouf
Tue Dec 23, 2025 4:18 pm
Forum: Coding Questions
Topic: Visual Form Designer
Replies: 2
Views: 593

Re: Visual Form Designer

Not yet

There is a third party shareware tool
"PureVision Form Designer" if you like such a tool now
by plouf
Sat Dec 06, 2025 2:07 pm
Forum: Coding Questions
Topic: HTTPRequest Post?
Replies: 4
Views: 971

Re: HTTPRequest Post?

Yes
But changinsg to httpS ..wil not ;-)

Btw you dont need http at all in local website only relative i.e.
/Plouf/info.php. If is hosted in ssl website will be ssl :-)
Thats the server/client responsibility not yours
by plouf
Sat Dec 06, 2025 11:23 am
Forum: Coding Questions
Topic: HTTPRequest Post?
Replies: 4
Views: 971

Re: HTTPRequest Post?

this is an example sending 2 form fields

Procedure HttpGetEvent(Success, Result$, UserData)
; HTTPInfo() can also be used to get more info about the request result
If Success
Debug Result$
Else
Debug "HTTPRequest(): Error"
EndIf
EndProcedure


HTTPRequest(#PB_HTTP_Post, "http://127.0.0.1 ...
by plouf
Sun Aug 10, 2025 8:55 am
Forum: Coding Questions
Topic: backup in the "Documents" folder with a Cordova plugin.
Replies: 3
Views: 23440

Re: backup in the "Documents" folder with a Cordova plugin.

Tey this Caronte's answer a few post below has an example

viewtopic.php?t=2748&hilit=Cordova+file
by plouf
Sun Aug 10, 2025 4:43 am
Forum: Coding Questions
Topic: backup in the "Documents" folder with a Cordova plugin.
Replies: 3
Views: 23440

Re: backup in the "Documents" folder with a Cordova plugin.

the problem is that local access to files, has been cut out to browsers since decades.
the reason was malware issues!

you can do it with cordova plugin, but you need to compile the app.
Currently SpiderBasic has build in support for android/ios easy creation, you can compile for windows 8/10 app ...
by plouf
Wed Jun 25, 2025 6:22 pm
Forum: Coding Questions
Topic: Screenshot without security
Replies: 4
Views: 24748

Re: Screenshot without security

yes he wants to prevent users to take screenshots liek for example you can prohibit printing using css
Spiderbasic do NOT support it native, you MAY do it, up to a point using cordova overlay module, but need deep searching

however its not really possible to prevent it , you can only block normal ...
by plouf
Sun May 18, 2025 7:33 pm
Forum: Coding Questions
Topic: Webserial API with Chrome (serial port access)
Replies: 4
Views: 22892

Re: Webserial API with Chrome (serial port access)

very nice ! thanx for sharing
have no sensor to test but good o have examples around :)
by plouf
Sun May 18, 2025 5:51 am
Forum: Coding Questions
Topic: Webserial API with Chrome (serial port access)
Replies: 4
Views: 22892

Re: Webserial API with Chrome (serial port access)

yes i have try once and worked
-> viewtopic.php?t=2620