34a66189-502d-437b-a65e-a44eb4ccab5f's Forum Posts

  • 6 posts
  • Ok I got everything working, basically doing the same thing as mentioned in the link I posted above, but I couldn't get it to work with that method so I just did it manually. After I exported my game I opened the index.html and replaced the html,body css attributes with

    html, body {

    background: transparent !important;

    color: transparent !important;

    background-color: transparent !important;

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    -webkit-backface-visibility: visible;

    overflow: hidden;

    touch-action: none;

    -ms-touch-action: none;

    }

    Kind of a pain to have to go in and put that in every build after export but oh well it works.

    thanks,,, awesome info!

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • Same here loads fine for me too, HTC M8

    It's loading fine for me. I don't notice a problem.

    if u go in debugger mode,,,, on this url (punch-clarkson.byethost24.com) then you will see that the same game fails to load here....

    sometimes i get a red loading bar or a red percentage...

  • hi there, i have made this game for a client, but it doesnt load properly and takes very long time, its supposed to be both desktop and mobile compatible...

    www.sitee.comlu.com/slap/[/code:1yuniu9m]
    
    help need
  • AWESOME MAN, WAS LOOKING FOR IT... YOU ROCK.

  • Awesome list!

  • Just came across this working on a prototype...

    basically all you need to do to remove this:

    is use the custom css import plugin, and import a css file withe the following code:

    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0; 
    }[/oode]
    
    [b]if you dont already have the css import plugin installed, go here: [quote:1uby4m7y]https://www.scirra.com/forum/viewtopic.php?t=78007&start=0
    /b]
    
    Those arrows are part of the Shadow DOM, which are basically DOM elements on your page which are hidden from you. [i](stackoverflow..)[/i]
  • 6 posts