Jump to content
Search Community

sunnyday

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by sunnyday

  1. 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.

  2. 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.

  3. From my understanding easeInOut is like 'slow-fast-slow' motion. Is there a 'fast-slow-fast' counterpart in tween easing?

     

    Was looking at the Ease Visualizer and can't see (or missed seeing) anything related to 'fast-slow-fast' motion.

     

    Any idea? Thanks.

×
×
  • Create New...