by raybeau528 » Mon Oct 06, 2008 4:04 pm
What exactly are you trying to do and what (code) have you tried so far?
A simple way to get all tracks in the library is to select the 'title' node, ctrl-a to select all tracks and in a script you call use this code
Dim list : Set List = SDB.CurrentSongList ' Method to process each track in a selection
Dim i
For i = 0 to list.count-1
' do some processing here
next
It also works for any selection of tracks.
Ray
What exactly are you trying to do and what (code) have you tried so far?
A simple way to get all tracks in the library is to select the 'title' node, ctrl-a to select all tracks and in a script you call use this code
Dim list : Set List = SDB.CurrentSongList ' Method to process each track in a selection
Dim i
For i = 0 to list.count-1
' do some processing here
next
It also works for any selection of tracks.
Ray