smallest time for the property "animateProperty"

Hi !!!!!!
Does anybody know if one second its smallest time for the property "animateProperty" ?.
Ex: document.barra_idiomas.style.animateProperty("opacity", "0;1", 1);

Smaller gives error ( 0.5),(500ms),(5f).


Sonic Advanced content gives error .

Thanks

[629 byte] By [lp_HDDVD] at [2007-12-28]
# 1

According to the spec, animateProperty takes a Number type, which can represent fractional values. Sonic may just have a bug.

Note that you shouldn't do very small time values; anything smaller than (say) half a second is discouraged because on a low-end player under high stress you may end up dropping frames. As much as possible you should make sure all your critical animations (eg, state changes) begin and end based indefinite times so you guarantee they happen, versus small time periods that may or may not happen under extreme circumstances.

That's not to say you can't do small, fast animations of less than 0.5s; you just shouldn't make them critical-path.

PeterTorr-MSFT at 2007-9-4 > top of Msdn Tech,Audio and Video Development,HD DVD Interactivity Authoring...
# 2

I've just checked - setting 0.5 as an animation duration works correctly in MS implementation.

The line of code I used:

document.button1.style.animateProperty("opacity", "0;1", 0.5);

.

AnnaGalaeva-MSFT at 2007-9-4 > top of Msdn Tech,Audio and Video Development,HD DVD Interactivity Authoring...