my booleen has always been bad… and its late so i’m not making much sense…
but i have a problem. i want an animation to start when it hits the loadbar on a preloader… so i hitest it… but i need to code it so it stops hit testing when it first touches… so the animation can play
heres my code… i’ve never done much if statements since vb… so help?
this.loadBar.onEnterFrame = function() {
if (i<1) {
if (this.hitTest(drip1)) {
trace("cool");
i += 1;
}
}
};