> just to learn: is there a possibillity to change only one part [ff] of
> the exsisting morph-object like i thought in the beginning.
> .start({
> ff: [0],
> 'opacity': [0]
> });
> what we did for now is to create a complete new morph-object.
Dude, seriously? :P
Like I said originally and echoed by everyone else, you can't use an
object literal --
{
name: value, name2: value2
}
-- and have the key names be drawn from variables. Doesn't matter if
they're in quotes are not.
Note you can't use object literals to "change...the existing
morph-object" anyway. That isn't what's happening in your imaginary
example. You're still passing a new, complete object to start().
-- S.