Results 1 to 3 of 3
Thread: Display List Referencing
-
July 16th, 2009, 04:31 AM #1182Registered User
postsDisplay List Referencing
Hi
I had some help on this the other day which was very useful but my project has changed a bit since then.
I have a container movieclip called cont_mc then inside that I have a series of pins which are called pin1_mc then inside the pins I have a final movie clip the size of the pin head to act as the hit state.
You can see what I talking about here:
http://www.qwerty-design.co.uk/bensons/forum.html
Before I had the pins in the container movie clip I was able to bump them to the top of the display list using this code in the on over function.
this.setChildIndex(event.target.parent, this.numChildren-1);
Now I have wrapped them in the container mc this code no longer works and I get an error, must be a child of the caller?
How can I change this?
-
July 16th, 2009, 03:36 PM #2
try
Code:cont_mc.setChildIndex(event.target.parent, event.target.parent.parent.numChildren-1);
-
July 16th, 2009, 04:21 PM #3182Registered User
postsThanks!!, that worked like a charm.

Reply With Quote

Bookmarks