good day!
is there anyone who can help me with my button?
if i click it once, it doesn’t perform the action.
i have to click it over and over to perform the action.
here’s my code which i put inside my button.
on (release) {
if (dupCount < 5) {
dupCount++;
_root["pinkButton"].duplicateMovieClip ("pinkButton" + dupCount, dupCount);
_root["pinkButton" + dupCount]._x += 20 * dupCount;
_root["pinkButton" + dupCount]._y += 20 * dupCount;
trace ("hello")
}
}
please help me here…