I have placed some movieclips/buttons/texts in another movieclip so it could fade in the screen when you pressed a button.
But now when I press a button inside the movieclip it just ignores what I tell him to do!
Normally it acts fine when it is alone.
What should I do?
Here is the code of the button:
on(release){
terrain.lineStyle(pensize += 1, curhex, penalpha);
cur_pensize += 1;
if(cur_pensize >= 50){
cur_pensize = 50;
}
}
Thanks to anyone helping me :D