how do i, having created a limited number of mc's then attatch an actionscript to those mc's that refer to only themselves...? You follow. Check the code below

This is the code i want to attatch to the mcs

Code:
onClipEvent (load) {
trgtx = this._x;
trgty = this._y;
}
on (press) {
this.startDrag();
_alpha = 40;
i=0;
}
on (release, releaseOutside) {
this.stopDrag();
_alpha = 100;
i=1;

}
onClipEvent(enterFrame){
if(i!=0){
floatTo(this, 2, trgtx, trgty);
}
}
see post below for a clearer explanation

Any ideas?



[Edited by buggedcom on 09-03-2002 at 07:48 PM]