Tween to content outside of stage

This is more a theoretical question about I project I want to do than a technical question.

Inspiration/similar effect: http://www.jonathanyuen.com/main.html

What I have:

  1. A very large image that is deliberately going off the stage (width: 2000px~, height 1000)
  2. Empty movieclip outside of the stage that content will be loaded into

What I want to do:

  1. 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.
  2. 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:

  1. I’ve downloaded Tweenlite after researching what I want to do
  2. 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.