1st script Cooldraft wrote on 10/19/2007, 5:32 PM I can not find splitevents in the vegasscriptapi so I can do splitevents(track,event.lengh/2). The api points me to trackevent split...is this the same? Back to post
Comments jetdv wrote on 10/19/2007, 7:07 PM //Split the event evnt.Split(NewLength); Cooldraft wrote on 10/19/2007, 10:25 PM where are you getting this syntax? The apihtml? jetdv wrote on 10/20/2007, 6:53 AM Basically, yes. When you program in Visual Studio, you also get "code completion" which also helps. Taken farther, you actually end up with TWO clips after this command and the new clip is actually returned back to you. Something like: newEvent = evnt.Split(NewLength); evnt would still be the original (shortened) event. newEvent would be the new event that is now after the split point. 1