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.
When the user clicks on the button, the on(press) event of the button checks if the click is eligible for a double-click. Initially, the variable 'flag' is set to false. So, when the user clicks on the button for the first time, the condition 'if (_root.flag==false)' is satisfied and the 'flag' variable is set to true. The 'startcounter' variable is also set to true triggering the Counter MovieClip that we will create in the next step. The Counter MovieClip continuously increments the 'count' variable until the count variable becomes greater than or equal to the delay variable. If it becomes greater than or equal to the delay variable, the variables 'flag' and 'startcounter' are set to false and the value of count is reset to 0. This is necessary, because after the first click, if the user does not click again within the delay period, it is guaranteed that the next click will not produce a double-click. Hence, all the variables - count, startcounter and clicked are reset to the values as before indicating a fresh start as soon as the value of 'count' surpasses or eauals the value of the variable 'delay'.