rogerio26
August 12th, 2003, 11:32 AM
//I would like that the movie clip "resu_mc"
be with _alpha = 100 after the movie clip
"mask_mc" has the height 700.
//I trieded the code bellow and it's nothing working. the _alpha continuos zero.
//Thanx in advance.
Rogerio
mask_mc.onEnterFrame = function() {
if (mask_mc._width < 900) {
mask_mc._width += 50;
}else{
if (mask_mc._height < 700)
mask_mc._height += 50;
}
};
resu_mc.onEnterFrame = function() {
dm = getProperty("/mask_mc", _height);
if (Number(dm) == 700) {
resu_mc._alpha = 100;
}
};
be with _alpha = 100 after the movie clip
"mask_mc" has the height 700.
//I trieded the code bellow and it's nothing working. the _alpha continuos zero.
//Thanx in advance.
Rogerio
mask_mc.onEnterFrame = function() {
if (mask_mc._width < 900) {
mask_mc._width += 50;
}else{
if (mask_mc._height < 700)
mask_mc._height += 50;
}
};
resu_mc.onEnterFrame = function() {
dm = getProperty("/mask_mc", _height);
if (Number(dm) == 700) {
resu_mc._alpha = 100;
}
};