setdev's Forum Posts

  • Hi, my app work with page from my web site.

    I need to add this:

    <uses-permission android:name="android.permission.INTERNET" />

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

    in the AndroidManifest.xml

    Any plugin for auto put the permission i need with one select box?

    Thank you...

  • Anyone can make one add-on "for put permission request in the android version, this only for don't do it manually, but only with select what permission i need.

    Thank you..

    Tagged:

  • I tested to export to HTML5 for myarcade wp plugin but don't have big result..

    PS: the Scira Feed URL don't work on myarcade plugin...

    I Think need new Feed URL from scira for work..

  • You do not have permission to view this post

  • Put one global var "created" value=0

    In the object create condition put "compare if created =0

    "now add action" set created=1

    "now add action" create your object

    after object is created

    set created=0

    Fast...

    Tagged:

  • I need character for jumping game, with hd resolution !!

    Thank you!

    gs. i can do it but i dont't have time..

    i wait link ...

    Tagged:

  • You do not have permission to view this post

  • You do not have permission to view this post

  • the result is text3 after ajax have lost data..

    grr..

    where i'm in error?

  • Problem is this: the result in the leadeboard is this:

  • header('Access-Control-Allow-Origin: *');

    $servername="myhost"; // Host name

    $username="myuser"; // Mysql username

    $password="mypass"; // Mysql password

    $dbname="mydatabase"; // Database name

    $tbl_name="mytable"; // Table name

    // Create connection

    $conn = new mysqli($servername, $username, $password, $dbname);

    // Check connection

    if ($conn->connect_error) {

    die("Connection failed: " . $conn->connect_error);

    }

    $sql = "SELECT user,score FROM starglass";

    $result = $conn->query($sql);

    if ($result->num_rows > 0) {

    // output data of each row

    while($row = $result->fetch_assoc()) {

    echo "" . $row["user"]. "|" . $row["score"]. "";

    }

    } else {

    echo "0 results";

    }

    $conn->close();

    • header('Access-Control-Allow-Origin: *');

      #header('Access-Control-Allow-Methods: GET, POST');

      now work..

      i have added in one file the control methods..

      Thank you.

    • So.. I got answer from G PLay

      "I'm only able to reset the upload key with the pem file which generate from Android Studio."

      So it's not working I need to install Android Studio

      I have used keystore-explorer!

    • I use mysite.com/myfile.php?user="userstoredinConstruct"&

      in the myfile..

      the sql code write to me the score of the user..

      sql_" select score from mytable where user='$user' etc..";

      $result = $conn->query($sql);

      if ($result->num_rows > 0) {

      while($row = $result->fetch_assoc()) {

      echo "".$row["score"]." ".$row["user"]."";

      }

      } else {

      echo "0 results";

      }

      $conn->close();

      All this ok...

      "but not in construct using Ajax"

      get the result? how to do?= with lost data? only?

      Thank you..

    • Yes, but i need result from player name stored in mysql database..

      :)

      in sql ok, in construct with ajax i have problem .. i think only today problem :)

      get data from url like "playerrestult.php?playername" ... this is my problem for get data from url... i have used it many year ago but now i don't remember..