Search found 299 matches
- Mon Aug 25, 2025 7:34 pm
- Forum: Coding Questions
- Topic: Read barcodes
- Replies: 3
- Views: 197
Re: Read barcodes
Live Demo: https://www.highoramic.de/app/QR/index.html
- Mon Aug 25, 2025 8:49 am
- Forum: Coding Questions
- Topic: Read barcodes
- Replies: 3
- Views: 197
Re: Read barcodes
This can also be done easily with pure JavaScript.
⚠ For this to work, you need to edit index.html and move the entry:
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jsqr@1.4.0/dist/jsQR.js"></script>
to the very top of the <head> section.
Or use Peters HtmlPreprocessor ...
⚠ For this to work, you need to edit index.html and move the entry:
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jsqr@1.4.0/dist/jsQR.js"></script>
to the very top of the <head> section.
Or use Peters HtmlPreprocessor ...
- Thu Aug 14, 2025 10:58 am
- Forum: Coding Questions
- Topic: Is There a Workaround to DrawingBuffer() Command?
- Replies: 2
- Views: 394
Re: Is There a Workaround to DrawingBuffer() Command?
Maybe this will help you?
; Demo: Pixel-Buffer einer SpiderBasic-Image via Inline-JS anfassen
;EnableExplicit
Enumeration
#Img
#Win
#Canvas
EndEnumeration
; 1) Arbeitsbild erzeugen und befüllen
CreateImage(#Img, 320, 240, 24)
If StartDrawing(ImageOutput(#Img))
Box(0, 0, OutputWidth ...
; Demo: Pixel-Buffer einer SpiderBasic-Image via Inline-JS anfassen
;EnableExplicit
Enumeration
#Img
#Win
#Canvas
EndEnumeration
; 1) Arbeitsbild erzeugen und befüllen
CreateImage(#Img, 320, 240, 24)
If StartDrawing(ImageOutput(#Img))
Box(0, 0, OutputWidth ...
- Thu Jul 03, 2025 11:49 am
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 20241
Re: SpiderBasic 3.10 beta 2 is ready !
Peter, thank you for taking the effort to answer my question.
- Wed Jul 02, 2025 6:37 pm
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 20241
Re: SpiderBasic 3.10 beta 2 is ready !
Great news! Thx a lot @Fred for this update.
@Peter: seems that HeaderSection/EndHeaderSection can replace the HtmlPreprocessor or did I miss something?
@Peter: seems that HeaderSection/EndHeaderSection can replace the HtmlPreprocessor or did I miss something?
- Wed Jun 25, 2025 10:52 am
- Forum: Coding Questions
- Topic: Screenshot without security
- Replies: 4
- Views: 2681
Re: Screenshot without security
I don't really understand your request yet.
Are you looking for a way to bypass the screenshot prevention and the Sainsbury's Club Card app can do that?
Are you looking for a way to bypass the screenshot prevention and the Sainsbury's Club Card app can do that?
- Tue Apr 29, 2025 7:49 am
- Forum: Javascript
- Topic: Make a backup in File Documents under Android
- Replies: 2
- Views: 9881
Re: Make a backup in File Documents under Android
Unfortunately, this is not possible with pure Javascript due to browser security restrictions.
However, you can offer files to the user for download and the user can then store them in Documents.
If you are building your project as a hybrid app, it could possibly work via Cordova plugins ...
However, you can offer files to the user for download and the user can then store them in Documents.
If you are building your project as a hybrid app, it could possibly work via Cordova plugins ...
- Thu Mar 13, 2025 10:42 am
- Forum: Coding Questions
- Topic: Upload an image
- Replies: 9
- Views: 21176
Re: Upload an image
Hello Stefan,
what exactly do you want to do?
Is it enough for you to upload a file somewhere with the WebClient (SpiderBasic)?
Or do you also need the server-side processing? So with Purebasic and CGI for example?
what exactly do you want to do?
Is it enough for you to upload a file somewhere with the WebClient (SpiderBasic)?
Or do you also need the server-side processing? So with Purebasic and CGI for example?
- Wed Jan 22, 2025 8:55 am
- Forum: Coding Questions
- Topic: Runprogram
- Replies: 8
- Views: 15782
Re: Runprogram
Yes indeed. I only use RunProgram() to open an external web page in the browser...
- Wed Jan 22, 2025 8:53 am
- Forum: Coding Questions
- Topic: image size changed with ver 3.0
- Replies: 3
- Views: 8121
Re: image size changed with ver 3.0
I once read somewhere that SB is now dpi aware.