IronRick's Forum Posts

  • Hi, I do have a question concerning C3 licenses.

    Do we need Business licenses, even if the Construct 3 projects we are planing to build will be only used internally, as little training game for employees? We are not making any money by selling these games, only used in the intranet.

    Thank you

  • This is great stuff, I have done a quick test and it is working good!

    I have not read the whole wiki yet but if I build a controller in C3, can we send messages from the Screen to the Controller? Are all the Messaging Conditions works for both?

    Thanks, once again great work, looking forward to experiment more on that!

  • Very fun to play, keep up the good work!

  • Ok thank you for the suggestion.

  • Hi everyone,

    Is there a way I can have a Text Box object and scroll it to the end?

    I am working on a chat box and I want the user to always view the latest comment inserted. When I do receive new content, I append it to the text box but I want to immediately scroll it down.

    Thank you,

    IronRick

  • Having a conversion between objects and JSON can be useful when transferring data with WebSocket.

  • I did try with the un-minifed version of the SignalR library but I still got the same error.

    The good news is that SignalR will remove the jQuery dependency on their next release version. I guess I will wait until then to re-try minifying my plug-in.

  • Thank you both for your help.

    I will take a look closely at my code and the SignalR library to ensure I always use the dot syntax and the "jQuery." instead of "$.".

  • Hi everyone,

    Looking for help here!

    I am working on a plugin for connecting C2 to an ASP.NET SignalR server code. (http://www.asp.net/signalr/overview/signalr-20)

    I have included all SignalR JavaScript code required in the plugin. It also required jQuery in order to work correctly.

    Everything works fine in preview mode and when the JavaScript is not minify, see here:

    http://signalr.progistic.com/fridaynight/index.html

    I do have and an error as soon as I minify the JavaScript when exporting. It complains that jQuery was not found:

    http://signalr.progistic.com/fridaynight_mini/index.html

    Is there something I need to do in my plugin to ensure jQuery is present?

    Thanks for your help.

  • Hi everyone,

    I have been reading recently that WebGL 2.0 specification are now a work in progress. The desire goal of WebGL 2.0 is to bring the capability of OpenGL ES 3.0 to the browsers. WebGL 2 would also be fully backwards compatible with the current specs.

    Even the HTML 5 test website have incorporated a test for WebGL 2 in their beta version.

    Some links:

    http://beta.html5test.com/

    http://www.khronos.org/registry/webgl/specs/latest/2.0/

    http://blog.tojicode.com/2013/09/whats-coming-in-webgl-20.html

  • +1 for the JSON plug-in, Thanks!

  • Growing communities always need good moderators.

    Welcome to your new role and thanks for volunteering.

  • farhanx yes C2 support AJAX. You will need to code the server side logic with another language (such as php, .net, etc.)

    https://www.scirra.com/manual/107/ajax

  • rogerfgay Here is the link to the SignalR documentation: asp.net/signalr

    SignalR can be deployed on IIS web server or built in as a self-host server on OWIN: owin.org

    To enable WebSocket protocol, you will need Windows 8 or server 2012 and IIS 8 setup. You can use SignalR on older OS/IIS but it will then fall back to using long polling instead.

    I do agree with your comment on Microsoft C# for game development but since my coding background is on the Microsoft .NET framework for my work, I tend to use it for my server code for personal use as well.

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • phuse, I am currently working on a C2 plug-in that would support the ASP.NET SignalR library. SignalR support websocket but also long polling in case the user's browser does not support websocket.

    The server backend would be all C# but the front end can support JavaScript (a Construct 2 plug-in).

    So far, I have been able to connect to my SignalR server from C2. I am now looking into connecting into server functions and vice versa.

    I will post a new plug-in thread as soon as I do have a working prototype.