Hi all,
I'm currently working on a Custom Panel to control or AJA Ki Pro decks, and have sending commands working, but would like to be able to get staus back from the deck.
Everything on the Ki Pro works as a HTTP Post, so if I use this command:
ogscript.asyncPost('http://(KI PRO IP HERE)/config?action=set¶mid=eParamID_TransportCommand&value=3&configid=0',null,null);
it will start recording.
What I need to do is get the status back from the Ki Pro, so if I send this post using my browser:
http://(KI PRO IP HERE)/config?action=get¶mid=eParamID_TransportState
The Ki Pro will respond with:
{"paramid":"2097217802","name":"eParamID_TransportState","value":"1","value_name":"Idle"} The problem is, I am having trouble getting that string back from the asyncPost command. It always returns 'undefined'. Any ideas?