Hi!
I begin to write scripts, and I have this problem:
The Transition object is not documented in the API I've found
here on this site. Is there any description available somewhere?
My question is shown with the script following. Where I wrote
HERE, I was thinking that "trans.Keyframes" was a Collection
(If we say that a "Transition" is an "Effect", it's suggested in the
API at the Effect paragraph.)
BUT, the error Vegas return me is that is not a Collection...
An idea?
Thanks in advance...
Thierry
var transEnum = new Enumerator(Vegas.Transitions);
while (!transEnum.atEnd())
{
var trans = transEnum.item();
var keyFrEnum = new Enumerator(trans.Keyframes); // HERE
while (!keyFrEnum.atEnd())
{
// ..........
keyFrEnum.moveNext();
}
transEnum.moveNext();
}
I begin to write scripts, and I have this problem:
The Transition object is not documented in the API I've found
here on this site. Is there any description available somewhere?
My question is shown with the script following. Where I wrote
HERE, I was thinking that "trans.Keyframes" was a Collection
(If we say that a "Transition" is an "Effect", it's suggested in the
API at the Effect paragraph.)
BUT, the error Vegas return me is that is not a Collection...
An idea?
Thanks in advance...
Thierry
var transEnum = new Enumerator(Vegas.Transitions);
while (!transEnum.atEnd())
{
var trans = transEnum.item();
var keyFrEnum = new Enumerator(trans.Keyframes); // HERE
while (!keyFrEnum.atEnd())
{
// ..........
keyFrEnum.moveNext();
}
transEnum.moveNext();
}