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.
Pretty easy, we're going to do the same thing for the boxesOnScreen array, but we'll also add our collision detection to this for loop.
for (j in boxesOnScreen) {
this[boxesOnScreen[j]]._y -= 7;
if(this[boxesOnScreen[j]]._y <0) {
this[boxesOnScreen[j]].removeMovieClip();
boxesOnScreen.splice(j, 1);
}
for(k in ballsOnScreen) {
if (this[boxesOnScreen[j]].hitTest(this[ballsOnScreen[k]])) {
this[boxesOnScreen[j]].removeMovieClip();
boxesOnScreen.splice(j, 1);
this[ballsOnScreen[k]].removeMovieClip();
ballsOnScreen.splice(k, 1);
}
}
}
Code Explanation
Up to the second for..loop everything is the same as the last code snippet that made the ball move, here we are just making the box move and checking if it has gone off the screen. In the second for..loop we'll run our hitTests between each box instance in the boxesOnScreen array and each ball instance in the ballsOnScreen array. If any of the instances collide we remove that instance using removeMovieClip, and we update the arrays.