Search tutorials
Making the code simple
Those of you who can remember back to high school algebra will be able to see that these formulas can be simplified further by multiplying out and cancelling terms with opposite signs, resulting in our final clockwise code:
onClipEvent (enterFrame) { //clockwise
framePos = int(_xmouse / 100 * _parent._totalframes);
if (framePos <%lt%> 0) {
_parent.gotoAndStop(1 - ((framePos + 1) % _parent._totalframes));
} else {
_parent.gotoAndStop(_parent._totalframes - (framePos % _parent._totalframes));
}
}
And applying the same process to our anticlockwise code gives:
onClipEvent (enterFrame) { //anticlockwise
framePos = int(_xmouse / 100 * _parent._totalframes);
if (framePos <%lt%> 0) {
_parent.gotoAndStop(_parent._totalframes + ((framePos + 1) % _parent._totalframes));
} else {
_parent.gotoAndStop(1 + (framePos % _parent._totalframes));
}
}
This makes it really easy to build an Object VR player for any QTVR movie of any length by simply grabbing the code that is appropriate for the rotation of your video file and pasting it on to your driver clip.
Time to wrap things up. Let's have a quick look at how to use our player.
| » Level Advanced |
|
Added: 2003-12-16 Rating: 8 Votes: 76 |
| » Author |
| Tim is a co-director of the Glasson Murray Group, providing quality graphic design, illustration, 3D visualisation, interactive environments, virtual reality, multimedia and website services. |
| » Download |
| Download the files used in this tutorial. |
| Download (1028 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!