Dee Posted February 3, 2011 Share Posted February 3, 2011 Hi I'm having problems with Houdini's tool building settings and have actually been wondering this for a long time...can anyone help? I have 3 options in my new tool I'm building which has lots of options. I want one option to be disabled unless 2 other options are BOTH turned on. right now, I do this: option 3's Disable when script is currently: { option1 != 1 } I tried this: { option1 != 1, option2 != 1 } but that basically does an "or" where either way satisfies the dependency. option1 is a list with 11 options, but I want this enabled only when it is set to 1. I also tried: { option1 != 1 } { option2 != 1 } and: { option1 != 1 && option2 != 1 } None of them work. Can anyone tell me what the right way to do this is? Thank you! Quote Link to comment Share on other sites More sharing options...
anim Posted February 3, 2011 Share Posted February 3, 2011 there is all info in help http://www.sidefx.com/docs/houdini11.0/ref/windows/optype#parms_tab you should try for AND operation: { option1 != 1 option2 != 1 } for OR operation: { option1 != 1 } { option2 != 1 } combination: { option1 != 1 option2 != 1 } { optionX > 0 } and so on 1 Quote Link to comment Share on other sites More sharing options...
Dee Posted February 3, 2011 Author Share Posted February 3, 2011 there is all info in help http://www.sidefx.com/docs/houdini11.0/ref/windows/optype#parms_tab you should try for AND operation: { option1 != 1 option2 != 1 } for OR operation: { option1 != 1 } { option2 != 1 } combination: { option1 != 1 option2 != 1 } { optionX > 0 } and so on Awesome! Thank you! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.