Small queestion

Hey,

Is there anyway in mairlist to mass tag a folder eg like a jingle folder color all tracks green without having to do each track 1 by 1

Thanks
Dan Haycocks

Use this script - remove the // coments on the lines that you wish to carry-out. You may need to refer to an HTML colour/color look-up table if you don’t like my taste :slight_smile: Paste the following code into Notepad and save as “Set Item Attributes.mls” in mAirList’s “scripts” folder.

I have this script on the “Action” button for quick-usage. I simply open the script in Notepad and remove the // comments where I want a particular action to run. I also have a selection of playlist icons (found on this forum somewhere), so you can also load in music/jingle/advert icons, too.

[code]// Update MMD Files
// Remove the comments to perform a task
// Enable CueStart and FadeOut options for this to top and tail your audio
// by Charlie Davy

var
i: integer;

begin
for i := 0 to CurrentPlaylist.GetCount - 1 do

// If EndType is null, then do it
//if CurrentPlaylist.GetItem(i).GetEndType = ‘’ then

begin

// Set End Type
//CurrentPlaylist.GetItem(i).SetEndType(‘e’);

// Set Playlist Icon
//CurrentPlaylist.GetItem(i).LoadIconFromFile(‘C:\Program Files\mAirList\icons\Icon - Advert.png’);
//CurrentPlaylist.GetItem(i).GetPicture.LoadFromFile(‘C:\Program Files\mAirList\icons\Icon - Song.png’);

//CurrentPlaylist.GetItem(i).SetColored(true);

// Adverts and Promos
//CurrentPlaylist.GetItem(i).SetColor($80FF80);

//CurrentPlaylist.GetItem(i).SetArtist(‘ADVERT SET’);

// Beds
CurrentPlaylist.GetItem(i).SetColor($FFFF00);

// Jingles
CurrentPlaylist.GetItem(i).SetColor($00FFFF);

// VoiceTracks
CurrentPlaylist.GetItem(i).SetColor($FF80FF);

// Save MMD Data File
//CurrentPlaylist.GetItem(i).SaveMMD;

end;
end.
[/code]