Hi Guys! I have found solution for my previous problem:
onClipEvent (load) {
_root.hitz = 0;
this._alpha = 0;
}
onClipEvent (enterFrame) {
this._y -= _root.speedz;
this._rotation += 7;
if (this._y<=-80) {
this._alpha = 100;
}
if (this._y<=-400 && _root.hitz == 0) {
gotoAndPlay(2);
_root.missed += 1;
_root.hitz = 1;
}
if (_root._currentframe == 3) {
_parent.nextFrame();
}
if (_root.score ==5) {
getURL(clickTag, “_blank”);
}
}
but now I have a new one! After fifth click browser keeps opening hundreds of new tabs! I think it’s because flash keeps playing movie. There must be some kind of loop and every loop flash opens new tab. I tried to add stop(); in few different places but still no result. NO IDEA WHAT TO DO!!