this is the correct anwser. the StackInfo API opens up browsing XSI's graph in both directions. it's just too bad the dev decided to dump it in XML instead of making it proper API. I could probably be wrapped in a cleaner python API.
On Thursday, December 6, 2012, Xavier Lapointe wrote: > Might seem to be a long shot but: > > > prop = xsi.Selection(0) # Your selected custom property > dataRepo = xsi_utils.DataRepository > stackInfo = dataRepo.GetConnectionStackInfo(prop) > print stackInfo > > # <?xml version="1.0"?> > # <connections> > # <connection> > # <localparameter>Param</localparameter> > # <datacopy>0x0000000010EEA0B0</datacopy> > # <hidden>false</hidden> > # <object>cube.polymsh.bevelop.ratio.Expression</object> > # <objectid>548</objectid> > # <region>8192</region> > # <type>out</type> > # </connection> > # </connections> > > >

