Featured FLA
» Author: Bugra Ozden
» Title: Skatalog v9 - product catalog
» Description: Create your product catalog easly and publish on your website or Create your image gallery, documents list, portfolio. Fully XML Driven
» More by Bugra Ozden
Featured Site
» Posted in the Flash Kit Links section
» Title: Creative DW Image Show PRO
» Description: Creative DW Image Show PRO is a Dreamweaver extension which enables the user to create multimedia presentations. It combines the features of the popular Creative DW Image Show with the ability to add professional text effects to slides (similar to After Effects). The product is very customizable: the user can choose the duration of the transition effects, the slide motion start and end position, zoom and panning type for both images and texts.
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+A to open
the ActionScript window. Copy and paste the following code into it:
on (keyPress "<up>") {
by = 2;
}
on (keyPress "<down>") {
by = -2;
}
on (keyPress "<left>") {
bx = 2;
}
on (keyPress "<right>") {
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.