Hi guys!
Is there any way of retrieving our interfaces from Control for iOS?
I had a pretty complex interface but I lost my .js file and wouldn't want to start from scratch...
Thanks!
Ivan
Hi guys!
Is there any way of retrieving our interfaces from Control for iOS?
I had a pretty complex interface but I lost my .js file and wouldn't want to start from scratch...
Thanks!
Ivan
err... hmmm. There's no easy way. You could try running something like this via OSC:
interfaceManager.interfaceFiles.get('yourInterfaceNameGoesHere',
function(r){
oscManager.send('/yourAddressToReceiveJSONat', 's', r.json);
}
}
If you put that inside an osc message to /control/runScript (make sure you have your destination selected first) I think you'll get it back. If it's a large interface you might only get the first part of it though.