Hello I was trying to get vc to pause for a random interval between 4000 and 9000ms.
So I made a python script that uses random.choice and can choose from 4000 to 9000 in thousand increments, it then assigns the result to var.pauseDelay.
This works fine and var.pauseDelay gets a correct value, if I do "OSD.ShowText {var.pauseDelay}" I'll get 5000 or some other valid #.
Then I did "VC.Pause {var.pauseDelay}" but it doesn't work, vc.pause never fires in the log.
Will it accept a variable or is there a better way to accomplish this task?