Hello, I'm coming over from TouchOSC. Beginning to learn the very introductory scripting techniques in OSC. I am trying to recreate some of the things I was doing in TouchOSC.
if
(get('ableton_section_a')==get('ableton_section_b')){
set ('sync_status', 'Sessions In Sync!')
}
else{
set ('sync_status', 'Sessions Out Of Sync!')
}
I have 3 text indicators; I want two of them to be compared against one another, populating the text of third depending on the outcome. That part I have succeeded at. However, if the test fails, I want both of the compared indicators to change to a red color. Would I use the updateProp() method here?
Thank you!