This is more a theoretical question about I project I want to do than a technical question.
What I have:
- A very large image that is deliberately going off the stage (width: 2000px~, height 1000)
- Empty movieclip outside of the stage that content will be loaded into
What I want to do:
- When a button is clicked on the main stage, it will fire a tween that will move the
scope of the stage over the image and to the empty movieclip. - Effect: it will (hopefully) be like the stage is gliding over the large image until it stops at the empty movieclip’s coordinates.
What I’ve already done:
- I’ve downloaded Tweenlite after researching what I want to do
- I’ve looked at this example code: Tweenlite.to(mc, 1, {x:1500, y: 1000});
I’m wondering if I’m on the right track and if the effect I want will be produced using
Tweenlite.
Any ideas and/or suggestions would be greatly appreciated.