So I'm messing around and have decided that I'm going to add a main menu to a game that I've been working on in flash. So I've got my background and I've decided that I want to add a ball into the background that will bounce up and down and move across the screen - However all that I've found so far is that it is just sticking in the top corner and is not updating each frame. Some feedback on where I'm going wrong is very much appreciated - I understand that its probably because I'm doing addChild(gameBall) in the wrong place but how would I go about correcting that? main.as is basically the switch that checks what state the game is in and mainMenu.as is the mainMenu itself. They are seperate files which I have commented above the code.
// main.as
package
{
import flash.display.*;
import flash.system.fscommand;
public class main extends MovieClip
{
public function main()
{
changeState(null, "menu");
}
public function changeState (currentState, nextState)
{
if (currentState != null)
{
removeChild(currentState);
}
switch(nextState)
{
case "menu": var mm:mainMenu = new mainMenu(changeState);
addChild(mm);
break;
case "game": var g:theGame = new theGame(changeState);
addChild(g);
break;
case "exit": fscommand("quit");
break;
}
}
}
}
//mainMenu.AS
package
{
import flash.display.*;
import flash.events.*;
public class mainMenu extends MovieClip
{
var theCallBackFunction:Function;
private var ballX:Number = 5; // Declaring a variable known as _vx
private var ballY:Number = 5; // Declaring a variable knwon as _vy
private const GRAVITY:Number = 2; // Declaring a const variable known as gravity
var gameBall:Ball = new Ball();
public function mainMenu(callBack)
{
var btnPlay:mmPlay = new mmPlay();
btnPlay.addEventListener(MouseEvent.MOUSE_DOWN, brnP_Button);
btnPlay.x = width/2;
btnPlay.y = height/2 - btnPlay.height/2;
addChild(btnPlay);
var btnExit:mmExit = new mmExit();
btnExit.addEventListener(MouseEvent.MOUSE_DOWN, brnE_Button);
btnExit.x = width/2;
btnExit.y = height/2 - btnExit.height/2;
btnExit.y += btnExit.height + 4;
addChild(btnExit);
ballY += GRAVITY
if (ballY < 0)
{
ballY += 5;
}
gameBall.x += ballX;
gameBall.y += ballY;
addChild(gameBall);
theCallBackFunction = callBack;
}
public function brnP_Button(e:MouseEvent)
{
theCallBackFunction(this, "game");
return;
}
public function brnE_Button(e:MouseEvent)
{
theCallBackFunction(this, "exit");
return;
}
}
}