Audio Device Out - Device Select

I’m working on a project where I need to be able to change the device selected in the audio device out chop. For proof of concept I just copied and pasted the proper name for the devices by going down my device list, copying the name/info, and pasting it into a table, and referencing it from there.
I need to be able to generate a table automatically with the correct names for the devices. If there is another way I can reference those devices without their exact names (perhaps by index somehow?) that would work for me as well. I’ve been scouring around for a solution for a few hours, no luck.
Reason I need to generate the list automatically, is that I will be deploying to many systems, and it’s not feasible to manually enter in the exact name of the audio device into the network for each system.

Any help is much appreciated!

op( 'audiodevout1' ).par.device.menuNames

This will return a list of all the menuNames from the target parameter.
This should help you get a list of what devices are being recognized by Touch.

There’s lots you can do with the par class:
[url]http://www.derivative.ca/wiki088/index.php?title=Par_Class[/url]

Thanks!
Totally forgot out referencing the par class.