Jump to content
Search Community

sequencing barebones flash templates

sunnyday test
Moderator Tag

Recommended Posts

hi guys,

 

anyone knows the link to the tweenNano (or tweenLite) barebones template flash files? It has this 'advance' function and incrementing variable 'phase' thing:

 

code sample:

 

var phase = 0;
var timer = setInterval( advance, 200 );

 

function advance(){

     if ( phase == 0 ){

        

       // some tween codes here

       

        timer = setInterval( advance, 200 );

    

     } else if ( phase == 1 ){

        // etc...

     }

 

     phase ++;

 

}

 

thanks for any info.

Link to comment
Share on other sites

I can't remember when I saw it but there was a download link from this site. Its a zip file where you have flash files ( barebones flash templates ). It uses a setInterval to call 'advance' function. Uses tweenNano to keep filesize down. It has an actions layer and you have barebones codes on it using tweenNano. Very useful in setting up banner projects. Anyways, thanks for the reply.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...