got stuck with this…
I’ve 2 mc in timeline
instance names are:
form1
form2
in first frame I wrote the following code
setProperty(form1, _alpha, 50);
setProperty(form2, _alpha, 50);
this works ok
but the question is… multiple targets, how could I do something like this:
setProperty((form1; form2), _alpha, 50);
although I know this doesn’t work… how could I setProperty of more than one instance?
:crazy: