Hey David, thanks for your reply,

Ok, so in the mootools.net example:
---------------------------------------------------------------------------
var myFx = new Fx.Tween('myElement', 'opacity');
myFx.start(1,0).chain(
    //Notice that "this" refers to the calling object (in this case,
the myFx object).
    function(){ this.start(0,1); },
    function(){ this.start(1,0); },
    function(){ this.start(0,1); }
);
---------------------------------------------------------------------------
I see what you're talking about. What I'm wondering about is how can I
do a chain with objects other than 'myElement' and change things other
than 'opacity'. I want the chain to change object a and then change
object b and then change object c. Is there a way to do this?

Thanks again -tim

Reply via email to