Problems with capturing an event in child object in Actionscript
- by Raigomaru
I have two classes. The first one (the starting class):
package
{
import flash.display.Sprite;
import flash.events.KeyboardEvent;
import tetris.*;
public class TetrisGame extends Sprite
{
private var _gameWell:Well;
public function TetrisGame()
{
_gameWell = new Well();
…