Search found 12 matches

by Num3
Thu Oct 12, 2017 9:43 am
Forum: Game Programming
Topic: can i create 3D games in next versions of SB ?
Replies: 2
Views: 11120

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
by Num3
Thu Jun 08, 2017 8:36 am
Forum: General Discussion
Topic: These days are like...
Replies: 30
Views: 16189

Re: These days are like...

Image
by Num3
Thu May 18, 2017 9:48 am
Forum: Coding Questions
Topic: Using other gui framework
Replies: 6
Views: 2757

Re: Using other gui framework

This UI is far better looking the the actual one, but that is my humble opinion.
by Num3
Wed Apr 26, 2017 9:12 pm
Forum: Coding Questions
Topic: Help using Cordova plugin
Replies: 3
Views: 2134

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 ...
by Num3
Wed Apr 26, 2017 12:26 pm
Forum: Coding Questions
Topic: Help using Cordova plugin
Replies: 3
Views: 2134

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 wou...
by Num3
Mon Apr 24, 2017 8:21 am
Forum: Coding Questions
Topic: How to Send HTTP POST request
Replies: 9
Views: 4173

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())
by Num3
Sun Apr 16, 2017 4:54 pm
Forum: Feature Requests and Wishlists
Topic: HTTP Post values
Replies: 2
Views: 2747

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())
by Num3
Tue Feb 21, 2017 6:05 pm
Forum: Coding Questions
Topic: Compiler Error Check order
Replies: 3
Views: 2304

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.
:ugeek:
by Num3
Sun Feb 19, 2017 12:48 pm
Forum: Coding Questions
Topic: Compiler Error Check order
Replies: 3
Views: 2304

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 procedure inside ...
by Num3
Sun Feb 19, 2017 10:24 am
Forum: Coding Questions
Topic: BindGadgetEvent - Compiler missed check
Replies: 1
Views: 1587

BindGadgetEvent - Compiler missed check

The compiler does not check the correct sintax for the callback function:

Code: Select all

BindGadgetEvent(5,@Button_Callback()) ; Notice the brackets
BindGadgetEvent(5,@Button_Callback) ; Compiler does not give error if brackets are missing!