I know that with trigger on next I can get out of a loop, but that is a timing question, because it happens instantly.
I tested that unchecking the loop box during playback does not affect the loop.
Is there a way to get out of the loop gracefully, so let the loop end and go to the next video?
1 Like
Sure, in AMCP if you do a:
PLAY 1-1 AMB LOOP
You can disable the loop at any time so it will play to end and stop:
CALL 1-1 LOOP 0
You should be able to create a custom command in the official CCG client that will send the LOOP 0
command.
1 Like
I am trying to find the âcallâ in the custom command section, but I donât think CALL is supported by the client.
Find custom command under Tools and when editing it in the right-side panel youâd add CALL 1-10 LOOP 0
under PLAY so that when you play the custom command (F2) it will send the call command.
3 Likes
Thank you. Based on your tips I could make it work with both behaviors. Iâve put the custom command within the group and added the command to the update function.
Ive kept the checkbox on next in the video following the loop and now I can gracefully let the loop play out on update or end it immediately with the next command. This works from the group itself.
If you use play you need to issue the command to the custom command itself, otherwise it goes out of the loop but to the first item in the group.
THIS should be added in the client and should be triggered when unchecking the âloopâ in an element.
2 Likes