Search found 183 matches
- Sun Jun 08, 2025 9:13 am
- Forum: General Discussion
- Topic: SpiderBasic 3.10 is out !
- Replies: 25
- Views: 19661
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 ...
- Mon Jun 02, 2025 6:23 am
- Forum: Tricks 'n' Tips
- Topic: Android and IOS Front and Back Camera and WIFI Scanning
- Replies: 11
- Views: 26688
Re: Android and IOS Front and Back Camera and WIFI Scanning
Android ART runtime, OS version, and Cordova have changed a lot in eight years. It's probably just a matter of watching "cordova plugin add" under Chromium debug. Likely something with Apache CDN filtering old plugins. Find a plugin published more recently; it looks like most become abandonware ...
- Sun Apr 06, 2025 9:18 am
- Forum: Coding Questions
- Topic: Access the Documents file with Cordova.
- Replies: 20
- Views: 103305
Re: Access the Documents file with Cordova.
My old post here had code that worked at one time that did real native file system operations on IOS and Android using a Cordova module that has since changed. If you want non-browser non-prompt file system access it should be as simple as finding a Cordova module without broken npm-fetch and using ...
- Mon Feb 24, 2025 4:19 am
- Forum: Feature Requests and Wishlists
- Topic: Bluetooth lib
- Replies: 5
- Views: 39948
Re: Bluetooth lib
BT has almost 20 different profiles. It can basically do anything and has transparent encryption and compression that is actually in the standard. The file transfer profile is called FTP ironically enough.. AVRCP for remote playback control, BPP for printing, DUN for dialup networking, A2DP for ...
- Thu Jan 30, 2025 1:31 am
- Forum: Coding Questions
- Topic: FreeSpiderbasic startup problem ...
- Replies: 18
- Views: 50147
Re: FreeSpiderbasic startup problem ...
If not AV try EventViewer>Windows Logs>Software and look for a red or yellow exclamation icon that occured at the time of launch. Every version and edition of Windows since '95 has this out of the box, and most times it reveals the exact reason something is happening.
I doubt it's UAC it's some ...
I doubt it's UAC it's some ...
- Thu Jan 30, 2025 1:22 am
- Forum: Coding Questions
- Topic: Generating PDF with spiderbasic
- Replies: 5
- Views: 15586
Re: Generating PDF with spiderbasic
I just copy and pasted from the github readme and changed path because CORS. It worked here, and after looking at every single JS PDF library jsPDF seems the most maintained; even though the issues response on github are starting to look like abandonware..
I'm assuming the referenced PB library ...
I'm assuming the referenced PB library ...
- Wed Jan 29, 2025 1:15 am
- Forum: Coding Questions
- Topic: Generating PDF with spiderbasic
- Replies: 5
- Views: 15586
Re: Generating PDF with spiderbasic
I looked at the ~five different JS based libraries and they all look like abandonware, or just had very bad support and documentation..
I still use RTF(Wordpad, LibreOffice>Writer etc..).. Cross-platform, same look and features in 1/8 the time.. The format you can learn in hours on a low level.. It ...
I still use RTF(Wordpad, LibreOffice>Writer etc..).. Cross-platform, same look and features in 1/8 the time.. The format you can learn in hours on a low level.. It ...
- Wed Jan 08, 2025 12:55 pm
- Forum: Tricks 'n' Tips
- Topic: Measuring network speed
- Replies: 2
- Views: 77146
Measuring network speed
I'm making a 5G speed logger on Android for when I travel in the US and Baltics. It's not precise but it'll give precise-enough numbers for the use case, and should be good for up to 10Gbps with default variables. I mostly need it to find 1Gbps towers. It's good for measuring any net connection ...
- Sun Dec 29, 2024 6:26 am
- Forum: Coding Questions
- Topic: How to use a custom font?
- Replies: 15
- Views: 29104
Re: How to use a custom font?
Try it, but anyway I think you should separate the load of a font and the assign to a gadget:
Procedure.i LoadCustomFont(gadget_id,FFamily.s="Arial", FPath.s="", FSize=10, Font_id=#PB_Any);<- would be nice to have the font family and path as parameters
!var font = new FontFace(v_ffamily,'url ...
- Sat Nov 16, 2024 8:05 pm
- Forum: Coding Questions
- Topic: The easiest way to store preferences for mi app?
- Replies: 9
- Views: 15321
Re: The easiest way to store preferences for mi app?
OpenFileRequester and ExportFile or deal with a lot of support issues do to cache policies, and yes literally everything besides those is dictated by cache policy of each user. Avoid Google-Drive stuff it's all broken.
NPM import is broken for Cordova libraries so you can't use third-party Cordova ...
NPM import is broken for Cordova libraries so you can't use third-party Cordova ...