> FxFadeBande.start(1,0).chain(function(){ this.start.delay(1000, [0,1]); });

> The second parameter of delay is the arguments you want to call start with.

Don't forget the bind parameter

    function(){ this.start.delay(1000, this, [1,0]) }

-- S.

Reply via email to