Action Script 3. Timer starts count when I'm in menu, but game not started
问题 I'm creating flash game and I get strange problem. Timer starts count when I'm in menu, but game not started. In menu I have button "Play", after It is clicked It add timer, but It shows how long program is running (start count from current time). This is main function which starts public function MemoryGame() { startMemoryGame.addEventListener(MouseEvent.CLICK, startPlay); } This is button to start game: function startPlay(e:MouseEvent):void { startMemoryGame(); } And here Is my function