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.
Let's continue the zoom routine. Open the next to last frame zoom.
Normally we only have two commands: the calculation of the depth and the setting of the
zoomvalue. Before this we are going to add a new command:
Set Variable: "zoom" = zoom + zm
If (zoom> 100)
Set Variable: "zoom" = 100
End If
If (zoom <10)
Set Variable: "zoom" = 10
End If
First we add the zm value to the zoom, then we check that it doesn't exceed 100% or go under 10%
(under ten percent the object gets too small).
Last we set the buttons: double-click on your zoom-in button (any one of your eight buttons).
Then set these actions:
On (Roll Over)
Set Variable: "zm" = "5"
End On
On (Release, Roll Out)
Set Variable: "zm" = "0"
End On
I don't think this needs to be explained: while the mouse is over the button,
the zoom increases by 5 percent at every loop. Now set the same thing for the zoom-out button
but with "zm"="-5"