Hello,
In a script, I create a HookContainer using some items in the playlist.
No problem: my opener and closer are presents at the beginning and the end : but their start next cue points are not used at all… whatever it’s the opener or the closer item…
Is there an option to use them when creating a hookcontainer ?
Here is my current code :
hookPlaylist := Factory.CreatePlaylist;
hookPlaylist.Add(HeavenReplay.GetItem(1));
hookPlaylist.Add(HeavenReplay.GetItem(2));
hookContainer := Factory.CreateHookContainer(hookPlaylist);
hookContainer.SetTitle('Next Music');
Playlist(1).Insert(Playlist(1).GetCount, hookContainer);
Additional information: I tried with a normal “container” with the opener added manually and 1 track after… and cue markers are well used by the container.
Regards,
Sylvain