# Array and targeting problem!

**URL:** https://forum.kirupa.com/t/array-and-targeting-problem/47511
**Category:** Uncategorized
**Created:** [April 4, 2004, 5:17pm UTC](https://forum.kirupa.com/t/array-and-targeting-problem/47511 "2004-04-04T17:17:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![rave\_t](https://avatars.discourse-cdn.com/v4/letter/r/58956e/32.png) [@rave\_t](https://forum.kirupa.com/u/rave_t)
#### Post date: [April 4, 2004, 5:17pm UTC](https://forum.kirupa.com/t/array-and-targeting-problem/47511/1 "2004-04-04T17:17:00Z")

</div>

I’ve used this code in the first frame of my main movie.

```auto

follow_array=["fm0","fm1","fm2","fm3","fm4"]
for (i=0; i<5; i++) {
	follow_me_tmp.duplicateMovieClip(follow_array*,i);
}

```

The problem is that I want to access each individual mc:s properties like their \_x and \_y.

Like this:

for (a=0; a\<5; a++) {  
endY = \_root.follow\_array[a].\_y;  
}

But that doenst work, how can I target the, follow\_array[a] properies like \_x and \_y ???
