djmousetek
Programmer
i made a site in flash and i'm having problems with the gallery... i made the gallery following a tutorial because i'm a beginner... this is the code i used to display the numbers of the thumbs, to be able tonavigate:
newBut = _root.attachMovie('numTemplate', 'num'+i, i);
newBut._y = sliderHolder_mc._y+sliderHolder_mc._height+127;
newBut._x = (i*newBut._width)+sliderHolder_mc._x+163;
newBut.myNum = i;
newBut.num_txt.text = i+1;
newBut.onRelease = function() {
targX = 0-(this.myNum*104);
};
i can't get that newBut disappear when i click on the home button. CAN ANYONE HELP ME?
newBut = _root.attachMovie('numTemplate', 'num'+i, i);
newBut._y = sliderHolder_mc._y+sliderHolder_mc._height+127;
newBut._x = (i*newBut._width)+sliderHolder_mc._x+163;
newBut.myNum = i;
newBut.num_txt.text = i+1;
newBut.onRelease = function() {
targX = 0-(this.myNum*104);
};
i can't get that newBut disappear when i click on the home button. CAN ANYONE HELP ME?