Is there a reason you can't load your images from a resource folder?
(See "Examples" folder "Waponez Web")
Search found 179 matches
- Fri Mar 28, 2025 7:23 pm
- Forum: General Discussion
- Topic: Publishing on website instructions?
- Replies: 8
- Views: 30551
- Tue Jan 14, 2025 3:19 pm
- Forum: Coding Questions
- Topic: Tutorial?
- Replies: 7
- Views: 15467
Re: Tutorial?
No, there are no tutorials.
It is assumed you already know how to code in BASIC and there are code snippets/examples in the Help File and Examples folder showing how to use every command available.
By looking at the snippets/examples you get a very good idea how to write applications in ...
It is assumed you already know how to code in BASIC and there are code snippets/examples in the Help File and Examples folder showing how to use every command available.
By looking at the snippets/examples you get a very good idea how to write applications in ...
- Wed Sep 25, 2024 2:09 pm
- Forum: Coding Questions
- Topic: Moving a Gadget with a Tablet?
- Replies: 14
- Views: 17335
Re: Moving a Gadget with a Tablet?
Touchscreen ?Peter wrote: Wed Sep 25, 2024 11:54 am at least Windows are extended in SpiderBasic with draggable(). Can you tell us the name of the other lib?
- Wed Sep 25, 2024 1:02 am
- Forum: Coding Questions
- Topic: calculation problem
- Replies: 4
- Views: 4994
Re: calculation problem
As hoerbie said, use the proper function...
Code: Select all
Debug StrD(((3*60)+30)/60)
- Sun Sep 22, 2024 4:26 pm
- Forum: Coding Questions
- Topic: Math/Calculation Problem
- Replies: 1
- Views: 2944
Re: Math/Calculation Problem
Use a proper type for decimal number...
Code: Select all
Arbeitszeit.d = ((Stunden * 60) + Minuten) / 60
- Thu Aug 01, 2024 8:03 pm
- Forum: Feature Requests and Wishlists
- Topic: Put Android API Level to 34
- Replies: 4
- Views: 18537
Re: Put Android API Level to 34
Would be nice if SpiderBasic had a Manifest Editor like Basic4Android does where you can make these changes yourself like this...
AddManifestText(
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true ...
AddManifestText(
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="30"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true ...
- Wed Jul 10, 2024 10:20 pm
- Forum: Feature Requests and Wishlists
- Topic: Timer for Mobile UI
- Replies: 13
- Views: 43234
Re: Timer for Mobile UI
It was entertaining until it couldn't display the number anymore





- Wed May 29, 2024 2:05 pm
- Forum: Javascript
- Topic: Unit Converter
- Replies: 7
- Views: 30585
Re: Unit Converter
Define EventID,MenuID,GadgetID,WindowID
Define.d cel,fah
Enumeration 1
#Window_Main
EndEnumeration
Enumeration 1
#Gadget_Main_Text2
#Gadget_Main_Text3
#Gadget_Main_cel
#Gadget_Main_fah
EndEnumeration
Procedure.i Window_Main()
If OpenWindow(#Window_Main,0,0,240,132,"Temperature Converter ...
- Wed Apr 10, 2024 1:42 pm
- Forum: Tricks 'n' Tips
- Topic: Speech module supporting screen readers and WebTTS
- Replies: 10
- Views: 39058
Re: Speech module supporting screen readers and WebTTS
Is this browser specific?
Only the WebTTS version produces voice here using Edge browser, the other one is silent.
Only the WebTTS version produces voice here using Edge browser, the other one is silent.
- Thu Mar 21, 2024 1:52 pm
- Forum: Coding Questions
- Topic: Constant visibility.
- Replies: 3
- Views: 4651
Re: Constant visibility.
hoerbie is correct, your include file creates Window2 first then you try to activate Window1 before the constant or Window has been created.
Also your enumeration is giving both Windows the exact same value so after Window1 is created, Window2 will no longer be valid.
Also your enumeration is giving both Windows the exact same value so after Window1 is created, Window2 will no longer be valid.