Okay, so here’s what I wanna do:
Given: a stage, 700 x 700.
[AS]zoomObject = function {
//camera view
cameraView.x = 0;
cameraView.y = 0;
cameraView.z = 0;
cameraView.target.x = 350;
cameraView.target.y = 350;
cameraView.target.z = 20;
// +++ MISSING: +++
// code that makes the camera zoom in on the target point
// and set it right in the middle of the stage
};
[/AS]
Given: a button
[AS]on (release) {
zoomObject();
}[/AS]
Thanks for the kind assistance.
