Search found 13 matches
- Fri Oct 04, 2024 6:25 pm
- Forum: Coding Questions
- Topic: HTML in ListIconGadget
- Replies: 4
- Views: 8343
Re: HTML in ListIconGadget
Any news on this feature?
- Thu Oct 12, 2017 9:43 am
- Forum: Game Programming
- Topic: can i create 3D games in next versions of SB ?
- Replies: 2
- Views: 24517
Re: can i create 3D games in next versions of SB ?
There are some free 3d engines that you can already use out of the box ...
Here is my personal recommendation:
https://unity3d.com/
https://docs.unity3d.com/Manual/webgl-building.html
Here is my personal recommendation:
https://unity3d.com/
https://docs.unity3d.com/Manual/webgl-building.html
- Thu Jun 08, 2017 8:36 am
- Forum: General Discussion
- Topic: These days are like...
- Replies: 30
- Views: 38350
- Thu May 18, 2017 9:48 am
- Forum: Coding Questions
- Topic: Using other gui framework
- Replies: 6
- Views: 6155
Re: Using other gui framework
This UI is far better looking the the actual one, but that is my humble opinion.
- Wed Apr 26, 2017 9:12 pm
- Forum: Coding Questions
- Topic: Help using Cordova plugin
- Replies: 3
- Views: 4545
Re: Help using Cordova plugin
have not used plugin for now, bt what do you mean by "chrome" ?
isnt cordova plugins explicit used for MobileApp's ?
I am testing an Android build. The plugin it's designed for reading barcodes.
With Android apps you can connect Google chrome and remote debug and control the app, but the this ...
isnt cordova plugins explicit used for MobileApp's ?
I am testing an Android build. The plugin it's designed for reading barcodes.
With Android apps you can connect Google chrome and remote debug and control the app, but the this ...
- Wed Apr 26, 2017 12:26 pm
- Forum: Coding Questions
- Topic: Help using Cordova plugin
- Replies: 3
- Views: 4545
Help using Cordova plugin
I am trying to understand the workings of the Cordova plugin sistem, but even with debugger the following code just crashes the app with no debug info whatsoever on Chrome :(
It is a barcode reading plugin from here:
https://www.npmjs.com/package/org.madmobile.cordovaplugins.zbarscanner
Any help ...
It is a barcode reading plugin from here:
https://www.npmjs.com/package/org.madmobile.cordovaplugins.zbarscanner
Any help ...
- Mon Apr 24, 2017 8:21 am
- Forum: Coding Questions
- Topic: How to Send HTTP POST request
- Replies: 9
- Views: 10667
Re: How to Send HTTP POST request
HTTPRequest(#PB_HTTP_Get, "http://192.168.1.199/config/1", "", @HttpGetEvent(), 0, Headers())
HTTPRequest(#PB_HTTP_Post, "http://192.168.1.199/config/1", "YOUR_POST_DATA_GOES_HERE", @HttpGetEvent(), 0, Headers())
HTTPRequest(#PB_HTTP_Post, "http://192.168.1.199/config/1", "YOUR_POST_DATA_GOES_HERE", @HttpGetEvent(), 0, Headers())
- Sun Apr 16, 2017 4:54 pm
- Forum: Feature Requests and Wishlists
- Topic: HTTP Post values
- Replies: 2
- Views: 4355
Re: HTTP Post values
You can already use post on requests:
Code: Select all
parameters.s = "username="+GetGadgetText(#String_user) + "&password="+GetGadgetText(#String_pass)
HTTPRequest(#PB_HTTP_Post, "https://yoururl.com/login.php",parameters, @login_callback())
- Tue Feb 21, 2017 6:05 pm
- Forum: Coding Questions
- Topic: Compiler Error Check order
- Replies: 3
- Views: 4085
Re: Compiler Error Check order
Yes, the error is correct.
My argument is that the unclosed IF should be reported first, because it has precedence.

My argument is that the unclosed IF should be reported first, because it has precedence.

- Sun Feb 19, 2017 12:48 pm
- Forum: Coding Questions
- Topic: Compiler Error Check order
- Replies: 3
- Views: 4085
Compiler Error Check order
It's me again xD
I think unclosed keywords should have precedence to invalid placement rules, take this example.
You will never be able to stop the bad IF, if it is somewhere else far away on the code.
If test
;
; Gazilion lines of code
;
Procedure upsss() ; Error checking at first ...
I think unclosed keywords should have precedence to invalid placement rules, take this example.
You will never be able to stop the bad IF, if it is somewhere else far away on the code.
If test
;
; Gazilion lines of code
;
Procedure upsss() ; Error checking at first ...