How do you align duplicated movie clips in a circular alignment using Flash AS3?
bar.duplicateMovieClip("bar"+i, i);
peak.duplicateMovieClip("peak"+i, 100+i);
this["peak"+i]._x = this["bar"+i]._x = this["bar"+(i-1)]._x+11;
}
bar._visible = 0;
peak._visible = 0;
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$2 Answers
I assume that the MovieClip you want to duplicate is "bar".
I assume that you have changed the movieclip's properties from the library to allow it to be accessible from actionscript code. iF you havent then right click the movieclip in the library. Choose Properties. Make sure you are in Advanced view. Select the Export for actionscript checkbox.
Now you can use any logic to generate movieclips along a circle.
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$http://flashexplained.com/actionscript/moving-and-rotating-a-movie-clip-with-button-symbols-via-actionscript/
http://www.emanueleferonato.com/2007/05/02/flash-animation-with-motion-guide-tutorial/
http://gamedev.michaeljameswilliams.com/2008/09/17/avoider-game-tutorial-1/
Lots of Tutorials can help you
http://www.tutorialsquad.com/tutorials/javascript/index.php?option=com_joomap&Itemid=34
http://ffiles.com/sitemap.html
http://www.feedage.com/feeds/1106132/ffiles-flash-files
You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.
M$