Re: OT: Setting up Proxy Params in Maya?

2014-01-17 Thread Tony Barbieri
I believe the only way to achieve something like this is to use callbacks...it's kind of a flaky solution though. There might be another way but I can't think of one. On Fri, Jan 17, 2014 at 11:02 AM, Eric Thivierge ethivie...@hybride.comwrote: Hey all, Sorry for the Maya question but it's

Re: OT | Softimage Shotgun Interaction Crash

2014-01-15 Thread Tony Barbieri
and that way it works perfectly, it's for python 2.7.3 On Wed, Jan 15, 2014 at 5:24 AM, Tony Barbieri great...@gmail.com wrote: Hey Mitchell, I had some issues with Softimage 2014 and the included PySide build. It may be something similar with Softimage 2012. We had our own build of PySide

Re: OT | Softimage Shotgun Interaction Crash

2014-01-15 Thread Tony Barbieri
, 2014 at 10:15 AM, Tony Barbieri great...@gmail.comwrote: You could try using one of these downloads (which I ended up doing for python 2.7 and Softimage 2014 just so I could get something to test where our crashes were coming from): http://download.qt-project.org/official_releases/pyside

Re: OT | Softimage Shotgun Interaction Crash

2014-01-15 Thread Tony Barbieri
the situation. If all else fails, I suppose I'll make a build from scratch and try that. Thanks! Mitch On Wed, Jan 15, 2014 at 11:23 AM, Tony Barbieri great...@gmail.comwrote: I did a hack quickly to test by replacing the ones in the Engine. If PySide is found in your environment then Toolkit

Re: OT | Softimage Shotgun Interaction Crash

2014-01-15 Thread Tony Barbieri
then print the path from the modules that imported. On Wed, Jan 15, 2014 at 1:43 PM, Tony Barbieri great...@gmail.com wrote: Are you sure 2012 uses 2.7? I believe the python that ships with 2012 is python 2.6I could be wrong about that. On Wed, Jan 15, 2014 at 1:39 PM, Mitchell Lotierzo

Dispatch Problems?

2014-01-14 Thread Tony Barbieri
Hello! Sorry for such a newbish question but I'm having a hard time isolating a problem in some code. Sometimes this works, sometimes it doesn't and I can't find out how to fix it. Basically I have some code running in a python module that is outside of a typical Softimage Plugin. I've tried

Re: Dispatch Problems?

2014-01-14 Thread Tony Barbieri
This is in Softimage 2013 SP1 btw. On Tue, Jan 14, 2014 at 12:17 PM, Tony Barbieri great...@gmail.com wrote: Hello! Sorry for such a newbish question but I'm having a hard time isolating a problem in some code. Sometimes this works, sometimes it doesn't and I can't find out how to fix

Re: OT | Softimage Shotgun Interaction Crash

2014-01-14 Thread Tony Barbieri
Hey Mitchell, I had some issues with Softimage 2014 and the included PySide build. It may be something similar with Softimage 2012. We had our own build of PySide for python 2.6 so I can't say for sure if that's the issue. The version that has been most stable for us is PySide with Qt 4.7.4.

Query Timeline Selected Region

2013-12-11 Thread Tony Barbieri
Hello! Does anyone know if it's possible and if so how to query the start and end frame of a selected region in the timeline? Thanks! -- -tony

Re: Query Timeline Selected Region

2013-12-11 Thread Tony Barbieri
Damn. Thanks Eric and hope all is well! -tony On Wed, Dec 11, 2013 at 3:12 PM, Eric Thivierge ethivie...@hybride.comwrote: It's not possible and I've requested it many times before... On Wednesday, December 11, 2013 3:05:19 PM, Tony Barbieri wrote: Hello! Does anyone know if it's

Re: Query Timeline Selected Region

2013-12-11 Thread Tony Barbieri
listening, we need to be able to query this! Eric T. On Wednesday, December 11, 2013 3:18:48 PM, Tony Barbieri wrote: Damn. Thanks Eric and hope all is well! -tony On Wed, Dec 11, 2013 at 3:12 PM, Eric Thivierge ethivie...@hybride.com mailto:ethivie...@hybride.com wrote: It's

Re: Programmatically Close a Torn off Menu

