[Solved] AS3 Sliding Puzzle with Tweens [closed]


TweenMax for tweening objects.

And I found a lot of tutorials while googling.
For example http://ajaybadgujar.com/2011/12/06/as3-number-slide-puzzle-game-for-beginners/

Or here you can find a lot of topics and source code related to puzzles

If you think you start making the application straight away, you are kinda wrong.
You have to break the app down and think what you really need.
Some quick simple model as an example:

  • Main menu
  • Grid (as array)
  • Tiles
    • Filled in grid array and updated via loops
    • Contain their own picture
    • Attach event listeners to objects (MouseEvent.CLICK or others)
  • Check for a win situation with every move.

solved AS3 Sliding Puzzle with Tweens [closed]