Forum ActionScript 3.0 how to make this work?

Problems and discussions relating to ActionScript 3.0 here.

how to make this work?

Postby aldo » March 19th, 2014, 12:23 am

Code: Select all
public function Main()
{
this.Play_Buttons.addEventListener(MouseEvent.CLICK, gotoGame);
}

function gotoGame(event:MouseEvent)
{

}

function saveRounds(param1:Client):void
{
var client:* = param1;
client.bigDB.load("roundTable", "round4", onRoundLoaded);
}//end functions
      
function onRoundLoaded(_dbObject:DatabaseObject):void
{
_dbObject.theRound++;
_dbObject.save();
}


when click button play add + 1 to theRound and save it...
aldo
 
Posts: 12
Joined: August 11th, 2013, 1:56 pm

Re: how to make this work?

Postby stephenallen » March 28th, 2014, 3:54 am

Stick fly ?
stephenallen
 
Posts: 6
Joined: March 24th, 2014, 10:06 pm

Re: how to make this work?

Postby aldo » March 29th, 2014, 12:11 am

yeah
aldo
 
Posts: 12
Joined: August 11th, 2013, 1:56 pm

Re: how to make this work?

Postby stephenallen » March 30th, 2014, 5:55 am

aldo wrote:yeah


aldo can u help me saving score and rounds ? i already made the single player using as3 and chat
stephenallen
 
Posts: 6
Joined: March 24th, 2014, 10:06 pm


Return to ActionScript 3.0



cron