Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-24 Thread kiteh
Noted with thanks! -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsubscr...@googlegroups.com. To view this

Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-23 Thread Justin Israel
On Fri, Aug 24, 2018 at 1:24 PM kiteh wrote: > Got it, thanks! Had thought that there may not be a need to perform > another `setText() > I have got another question.. sorry for the mass spam. > > I tried following what you have mentioned and do the same for my other > widgets - checkbox and

Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-23 Thread kiteh
Got it, thanks! Had thought that there may not be a need to perform another `setText() I have got another question.. sorry for the mass spam. I tried following what you have mentioned and do the same for my other widgets - checkbox and radiobuttons.. eg.

Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-23 Thread Justin Israel
Firstly, make sure you are setting an organization and an application name, so that you don't collide with another Qt application: http://doc.qt.io/archives/qt-4.8/qsettings.html#QSettings The reason you aren't seeing your saved text being loaded to your UI is because you forgot to actually

Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-23 Thread kiteh
Hi Justin, glad to know that using QSettings is the way to go... As I am not getting the expected output, I must have done something wrong.. I was able to save the data, but when it comes to the loading part, no values are loaded despite it being present in the file contents if I am running the

Re: [Maya-Python] Capture inputs from PyQt dialog

2018-08-23 Thread Justin Israel
On Fri, Aug 24, 2018 at 9:06 AM kiteh wrote: > I have created my tool using PyQt. Things are working correctly and I am > encountering 2 issues. > > 1. This is more of an implementation - I am trying to capture the input > state of the widgets that User has made within the tool. Eg. User has >