Hello Mic
Here’s the result of my poor trials
Using a web socket I intercepted the command to load snippets on the Soundcraft UI24R. If I send a message through a web socket to the mixer it is recognized and the changing takes place.
This is the command sent exactly to the mixer with the syntax used to change the snippets
3:::LOADSNAPSHOT^<showname>^<snapshotname>
This said I got back to Qlab and followed your hint by using a network cue and placing the string here below using both UDP or OSC but it didn’t work.
set theServer to "10.10.1.1”
set theUsername to "admin"
set thePassword to “”
set theCommand to 3:::LOADSNAPSHOT^MYSHOW^ACT1
set theProtocol to "http" -- vs https
set theUserPass to theUsername & ":" & thePassword
set theURL to theProtocol & "://" & theUserPass & "@" & theServer & theCommand
set theFinalURL to "\"" & theURL & "\""
try with timeout of 1 second
do shell script "/usr/bin/curl" & " " & "--connect-timeout" & " " & "1" & " " & theFinalURL
end timeout
end try
The string was copied in the text field of the network cue exactly as you see it and mac was linked to the mixer via USB at the DAW port. The IP address of the mixer is - as you saw 10.10.1.1 - while I could not intercept the port.
Surely I’m missing something since I’m a newbie, and I would greatly appreciate your help.
Luca