2013-07-09 Thread Tony Barbieri
will not be the same name as the original Menu name. -tony On Mon, Jul 8, 2013 at 5:29 PM, Tony Barbieri great...@gmail.com wrote: Thanks Luc-Eric. I am able to find the torn off menu but I'm trying to find the right one. Using this: xsi = Application ad = xsi.Desktop.ActiveLayout for N

Programmatically Close a Torn off Menu

2013-07-08 Thread Tony Barbieri
Hello! I am working on a project that is dynamically rebuilding menus with different entries. The menu building is all functioning correctly...unless a torn off menu exists. The non-torn off menu is updated correctly, but the torn off menu becomes orphaned because the old callbacks no longer

Re: Programmatically Close a Torn off Menu

2013-07-08 Thread Tony Barbieri
, or at least it didn't in the versions we were using. -B Sent from my iPhone On Jul 8, 2013, at 3:08 PM, Tony Barbieri great...@gmail.com wrote: Hello! I am working on a project that is dynamically rebuilding menus with different entries. The menu building is all functioning

Re: Programmatically Close a Torn off Menu

2013-07-08 Thread Tony Barbieri
Is it possible to disallow tearing off a menu? Because of the frequency of menu updates, there could be a lot of orphaned torn off menus about... On Mon, Jul 8, 2013 at 4:40 PM, Tony Barbieri great...@gmail.com wrote: Thanks for the reply, Brad!! Wasn't sure if you had messed

Re: Programmatically Close a Torn off Menu

2013-07-08 Thread Tony Barbieri
8, 2013 at 4:40 PM, Tony Barbieri great...@gmail.com wrote: Thanks for the reply, Brad!! Wasn't sure if you had messed with that...bummer... -tony On Mon, Jul 8, 2013 at 4:37 PM, Bradley Gabe witha...@gmail.com wrote: Hi Tony- I remember looking into that issue and coming up

Re: Programmatically Close a Torn off Menu

2013-07-08 Thread Tony Barbieri
of my menu. If someone tears off a sub-menu for instance, the name will not be the same name as the original Menu name. -tony On Mon, Jul 8, 2013 at 5:29 PM, Tony Barbieri great...@gmail.com wrote: Thanks Luc-Eric. I am able to find the torn off menu but I'm trying to find the right one

Re: PyQt FindChild() question

2013-07-08 Thread Tony Barbieri
Try wrapping sel.text() in str first? myCam = si.ActiveSceneRoot.FindChild(str(sel.text())). Might be returning unicode? -tony On Mon, Jul 8, 2013 at 6:04 PM, Gene Crucean emailgeneonthel...@gmail.comwrote: Hey guys, I'm kinda sorta new to PyQt and an trying to figure out why this is

Re: PyQt FindChild() question

2013-07-08 Thread Tony Barbieri
PySide is supposed to output string and do away with all the QString stuff, but Gene is using PyQt which I believe still uses QString. On Mon, Jul 8, 2013 at 6:22 PM, Eric Thivierge ethivie...@hybride.comwrote: Doens't Pyside already output str by default? Eric Thivierge ===

Re: PyQtForSoftimage with PySide support

2013-05-14 Thread Tony Barbieri
? Jeremie On 9 May 2013 17:04, Steven Caron car...@gmail.com wrote: Hey Gang Tony Barbieri and I have been working on official support for PySide with the PyQtForSoftimage plugin and I need some testers... Who here wants to use PySide instead of PyQt4? It is a little rough right now so, only

Re: PyQtForSoftimage with PySide support

2013-05-09 Thread Tony Barbieri
: Hey Gang Tony Barbieri and I have been working on official support for PySide with the PyQtForSoftimage plugin and I need some testers... Who here wants to use PySide instead of PyQt4? It is a little rough right now so, only people that really want to use PySide should contact me. Thanks

Re: PyQtForSoftimage with PySide support

2013-05-09 Thread Tony Barbieri
/Differences_Between_PySide_and_PyQt On Fri, May 10, 2013 at 10:25 AM, Jeremie Passerin gerem@gmail.comwrote: Can I ask what's the main differences between PySide and PyQt4 ? Is that just licensing ? Jeremie On 9 May 2013 17:04, Steven Caron car...@gmail.com wrote: Hey Gang Tony Barbieri

Re: TANK + Softimage

