darksteeldanger's Recent Forum Activity

  • this looks awesome, i wana play it!

  • does anyone know how to create an exe file?

    i though that was one of the new feature but i cant find a tutorial?

  • for some reason dropbox has has updated my account to there new settings

    with the new system you cant share your html file like you could before.

    it just doesnt work, Ashley said they were trying to find a new method.

    if your dropbox hasnt changed you will be ok, yours wont change and you can share as normal....but mine has changed and i lost all my work stored on there. massive bummer!

    one of the advantages of c2 is that abilty to sahre quikly and im surly missing that, ive tried simmiar things to dropbox bit nothing will work!

    any help will be appreciated.

  • has there been any new info on how to export the work i make in construct? dropbox doesnt work anymore, is there any other options? (except the arcade?)

  • hello

    i posted about a week ago about there being a change in drop box, new users and old users that have been given the new drop box are not able to use it for quickly posting there games.

    has anyone else had an idea what else could be done? i have games waiting to be posted, i cant post them, please can someone help?

  • ok this is a problem then, im guna keep on trying different options today, if i have a break through i'll post it. if anyone has anything to add that could help that would be great.

  • thankyou much appreciated

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • ive just tried google drive and im having the same problem i can make the html index public and can get a link on my blog but the index is not displaying the game just the a page of code, nothing else.

    do i need to make all the files in the folder public or just the html index? is this a problem with construct? ive just installed ver99 and have only had problems since then, should i try the more stable version.

    if anyone has any advice id be in your debt, im gunna do a tutorial on this when its figured out cause this has caused me big problems

    Edit this is the code im getting

    <html manifest="offline.appcache">

    <head>

        <meta charset="UTF-8" />

           

            <!-- This ensures the canvas works on IE9+. Don't remove it! -->

            <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />

           

            <title>New project</title>

            <!-- Note: running this exported project from disk may not work exactly like preview, since browsers block some features on the file:// protocol. Once you've uploaded it to a server, it should work OK. -->

           

        <!-- This outlines the canvas with a black border and makes the page background black. -->

            <style type="text/css">

                   body { background-color: black; color: white; }

            </style>

    </head>

    <body>

            <div id="fb-root"></div>

            <div style="text-align: center;">

            <script>

            // Issue a warning if trying to preview an exported project on disk.

            (function(){

                   // Check for running exported on file protocol

                   if (window.location.protocol.substr(0, 4) === "file")

                   {

                            alert("Exported games won't work until you upload them.");

                   }

            })();

            </script>

                   <!-- The canvas must be inside a div called c2canvasdiv -->

                   <div id="c2canvasdiv" style="margin: 0 auto; width: 1200px; height: 900px;">

                  

                            <!-- The canvas the project will render to. If you change its ID, don't forget to change the

                            ID the runtime looks for in the jQuery ready event (above). -->

                            <canvas id="c2canvas" width="1200" height="900">

                                    <!-- This text is displayed if the visitor's browser does not support HTML5.

                                    You can change it, but it is a good idea to link to a description of a browser

                                    and provide some links to download some popular HTML5-compatible browsers. -->

                                    Your browser does not appear to support HTML5. Try upgrading your browser to the latest version. <a href="http://www.whatbrowser.org">What is a browser?</a>

                                    <br/><br/><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Microsoft Internet Explorer</a><br/>

                                    <a href="http://www.mozilla.com/firefox/">Mozilla Firefox</a><br/>

                                    <a href="http://www.google.com/chrome/">Google Chrome</a><br/>

                                    <a href="http://www.apple.com/safari/download/">Apple Safari</a><br/>

                                    <a href="http://www.google.com/chromeframe">Google Chrome Frame for Internet Explorer</a><br/>

                            </canvas>

                            

                   </div>

            <br />

                  

                   <!-- SCIRRA LTD LICENSE AGREEMENT

                             FREE EDITION USERS ARE NOT ALLOWED TO REMOVE, MODIFY OR HIDE THE FOLLOWING

                             LINES OF HTML5 CODE FROM THEIR EXPORTED GAMES. REMOVAL, MODIFICATION OR

                             ATTEMPTS TO HIDE THIS MESSAGE WILL BE IN BREACH OF THE FREE EDITION LICENSE

                   -->

                   <!-- End of Scirra Ltd. free edition limitation -->

                   <a href="http://www.scirra.com" target="_blank" style="font-family:Arial;color:DodgerBlue;" title="Make games">Create your own HTML5 games with Construct 2</a>

            </div>

           

            <!-- Pages load faster with scripts at the bottom -->

           

            <!-- Construct 2 exported games require jQuery. To save bandwidth, by default

            this is set to grab it off the Google content delivery network (CDN). Fall back to local if not available. -->

            <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

            <script>window.jQuery || document.write("<script src='jquery-1.7.1.min.js'>\x3C/script>")</script>

           

        <!-- The runtime script. You can rename it, but don't forget to rename the reference here as well.

        This file will have been minified and obfuscated if you enabled "Minify script" during export. -->

            <script src="c2runtime.js"></script>

        <script>

                   jQuery(window).resize(function() {

                            if (window.c2resizestretchmode === 1)

                            {

                                    window.c2resizestretchmode = 2;        // put back when breaking back out of fullscreen

                                    var canvas = document.getElementById("c2canvas");

                                    window.c2oldcanvaswidth = canvas.width;

                                    window.c2oldcanvasheight = canvas.height;

                                    window.c2eventtime = Date.now();

                                    var w = jQuery(window).width();

                                    var h = jQuery(window).height();

                                    cr_sizeCanvas(w, h);

                            }

                            else if (window.c2resizestretchmode === 2)

                            {

                                    // Size event fires twice on FF + Chrome, ignore second trigger

                                    if (Date.now() > window.c2eventtime + 50)

                                    {

                                            window.c2resizestretchmode = 0;

                                            cr_sizeCanvas(window.c2oldcanvaswidth, window.c2oldcanvasheight);

                                    }

                            }

                   });

           

                   // Start the Construct 2 project running on window load.

                   jQuery(document).ready(function ()

                   {

                            // Create new runtime using the c2canvas

                            cr_createRuntime("c2canvas");

                   });

                  

                   // Pause and resume on page becoming visible/invisible

                   function onVisibilityChanged() {

                            if (document.hidden || document.mozHidden || document.webkitHidden || document.msHidden)

                                    cr_setSuspended(true);

                            else

                                    cr_setSuspended(false);

                   };

                  

                   document.addEventListener("visibilitychange", onVisibilityChanged, false);

                   document.addEventListener("mozvisibilitychange", onVisibilityChanged, false);

                   document.addEventListener("webkitvisibilitychange", onVisibilityChanged, false);

                   document.addEventListener("msvisibilitychange", onVisibilityChanged, false);

        </script>

    </body>

    </html>

  • dropbox has removed the public folders for new users (im not a new user but it has switch it for me(great!))

    heres some info dropbox.com/help/16/en

    so now it says you can use the links instead. this mean that all files are now public if you get the link, but when i try to link the htmlindex i just see code and not the game. need help!

    what am i doing wrong?

  • dropbox has removed the public folders for new users (im not a new user but it has switch it for me(great!))

    so now it says you can use the links instead, but when i try to link the htmlindex i just see code and not the game. need help!

    what am i doing wrong?

  • ok got it thanks a million

    it sucks about dropbox but im sure it will be no thing but a thing

  • is anyone else having trouble with dropbox? it looks like the public folder has been removed? ive looked on the forum and it says that all of dropbox is now public, but i cant copy and paste the html address like before. i also seem to have lost all the stuff that was in my piblic folder.

    is anyone else having this problem and have you figured it out?

darksteeldanger's avatar

darksteeldanger

Member since 9 May, 2012

None one is following darksteeldanger yet!

Trophy Case

  • 12-Year Club
  • Email Verified

Progress

13/44
How to earn trophies