Search found 3 matches
- 14 Nov 2012 02:45
- Forum: Troubleshooting
- Topic: oscout() is sending corrupted messages
- Replies: 4
- Views: 1552
Re: oscout() is sending corrupted messages
Thanks, Macciza, for investigating this and passing this along. I took the time to break down this UDP packet in more detail. It looks like the string value in this OSC Message is not being truncated properly. The OSC 1.0 specification says that strings have to be null terminated and have additional ...
- 13 Nov 2012 23:44
- Forum: Troubleshooting
- Topic: oscout() is sending corrupted messages
- Replies: 4
- Views: 1552
Re: oscout() is sending corrupted messages
Thanks, Macciza, for trying to help. In my revised version, I can't use menuItemText directly because there's some kind of problem with passing it into oscout(). oscout() will send string literals just fine, but not the results of my getattribute() call, so I had to resort to that horrible if-else ...
- 07 Nov 2012 00:29
- Forum: Troubleshooting
- Topic: oscout() is sending corrupted messages
- Replies: 4
- Views: 1552
oscout() is sending corrupted messages
My goal is to send the text of a Menu object's currently selected item. So, I've created a script object that is a child of my Menu object, with the trigger being On Expression and the expression being "selection". I would like the following script to work: oscout(0, '/SoundMixResource/Faders/0 ...