2013-01-17 Thread Tony Barbieri
We have been able to get it to work. We pushed back to them the beginnings of a Softimage engine. It's basically at the same level as the Maya or Nuke engine. If you email them they should be able to provide you a location to download it. -tony On Thu, Jan 17, 2013 at 9:46 AM, ste dalton

Re: TANK + Softimage

2013-01-17 Thread Tony Barbieri
We being Psyop. I forget that I use my personal email for this list. -tony On Thu, Jan 17, 2013 at 10:13 AM, Tony Barbieri great...@gmail.com wrote: We have been able to get it to work. We pushed back to them the beginnings of a Softimage engine. It's basically at the same level

Re: TANK + Softimage

2013-01-17 Thread Tony Barbieri
) On 17 January 2013 15:14, Tony Barbieri great...@gmail.com wrote: We being Psyop. I forget that I use my personal email for this list. -tony On Thu, Jan 17, 2013 at 10:13 AM, Tony Barbieri great...@gmail.comwrote: We have been able to get it to work. We pushed back to them

Re: Qt Wrapper command log issue

2012-10-24 Thread Tony Barbieri
of the github page, i can run it on at least two machines. steven On Tue, Oct 23, 2012 at 7:11 AM, Tony Barbieri great...@gmail.com wrote: Hello Everyone...Again :). Have any of you experienced hard crashes to desktop when working with Qt in Soft? We were doing some layout creation inside

Re: Qt Wrapper command log issue

2012-10-24 Thread Tony Barbieri
Here is an example file. We raise AttributeError after we have added the layout by passing the result of the _get_output_layout method result directly into addLayout (#34). -tony On Wed, Oct 24, 2012 at 5:16 PM, Steven Caron car...@gmail.com wrote: hmm i thought pyqt addressed this, guess i

Re: Qt Wrapper command log issue

2012-10-24 Thread Tony Barbieri
it tonight after i swap the pyside imports for pyqt ones. On Wed, Oct 24, 2012 at 2:34 PM, Tony Barbieri great...@gmail.comwrote: Here is an example file. We raise AttributeError after we have added the layout by passing the result of the _get_output_layout method result directly into addLayout

Re: Qt Wrapper command log issue

2012-10-24 Thread Tony Barbieri
. Eric Thivierge http://www.ethivierge.com On Thu, Oct 25, 2012 at 9:14 AM, Tony Barbieri great...@gmail.com wrote: Hey Eric, Thanks for the response. We are actually using PySide so I'm more curious if the current issue we are having is the same in PyQt. I can't say

Re: Qt Wrapper command log issue

2012-10-24 Thread Tony Barbieri
I don't believe it is a related issue. PySide only uses API 2 and has no API 1 functionality. QString, QStringLists and QVariants aren't even available in PySide. Thanks for the tips though! -tony On Wed, Oct 24, 2012 at 9:13 PM, Steven Caron car...@gmail.com wrote: i think this is a good

Qt Wrapper command log issue

2012-10-16 Thread Tony Barbieri
Hey Steven, I just joined the list this morning so I could join in the conversation. Do you happen to know if Jo found that in the actual Qt source code or in PySide? I compiled both debug and release but compiled PySide against the release .dlls. Thanks! -tony so, you guys are compiling it

Re: Qt Wrapper command log issue

2012-10-16 Thread Tony Barbieri
and the binding generator, this doesn't change anything on its usage with the plugin nor with the way I used to integrate qt into proprietary softwares ... -- jo 2012/10/16 Tony Barbieri great...@gmail.com Hey Steven, I just joined the list this morning so I could join in the conversation. Do you

Re: Qt Wrapper command log issue

2012-10-16 Thread Tony Barbieri
the need to port this to cpp. s On Tue, Oct 16, 2012 at 10:54 AM, Tony Barbieri great...@gmail.comwrote: Hey Jo, Thanks for the welcome and reply! I totally understand. I'm not sure where the debug info is coming from, but I did manage to *solve* it by changing one line in your demo code

Re: Qt Wrapper command log issue

2012-10-16 Thread Tony Barbieri
for users to load into their gui, i wouldn't want to hardcode it because some people might want their application to display consistently across standalone, maya, and softimage. s On Tue, Oct 16, 2012 at 11:48 AM, Tony Barbieri great...@gmail.comwrote: Cool, I'll just remove it. On another