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.
CalculateRepayment - plays the calculate frame. Later, we'll add validation
to this function.
setRepaymentTerm - sets the value of the intRepayments variable
StartOver - plays the first frame of the movie
floor - used to round the repayment to two decimal places
Add the code shown below to the first frame of the functions layer.
function CalculateRepayment(component) {
gotoAndPlay("calculate");
}
function setRepaymentTerm(component) {
intRepayments = component.getSelectedItem().data;
}
function StartOver() {
gotoAndPlay("start");
}
function floor(number) {
return Math.floor(number*Math.pow(10,2))/Math.pow(10,2);
}
Test the movie. If you click the Calculate button, the second frame should
display. Then you can click the New Calculation button to go back to the
first frame.