I have a series of MultiBall I want to resize on their height axis.
I am trying this script :
Code: Select all
decl i, current,name;
for (i = 1;i < 27 ;i++) {
name = 'MultiBall'+arraytostring({i});
current = getattribute(name, 'rect');
set(current,128,3);
setattribute(name,'rect',current);
}