I have a script that creates an object and defines a few custom parameters.
If I navigate through explorer, find the custom parameter node and hit "enter", it opens a window that lets me edit the parameters.
Is there a scripting command which allows me to open this window?
It's not important, but only a convenience. Whenever anyone runs this script the next thing they'll do is navigate to the custom parameters and start tinkering with them.
Thanks in advance!
edit: I prefer python, but anything will do.
Opening an "edit properties" window from scripting
-
TwirlySocrates
- Posts: 9
- Joined: 15 Jan 2014, 01:47
-
myara
- Posts: 406
- Joined: 28 Sep 2011, 08:33
Re: Opening an "edit properties" window from scripting
Not in front of my PC but I think inspectobj(your_customprop) should do it
M.Yara
Character Modeler | Softimage Generalist (sort of)
Character Modeler | Softimage Generalist (sort of)
-
TwirlySocrates
- Posts: 9
- Joined: 15 Jan 2014, 01:47
Re: Opening an "edit properties" window from scripting
Yes! Application.inspectobj("datapath") did it! Thanks!
-
EricTRocks
- Moderator
- Posts: 754
- Joined: 25 Nov 2009, 00:41
Re: Opening an "edit properties" window from scripting
Minor note here, ensure you use the correct capitalization for command names as sometimes Python gets picky about it.
Application.InspectObj()
Application.InspectObj()