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.
The loop
Next we are just going to set up the basic loop. This will be used later for the zoom and the rotations.
Open the 4th frame loop2 and enter
Go to and Play ("loop")
The zoom routine (part 1)
We now have to make a basic zoom routine to transform the zoom value in percent
into the z-coordinate of the view plane. We'll make the zoom buttons in a while.
They way we do our conversion is to take a percent of the distance between the eyez (minimal zoom position)
and the maxzoom position, and add the maxzoom. This way the z of the view plane takes values between eyez and
maxzoom when the zoom takes values between 0 and 100 percent. Open the next to last keyframe zoom
and enter this:
The depth variable contains the z-coordinate of the zoom plane.
The draw command is the central routine of our engine, we'll build it soon.
Also add this command to set the zoomvalue variable so the zoom shows up.
Set Variable: "zoomvalue" = "zoom= " & zoom & "%"
The drawline routine
This is the last thing we have to do before the drawing routine it self. This routine will be used
to draw the line linking two points. The way it works is that the baseline is duplicated and its
size and position are adjusted to correspond to the points (it works, that's all that counts).
Set Variable: "pt1" = eval("pt1"&n)
Set Variable: "pt2" = eval("pt2"&n)
Set Property ("line"&n, X Position) = eval("2Dx"&pt1)
Set Property ("line"&n, Y Position) = eval("2Dy"&pt1)
Set Property ("line"&n, X Scale) = eval("2Dx"&pt2) - eval("2Dx"&pt1)
Set Property ("line"&n, Y Scale) = eval("2Dy"&pt2) - eval("2Dy"&pt1)
If the number of the line is stored in variable n, the line number n is drawn.