clip in use on timeline?

ushere wrote on 4/13/2005, 11:08 PM
maybe i'm missing something very obvious - if so, sorry, but can't seem to find anything in the manual about it....

i have a long form interview with a mass of cutaways, inserts, etc., and other than having a photographic memory (it's good, but not that good), searching the timeline, or making copious notes, how do i know if a clip (or subclip) is already in use on the timeline?

curious yellow

leslie

Comments

GaryKleiner wrote on 4/13/2005, 11:15 PM
Make sure all your project media is in the Media Pool. Check the Media Pool in Detailed View. There is a column for Use Count. Anything that reads 0 is not in the timeline.

Also, Excalibur has Find Unused Wizard that creates a track at the bottom of your project and populates it with all your unused media.

Gary
Grazie wrote on 4/13/2005, 11:27 PM
. . and you can "sort" the use count by clicking on that fieldname. - All the "0" used media will be grouped at the top OR the bottom of your list. Easy!

Grazie
Grazie wrote on 4/13/2005, 11:30 PM
. .and then you could create an UNused Bin and move this lot to that as a way of keeping an "eye" on what you haven't yet used, need to review and if you just want to remove.


.. and if you create another Instance of Vegas you could then MOVE that whole Unused Bin to this "other" instance of Vegas for you to work on separately to the previous project.

Grazie
GaryKleiner wrote on 4/14/2005, 12:21 AM
Try and calm down, Grazie ;-)

Gary
Grazie wrote on 4/14/2005, 1:32 AM
Why? - G
Spot|DSE wrote on 4/14/2005, 6:40 AM
Ushere, the Edit Details window is used just for this. View/Edit details.
ushere wrote on 4/14/2005, 5:43 PM
many thanks one and all.

goodness, i used that clip 3 times!!!!

still learning after all these years,

leslie
Orcatek wrote on 4/14/2005, 6:28 PM
Here is a little script I threw together to find where a used item is in the timeline. You first have to right-click the item in the media pool and choose "select timeline events".

Use this script- then hit the "\" key to center your window. Note it will only move to the first selected item, so if it is in more than once it won't go to the second. If nothing is selected it dies as I didn't do any error checking.

import System.Windows.Forms;
import Sony.Vegas;
var evnt = FindSelectedEvent();
Vegas.Cursor = evnt.Start;

// finds the first selected event... note that when multiple events
// are selected, this only returns the first. returns null if no
// events are selected.
function FindSelectedEvent() : TrackEvent {
var trackEnum = new Enumerator(Vegas.Project.Tracks);
while (!trackEnum.atEnd()) {
var track : Track = Track(trackEnum.item());
var eventEnum = new Enumerator(track.Events);
while (!eventEnum.atEnd()) {
var evnt : TrackEvent = TrackEvent(eventEnum.item());
if (evnt.Selected) {
return evnt;
}
eventEnum.moveNext();
}
trackEnum.moveNext();
}
return null;
}