BillAlex's Forum Posts

  • Both things are possible in Intel XDK

    For Splashscreen

    http://stackoverflow.com/questions/18366379/how-do-i-change-the-splash-screen-in-the-intel-xdk

    And for the statusbar there somewhere a checkmark (Just I can not access XDK)

  • RBuster

    Kyatric has yet given you an answer for what the file is used:

    [quote:vvslgrx6]Apparently it contains informations about the icons for the game as a web application.

    Or again different:

    The appmanifest-file manage the handling of Web Apps. Want to run a game on a website the file is not normally necessary. A web app(lication) is not the same as website with your game ...

    Even in the case that you can not upload the file Kyatric has also give a answere ...

    For more information:

    https://www.w3.org/TR/appmanifest/

    Where now is still your problem?

    You could try it without the file, or not?

  • Realize that you can't do something never hurts. But to give up is not the right way. For everything you want to do you need the basics ...

    If you want to create a login system via PHP you have to know how PHP works ...

    Nice tutorials are at http://www.w3schools.com

    But that should be no advertising here. I find it described simply easy with a simply english ...

    All beginning is hard

    I programmed for about 2 years and I have sometimes the same problem: It won't work.

    And you always learn new things again

  • If the PHP code is called without GET request the server produces an warning-error because $_GET['email'] do not exist

    The script should still function but it is better to check if the GET-Request ['email'] and ['senha'] exist

    CODE:

    if(isset($_GET['email'])){

    $email = $_GET['email'];

    }

    I meen the function 'isset()' ...

    The variable for the e-mail will be delivered only if a GET-Request exist ... the AJAX code prevents this already, but for a good and safe programming you should not trust on it.

  • This describes the Google Terms

    When you offer an App for free it is no longer possible to convert it into a pay app. (Their actuality I do not know).

    But it is possible in a "free app" offer "in app purchases" ...

  • if you set

    $email = $_GET['email'];

    $senha = $_GET['senha'];

    check befor $_GET['theName'] is set with:

    if(isset($_GET['email'])){

    $email = $_GET['email'];

    }

    On a public server only a server log like [quote:3srptuut]

  • You do not have permission to view this post

  • CBelle

    I hope this is your searched answer ...

    https://www.dropbox.com/s/jl1xdztof527ub4/template_select_over_list.capx?dl=0

    Or in text:

    use "Select selection" ...

  • Hi guys,

    describes the way for login and regestation really good.

    A similar tutorial already exists:

    https://www.scirra.com/tutorials/525/simple-login-using-a-mysql-database

    with the exception that the password is not encrypted. But for a simple server system also is not forcibly required because if someone has already accessed the database, then you have other problems ...

    For good programming would not use GET but rather POST-Methodes. This is due to that a GET request is parsed on the URL (if the request is via a <form> tag). Would you now send this link to your friend or else the other have your login data unencrypted.

    If you send the GET-Methode via AJAX you get not a new parsed URL. GET is also processed a little faster than POST. I think therefore GET was used in the example.

    If someone listens to the connection (Like "man-in-the-middle-attack") it does not matter whether the request will be sent via GET or POST. For something like this it is good the variables for login data not call "PW" or "password" or similar. A hacker would look for it first. And use a SSL connection as already said. But even this is not always safe against "man-in-the-middle-attack".

    What really matters is,

    Save your server against harmful inputs!!!

    And that's also pretty easy. Please read this tutorial:

    http://www.w3schools.com/php/php_form_validation.asp

    And

    prevent the download of critical data (e.g. database)

    The encryption via JavaScript you need it for storrage the password local (e.g. cookie, sessionStorage)

    But should use with care!!! Passwords should never be stored ...

    For a top secure server it requires much more.

    All datas on the server have to be safe although a person has access to the server data.

    Then begins:

    -server cascade

    -encrypted programcode (to safe the decoding of your data)

    -encrypted database (illogical data input)

    -database cascade

    -a combination of password and token (token=temporary password)

    -person tracking (to be sure the logging user is really the registered user)

    -attack logs (banned hacker from server and identify attack strategies -> safe it)

    ... and everything one can think of

    And very important:

    Thinking never your server is secure!

    ... I hope my english was polite and understandable.

  • Hi Ninjadoodle,

    I'm glad that you found it yourself. This is always the best way to learn programming

    But I'm also so. One has a problem and you can't solve it ...

    I think the problem was that the order of your programm was not correct.

    [quote:2uafqd5o](sub-event) if Counter = 0 then set Name to Letters.Name, set Num to Letters.AnimationFrame

    (sub-event) if Counter = 1 then set Name2 to Letters.Name, set Num2 to Letters.AnimationFrame

    The exact running of your code, I do not know, but I have often in this order the problem that the previous event results in that BOTH are triggered.

    That's why I now use more often the Else command

  • Sorry Programmer25

    My english is not the best and I have read his questien like -> a have solve my problem by self

    Sorry

  • Bioniclekolacz

    You become dotted and you want a linear line?

    Dont't use sprites rather a TiledBackground and set his size ...

  • Safe the coints in a globale variable

    If the number of coints changed check if the coints over 1.000.000

    Give the gamer the super coin

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • jeffige if you have the same window and layout size (your first post) you can't scrolling anything because there is nothing to scroll. You need a diffrent size for the layout ...

    To fix the problem with the black bars (I hope I have understood you correctly)

    https://www.scirra.com/tutorials/73/supporting-multiple-screen-sizes

    Configuration Settings:

    Fullscreen in browser -> Scale outer

    Events:

    Get the screen size --> calculate the scale to fill the hole screen --> set it to the image

    I hope this was your problem ...

  • sorry my mistake ...