Hi,
I want to try a simple function in flash but it wont work :
the function is :
- Code: Select all
function grow() {
this._xscale += 10;
this._yscale += 10;
}
but when i call it in a button it wont work :
- Code: Select all
on (press) {
_root.objectName.grow();
}
whats the problem ?