hey, ive got a text resize function and i want to apply it to two buttons so they both execute the function.
the function is…
_root.largeTextButton1.onRelease = function() {
resizeText(hometext,14);
}
and
_root.largeTextButton2.onRelease = function() {
resizeText(hometext,14);
}
is there anyway i can do somthing like…
_root.largeTextButton1 & largeTextButton2 .onRelease = function() {
resizeText(hometext,14);
}