Container

How can I rename the advertising container, by default its title is “Container”, I didn’t find where to change it to “Advertising container” for example.
“Always create a container” function is checked in the Advertising template.


How can I mark a container as skipped if it’s detected as empty?
I would like ad containers not to appear in the playlist. “Remove empty advertising containers” is checked, the container isn’t read but still appears in the playlist.

if (CurrentPlaylist.GetItem(i).GetItemType() = pitContainer) and (CurrentPlaylist.GetItem(i).IsEmpty()) then begin
    CurrentPlaybackControl.Skip(i);
  // CurrentPlaybackControl.Delete(i);
end;