Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Positioning new Movies 1

Status
Not open for further replies.

Roaders

Programmer
Aug 5, 2001
38
GB
Hi guys

I am using this code:

onClipEvent (load) {
for (i=1;i<_root.categories.length;i++){
_root.attachMovie(&quot;newCategoryButton&quot;,&quot;image_&quot; + i + &quot;_0&quot;,i);
setProperty (&quot;image_&quot; + i + &quot;_0&quot;, _x, 60);
}
}

to create new movie clips in my movies. The thing is they all appear in the top left corner and I can't move them anywhere else. I have tried setProperty as above, image_1_0._x = 60 and have even tried writing a function inside the movie clip to move it.

How do I put it where I want it?

Thanks
Giles Roadnight
messenger: giles_roadnight@hotmail.com
ICQ: 81621370
 
setProperty (_root[&quot;image_&quot; + i + &quot;_0&quot;], _x, 60);
Diana.
diana@cyberslotz.co.uk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top