Re: Save Softimage Petition

2014-03-05 Thread Ana Gomez
done On Wed, Mar 5, 2014 at 4:20 PM, Edy Susanto Lim wrote: > done > > > On Wed, Mar 5, 2014 at 10:16 AM, Martin Yara wrote: > >> It's been tweeted and RT already. >> >> Martin >> >> >> >> On Thu, Mar 6, 2014 at 12:10 AM, javier gonzalez > > wrote: >> >>> Can anyone pass the info to japan fello

Re: Some more questions about PyQt in Softimage

2012-09-07 Thread Ana Gomez
Right!! And you can also get the path directly: Application.Plugins( 'MultiImporter_Qt' ).OriginPath On Fri, Sep 7, 2012 at 11:36 AM, piotrek marczak wrote: > SignatureThanks Tim, good learning resource > btw > > srcDir = '' > for plugin in Application.Plugins: # Isn't there an easier way to

Re: XSIBase safe?

2012-09-05 Thread Ana Gomez
What a pity!! On Wed, Sep 5, 2012 at 11:59 AM, Cristobal Infante wrote: > xsibase it's Not safe bruv, it's the ghetto now innit.. > > > > > On 5 September 2012 04:09, Raffaele Fragapane > wrote: > >> If you use windows, you should use this: >> http://www.sandboxie.com/ >> In principle. >> >> Ye

Re: Some more questions about PyQt in Softimage (addon v1.14: fixes button size and adds command to Soft menu)

2012-08-28 Thread Ana Gomez
Life with stylesheet becomes easier when you find this: http://qt-project.org/doc/qt-4.8/stylesheet-reference.html http://qt-project.org/doc/qt-4.8/stylesheet-examples.html

Re: Some more questions about PyQt in Softimage (addon v1.12)

2012-08-28 Thread Ana Gomez
Hello!! For the size of your button I think you could try with box.setStyleSheet('QPushButton{padding: 100px;}') or box.setStyleSheet('QPushButton{height: 100px; width: 100px}') I don't know if you can manage it without playing with the style sheets. Bye

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
great news!! How are you measuring the memory? I'd like to do it too. I'll keep you informed on my progresses with the file browser.

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
class MuiltImporterDialog( QDialog ): def __init__( self, uifilepath, parent ): QDialog.__init__(self, parent) QApplication.setStyle(QtGui.QStyleFactory.create('Plastique')) self.ui = uic.loadUi( uifilepath, self) *self.setAttribute(QtCore.Qt.WA_DeleteOnClose)*

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
Tim! I think I know what it is happening. You are right, your window is not being destroy when you close the window. Write this on the init of your window: 'self.setAttribute(QtCore.Qt.WA_DeleteOnClose)'. Check the memory again and open several times the window, close it and open it.

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
How are you cheecking the memory? To prevent opening the window twice I use this: ... for o_children in sianchor.children(): if isinstance(o_children, ): return ... One more thing. For the point... 1) *HTML Links*. Change the direction of the slashes in the url. If it doesn't work

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
Congratulations for your window! I'm going to try to answer some points, for the rest I would need more time to look them: 2) *Proper Tool Termination* Try one thing and tell me if you are still loosing memory. Make these changes: def MultiImporter_Qt_Execute(): ... sianchor = sip.wrapi

Re: undo event??!!

2012-08-22 Thread Ana Gomez
:D On Wed, Aug 22, 2012 at 7:49 PM, Steven Caron wrote: > great! thanks for the contribution back.. i actually need to commit some > changes i made to the events files. lets hope there isn't too much merging > issues. > > > On Wed, Aug 22, 2012 at 10:04 AM, Ana Gomez wrot

Re: undo event??!!

2012-08-22 Thread Ana Gomez
After all, I've created the signals for undo and redo in my PyQtForSoftimage branch. https://github.com/anuska/PyQtForSoftimage

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Ok. I was selecting in the explorer. If I select in the viewport the command written in the 'Selection Change' is executed. Anyway, I think there is a bug when you register the event siOnSelectionChange. I think It should be fired when a selection is undone. If someone wants to reproduce... 1. R

Re: undo event??!!

2012-08-21 Thread Ana Gomez
I'm using 2012

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Perhaps I'm not using it right: First test: Application.LogMessage("foo") Second test: Application.MyCommand() (a custom command that prints something)

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Writing a command on "Selection Change" in the preferences doesn't work. It is never called, nor when you select something nor when you undo a selection. I have to see if i can report bugs. Thanks.

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Hi, thank you for the information! After reading it i've been thinking about what I really want to know after an undo. I've realized that I just need to know if the selection has been changed or if the name of one of the objects has been changed. So I have registered the events siOnSelectionChange

Re: undo event??!!

2012-08-20 Thread Ana Gomez
Yes, you both are right. I think I got a shock when I've found out that this event doesn't exist. And I've entered in an infinite loop of how this is possible XD

Re: undo event??!!

2012-08-20 Thread Ana Gomez
2012 at 5:23 PM, Ciaran Moloney wrote: > perhaps a command event? > > > On Mon, Aug 20, 2012 at 3:57 PM, Ana Gomez wrote: > >> Hi, >> >> Today I've realized that there is no event for undo :( >> I'm writting an interface with pyqt and I need to r

undo event??!!

2012-08-20 Thread Ana Gomez
Hi, Today I've realized that there is no event for undo :( I'm writting an interface with pyqt and I need to refresh it when the user undo something in the scene. Any ideas?? Thanks, Ana

Re: PyQtForSoftimage vs Blur-dev

2012-05-09 Thread Ana Gomez
Hello, Steve, here you have the fork https://github.com/anuska/PyQtForSoftimageand I have also sent you a pull request. Jo, I think you are going to be disappointed :( I like what you suggest a lot but I fear that I have started with something easier. Probably most people will have already done a

Re: PyQtForSoftimage vs Blur-dev

2012-05-08 Thread Ana Gomez
Hello again! My concern was if some features have been lost in the process of exposing the pyqt implementation from the Blur tools. Or if someone has had problems by using this plugin. You told me that people is using it, more or less, without problem so I'm going to keep testing it. I don't real

PyQtForSoftimage vs Blur-dev

2012-05-07 Thread Ana Gomez
Hello everybody! I'm trying PyQtForSoftimage and I'm wondering some questions. As far as I know, this plugin is based on Blur tools. So, which are the differences between them? Do they have the same features? (of course, from the point of view of PyQt) Thanks in advance and thanks to Steven Caron