LX Console - Dimmer Feedback in Lemur
Posted: Mon May 11, 2015 3:20 pm
Loving Lemur.
I want to display the current dimmer in a text field in Lemur.
I can send a OSC message from QLab like this:
/CurrentDimmer @content "22"
This successfully changes a Text object called CurrentDimmer to 22.
I can't figure how to make 22 be a variable and pass it on.
I wrote this applescript but it has 2 problems. The \ is still present and the shell script never goes out.
tell application "LXConsole"
copy the dimmerCheckDimmer of the front document to dc
end tell
set oscCmd to "/CurrentDimmer @content " & "\"" & dc & "\""
do shell script "echo " & oscCmd & " | nc -u -w 0 10.0.1.14 8000"
return oscCmd
Any ideas?
I want to display the current dimmer in a text field in Lemur.
I can send a OSC message from QLab like this:
/CurrentDimmer @content "22"
This successfully changes a Text object called CurrentDimmer to 22.
I can't figure how to make 22 be a variable and pass it on.
I wrote this applescript but it has 2 problems. The \ is still present and the shell script never goes out.
tell application "LXConsole"
copy the dimmerCheckDimmer of the front document to dc
end tell
set oscCmd to "/CurrentDimmer @content " & "\"" & dc & "\""
do shell script "echo " & oscCmd & " | nc -u -w 0 10.0.1.14 8000"
return oscCmd
Any ideas?