Skip to main content
Participant
January 6, 2017
Question

need help change as3 to as3 canvas For contact with php

  • January 6, 2017
  • 1 reply
  • 245 views

this original as3 code


function sendGame(e){

   var variables:URLVariables = new URLVariables();

   variables.my_id = myidCard;

   variables.my_course = mycourse;

   variables.my_time = mytime;

   variables.my_score = myscore;

           

   var urlloader:URLLoader = new URLLoader();

           

   var urlrequest:URLRequest = new URLRequest("http://www/EL/phpCheck/sendActivity.php");

   urlrequest.method = URLRequestMethod.POST;

   urlrequest.data = variables;

   urlloader.dataFormat = URLLoaderDataFormat.TEXT;//VARIABLES

           

   urlloader.load(urlrequest);

}

thankyou^^

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
January 6, 2017

google ajax for that.

Participant
January 9, 2017

thankyou^^

kglad
Community Expert
Community Expert
January 9, 2017

you're welcome.