radbrothers's Forum Posts

  • [iOs] Update Heart Box v.1.0.2:

    • Fix "listing fail"
    • Fixes and changes in UI
    • Fix sound issues
    • Others minor bug-fixes

    takamoto

    Thank you) do not be envious, please)

  • Hi Bl4ckSh33p

    I recently released my game for win 10 and win8.1:

    https://www.microsoft.com/ru-ru/store/p ... blggh69kp9 .

    For export I used the r227 because I can't get it to work in r239 too. Despite the fact that I added Winjs, references and SDK in project. But if i export from r227 i get white rectangle instead Ads. You can see it in my game.

    I too would like to solve this problem. What Ashley think about it?

  • You probably just want to edit the exported HTML directly.

    Thank you for answer. Yes, I got help with this. But it would be nice if there was such an option when exporting.

  • Hi everyone!

    Ashley

    When I export to HTML5 I can choose only Left, Right, Top or Buttom sides. But how I can make two side bars - left + right or top + buttom?

    Any solution?

    Thank you

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Nagval333

    Thank you! You flatter me

  • [Android] Update Heart Box v.0.1.3:

    • Changes in UI
    • Minor bug-fixes
    • Ads is less obsessive
  • 3DPiper

    Thank you! I plan to release version for windows phone 8.1

  • Burvey

    Thank you! I am pleased to hear it

  • Heart Box - physics puzzle

    Available free in Google Play, App Store and Windows Store

    Trailer:

    Subscribe to Construct videos now

    Google play: https://play.google.com/store/apps/deta ... s.heartbox

    App Store: https://itunes.apple.com/us/app/heart-b ... 1090679236

    Windows Store: https://www.microsoft.com/ru-ru/store/p ... blggh69kp9

    Hi everyone! After a long time of silence I've created a new mobile game!

    Meet the new funny physical puzzle "Heart Box" with a little robot named Robby!

    Professor Rat created Robby but gave him a weak battery, which is why our hero has to constantly recharge and participate in crazy experiments.

    Take the robot through all the experimental rooms of Professor Rat to release him from the charger!

    Features:

    ▶ Over 180 levels for your brain!

    ▶ 4 funny game modes

    ▶ Level Editor & Collection of QR levels

    ▶ Online database "Community Levels"

    ▶ Tons of skins for robot!

    ▶ Realistic physics

    ▶ High-quality graphics

    ▶ A lot of cartoons!

    ▶ Game achievements & Leaderboards

    I will be glad to receive your feedback and comments!

  • AaronSmithUK

    Thank you so much man! It helped me! Why Ashley can't fix it?

  • AaronSmithUK

    Thank you for answer, but how i can do this? You managed to do it?

  • Hi all

    AaronSmithUK

    Ashley

    I have same issue as AaronSmithUK, how i can fix it?

  • Hi all!

    Ashley

    In Constrcut2 we can't use Windows Store action Show Share UI for Windows 10 UWP. But I use this method and it work:

    1. I create file share.js with code:

     var dataTransferManager = Windows.ApplicationModel.DataTransfer.DataTransferManager.getForCurrentView();
            dataTransferManager.addEventListener("datarequested", function (e) {
                var request = e.request;
                request.data.properties.title = "Your title";
                request.data.setText("Your text");
            });
            Windows.ApplicationModel.DataTransfer.DataTransferManager.showShareUI();[/code:1bkdsz4j]
    
    [b]2.[/b] Import share.js in project.
    [b]3.[/b] Browser object -> Execute Javascript:
    
    [code:1bkdsz4j]var js = document.createElement('script');
    js.type = 'text/javascript'; 
    js.src = 'share.js';
    document.body.appendChild(js);[/code:1bkdsz4j]
    
    It work on windows 10 and windows 10 mobile - Share UI is shown and I can choose any social network in which I want to share. Why Windows Store object can't do that?
  • Ashley what you think about it?

  • Hi Ashley

    I found solution for sharing on UWP Windows 10:

    1. I create file share.js with code:

     var dataTransferManager = Windows.ApplicationModel.DataTransfer.DataTransferManager.getForCurrentView();
            dataTransferManager.addEventListener("datarequested", function (e) {
                var request = e.request;
                request.data.properties.title = "Your title";
                request.data.setText("Your text");
            });
            Windows.ApplicationModel.DataTransfer.DataTransferManager.showShareUI();[/code:ino4bg1b]
    [b]2.[/b] Import [i]share.js[/i] in project.
    [b]3.[/b] Browser object -> Execute Javascript:
    [code:ino4bg1b]var js = document.createElement('script');
    js.type = 'text/javascript'; 
    js.src = 'share.js';
    document.body.appendChild(js);[/code:ino4bg1b]
    [b]4.[/b] Export project for VS2015
    
    And it work on windows 10 and windows 10 mobile - Share UI is shown and I can choose any social network in which I want to share. Why Windows Store object can't do that?