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.
Create two movieclips, and do whatever you want with them. Just so I can show you how they work in hit test coding, I will call them mc1 and mc2. In mc1, type the following:
onClipEvent (enterFrame) {
if (this.hitTest(_root.mc2)) {
_root.
}
}
Right now it will only detect the contact, but nothing will happen. If you want it to go to frame 2 of mc1 after contact, give frame 2 of the mc a frame label, for instance, Action. (to give frame labels, just select the frame and in the properties type in frame label Action) Then type this in after the last _root.:
GotoAndStop("Action");
Now, put everything you've learned into a game, or at least be happy with whatever actionscript you copied and then closed this tutorial.