hi there,
i have some problems joining an additional effect.multiple animation
in an existing queue like:
new Effect.Appear(this.container, {
queue: { scope: 'content', position: 'end' },
beforeStart: (function() { // ADDITIONAL MENU ANIMATION
if (menu)
Effect.multiple(this.menu.select('li'), Effect.Morph, {
style: 'left: 20px;',
queue: { scope: 'content', position: 'front' },
});
}).bind(this)
});
the problem is, that all elements in the effect.multiple were joined
to the queue, not the whole multiple animation.
is there a solution, or may i work-around without effect.multiple?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---