Go Back   kirupaForum > Flash > ActionScript 1.0/2.0

Reply
 
Thread Tools Display Modes
Old 11-11-2009, 01:11 PM   #1
jarin
Registered User
duplicatemovieclip in rows

hi i've read some other threads about this but i can't seem to get them to work with my script..i'm trying to fill my stage with squares to make a visual grid, using setInterval so it shows them animating across row by row.

so far i have this:

Code:
var counter = 1;
var i = 2;

function duplicateMC () {
    duplicateMovieClip(square,"square" + i, i)
    setProperty("square" + i, _x, (i-1) * 14);
    i++;
    
    if (counter == 50) {
        clearInterval(counterInterval);
    }
    
    counter++;
}

var counterInterval = setInterval(this, "duplicateMC", 10);
and that's building one row v nicely

however i've tried adding in code to make it break onto the next row after duplicating 50 but can't seem to get it to work no matter what i do..

any tips?? thanks!
jarin is offline   Reply With Quote

Sponsored Links (Guests Only) - Register | Need Help?
 

Old 11-11-2009, 04:33 PM   #2
Krilnon
≈ ≠ =
 
Krilnon's Avatar
Location Rochester, NY

Posts 7,183
Maybe you can do something like this:
ActionScript Code:
var counter = 1;
var i = 2;

function duplicateMC () {
    duplicateMovieClip(square,"square" + i, i);
    setProperty("square" + i, _x, ((i - 1) % 50) * 14);
    setProperty("square" + i, _y, int((i - 1) / 50) * 14);
    i++;
   
    if (counter == 249) {
        clearInterval(counterInterval);
    }
   
    counter++;
}

var counterInterval = setInterval(duplicateMC, 10);
Krilnon is offline   Reply With Quote
Old 11-12-2009, 06:57 AM   #3
jarin
Registered User
that worked perfectly
thank you!!
jarin is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 03:39 PM.

SUPPORTERS:

kirupa.com's fast and reliable hosting provided by Media Temple. flash components
Creative web apps. Make your own free flash banners and photo slideshows.
Check out the great, high-quality flash extensions. Buy or sell stock flash, video, audio and fonts for as little as 50 cents at FlashDen.

Flash Transition Effects

Flash Effect Tutorials

Digicrafts Components
Flash effects. Art without coding. Upload, publish, deliver. Secure hosting for your professional or academic video, presentations & more. Screencast.com
Streamsolutions Content Delivery Networks Flipping Book - page flip flash component.
Flash-Gallery.com - Get your flash photo gallery (flash component or swf gallery Learn how to advertise on kirupa.com
 

cdn
content delivery network (cdn)

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd. Copyright 2010 - kirupa.com Copyright 2010 - kirupa.com