Re: [Maya-Python] pyMel method for listing selected channelbox attributes

2014-06-10 Thread Andres Weber
Also: https://groups.google.com/forum/#!topic/python_inside_maya/ZhEQ76eQ7pc On Monday, June 9, 2014 9:01:24 PM UTC-4, Brian Eyre wrote: > > Thanks Kurian, > > Works a treat :-D > > On Monday, June 9, 2014 5:42:53 PM UTC-7, Kurian wrote: >> >> cmds.channelBox('mainChannelBox', q=True, sma=True) >>

Re: [Maya-Python] pyMel method for listing selected channelbox attributes

2014-06-09 Thread Brian Eyre
Thanks Kurian, Works a treat :-D On Monday, June 9, 2014 5:42:53 PM UTC-7, Kurian wrote: > > cmds.channelBox('mainChannelBox', q=True, sma=True) > > > On Mon, Jun 9, 2014 at 5:39 PM, Brian Eyre > wrote: > >> Hi Folks, >> >> I'm just getting into pyMel at the moment, and am wondering if there's a

Re: [Maya-Python] pyMel method for listing selected channelbox attributes

2014-06-09 Thread Kurian O.S
cmds.channelBox('mainChannelBox', q=True, sma=True) On Mon, Jun 9, 2014 at 5:39 PM, Brian Eyre wrote: > Hi Folks, > > I'm just getting into pyMel at the moment, and am wondering if there's a > more elegant method for obtaining the current selected channelbox > attributes than the following: > >

[Maya-Python] pyMel method for listing selected channelbox attributes

2014-06-09 Thread Brian Eyre
Hi Folks, I'm just getting into pyMel at the moment, and am wondering if there's a more elegant method for obtaining the current selected channelbox attributes than the following: selectedAtts = mel.eval('string $temp2[]= `selectedChannelBoxAttributes`') Just curious, I guess (it does work, a