Search tutorials
The Final touch
Now just two more steps to go.
- If you cannot see the stage, press Tab key to hide all the panels. Now, select the button you once dragged on to the stage. Scroll through the stage to find it. After it has been selected, press Ctrl+Alt+Ato open the ActionScript window. Copy and paste the following code into it:
on (keyPress "<%lt%>up<%gt%>") { by = 2; } on (keyPress "<%lt%>down<%gt%>") { by = -2; } on (keyPress "<%lt%>left<%gt%>") { bx = 2; } on (keyPress "<%lt%>right<%gt%>") { bx = -2; } on (keyPress "a") { bz = 2; } on (keyPress "z") { bz = -2; } on (keyPress "'") { Viewport += 5; } on (keyPress "/") { Viewport -= 5; }These just add more interactivity to the movie. Now, the user can rotate the object in any axis and also zoom in or out of it. By press in up or down keys, the user is giving a positive or negative value to the bx variable. Remember that this variable also affects rotation.
Similarly, pressing the left and right keys rotates the object in y axis.
Since there is no way of controlling the z axis, pressing the a and z keys rotates it on the z axis.
The Next 2 events increment or decrement the Viewport variable. This variable is used to convert the 3d objects to 2d objects. This variable determines how close to the screen the point of origin is. So, by pressing the apostrohe(') and the slash(/) keys, you literally zoom in and out of the object.
There is one more small thing left to do. If you don't see the Library window, press Ctrl+L to invoke it. Now open the Line movieclip and select the "fat-line" like thing. If you don't see the Mixer panel, go to Window - Panels - Mixer to see the mixer panel. Now, change the alpha value of the circle to 83%.
If you want, you can give a color tween to the line movieclip so that it changes color as it moves.
Now that's it. Project Complete. Publish or save the file and view it in the standalone player.
Comments and suggestions welcome.
Author: V. Ramraj
Email: ramraj_1999@yahoo.com
| » Level Advanced |
|
Added: 2002-07-05 Rating: 9 Votes: 1235 |
| » Author |
| Age: 14 Profession: High School Student Location: Chennai, India(Not Indiana). Just doing it for fun. Ready to do small Freelance jobs. |
| » Download |
| Download the files used in this tutorial. |
| Download (51 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!