arctocore's Forum Posts

  • 4 posts
  • Hello Ashley

    thank you.

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I have no problem playing mp4 video with the video plugin in the browser. But not playing mp4 video in the NW player. Can scirra please make this happen.

  • Hello Scirra

    I am using NW player for my project. My project is using the video plugin.

    But when i try to play the mp4 video in the exported NW player. Nothing shows up. This means that i cannot export to windows,linux or osx(mac) to my customers. Are you going to do something about this in the nearest future.

    Kind Regards

    Steen

  • Hello there

    I have made a asp.net web api and enabled cors.

    I am trying to call from REX jsshell my web api like in postman.

    Do anyone have an example of this USING JSSHELL OR SOMETHING ELSE. I am running out of ideas.

    Scripts:

    function RequestLogin(usr,pwd)

    {

    var bearer ="";

    var user ={

    grant_type:'password',

    username:usr,

    password:pwd

    };

    $.ajax({

    type: "POST",

    url: "https://DUMMY.COM/token",

    data:user,

    contentType: "application/x-www-form-urlencoded",

    dataType: "json",

    success: function (data) {

    bearer = JSON.parse(JSON.stringify(data));

    bearer = bearer.access_token;

    },

    failure: function (response) {

    console.log(response);

    },

    error: function (response) {

    console.log(response);

    }

    });

    return bearer;

    }

    kind regards

    Steen

  • 4 posts