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.
Flash does not explicitly recognize the MouseEvent "On Key Release", but there is a reliable way to do it. It does have a slight delay in it's functionality, but works nonetheless.
First, create a variable text field using the text tool with the "abc" button depressed. Right click (Control click on the Mac) the text field and give it a variable name "keyread". Now we're ready to start. To begin with I created the following layers:
Set up a movie clip named Key Release Detector and place it on the stage. Give it an instance name "keyrelease". Edit the movie clip and add ten blank frames.
On the first frame set a Stop action, and label it "park".
On frame 2 set a Play action and label it "play".
On frame 9 set the action you want to perform on key release, in this case we set the variable "keyread" on the main stage to "Key is not pressed".
On frame 10 set an action Go to and stop frame label "park".
On the main timeline, create a button. Set the actions for the button as follows:
On (Key: Space)
Set Variable: "/:keyread" = "Key is pressed."
Begin Tell Target ("/keyrelease")
Go to and Play ("play")
End Tell Target
End On