I'm currently working on a launcher game in flash:
- the hero throws a stick in the air, which then travels long distances, hitting all kinds of objects.
- while the stick makes its flight, the hero's dog runs after it, hitting all kinds of objects etc...
My problem: I want to split the screen horizontally where you follow the stick on the upper part of the screen, and you follow the dog on the lower part of the screen.
Right now I've implemented the stick movement. Technically, the stick only moves to the center of the stage, once its coordinates are at stage center, its all the other objects that move according to the x and y speed of the stick.
Now my problem is: how do I manage the display of the dog? I hoped that I could find some class that creates a sort of viewport, allowing me to display objects that are way out of the bounds of my stage but thus far I didn't find what I needed.
The only solution I can think of would be to create 2 instances of each movieclip whenever one is added to my stage, and add the copy as child of another movieClip, at converted x and y coordinates) but then I would have to do everything twice (eg: if the stick destroys something, its copy has to be destroyed as well).
Any idea on how I could do this without torturing my players' processor (and jeopardizing my own sanity)?