(Solved) playlist item - set to soft time in 4.0.2

Hi,

I’m trying to update an old pre 3.0 script to mairlist 4.0.2
It’s supposed to set specific item to fixed soft time

the old code was:

pi.SetStartTime(sttFixed,t1); pi.SetOptions([pioSoftFixedTime]);

For the new version,

pi.SetFixTime(t1)

is accepted, but how can I flag this time to soft?

The seems to be an option
TPlaylistItemStatusFlag - pisfFixedStartWait
but how to I attach it to the playlist item?

Finally found a solution (after searching through the chm file for 3-4 hours ;):

   pi.SetFixTime(t1)
   pi.SetTiming(timSoft)

seems to be the working syntax…

Hi there

May i ask which script this was?

Was this the IVR script?