Very clear example. My mistake was, instead of querying source.IntegerProperty(source.kMIDIPropertyUniqueID)
which gives the ID as a number, I was querying CFStringMBS(source.kMIDIPropertyUniqueID) which doesn't give the ID number, but instead gives the string "uniqueID" for all endpoints. Obviously, CFStringMBS() returns the name of the property, instead of the value of the property. Oops! Thank you : ) Aaron ===== On Apr 6, 2012, at 6:00 AM, [email protected] wrote: > // query name property > dim s as integer = source.IntegerProperty(source.kMIDIPropertyUniqueID) > MsgBox "UniqueID: "+str(s) _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
