Itoo Software Forum

RailClone => RailClone Pro (*) => Topic started by: UB1191 on February 11, 2020, 03:27:53 PM

Title: Hiding or changing kitchen handles on multiple RC objects
Post by: UB1191 on February 11, 2020, 03:27:53 PM
Hi guys,
I'm building kitchen cabinets using railclone4, and I need some help. I have 3x different RC fronts, and if I would like to hide handles, I have to do that on every RC object individually... and that's annoying. Is there any way to achieve that with ONE click?
The same workflow I would use to switch different types of handles (INDEX number).
Title: Re: Hiding or changing kitchen handles on multiple RC objects
Post by: Rokas on February 11, 2020, 04:12:59 PM
Hi
For that little maxscript is needed:
Code: [Select]
param=1
for each in selection do for i = 1 to each.paname.count do (if each.paname[i] == "Handles On/Off" then each.paboolval[i] = param)

(https://i.imgur.com/jgqVYZU.gif)

I would expand this to if param is 0 then handles disabled and 1..n Your different handles.

This script is now made for boolean "On/Off" values. So integer parameter would need script modification.

Hope this helps. If You have further questions let us know.
Title: Re: Hiding or changing kitchen handles on multiple RC objects
Post by: UB1191 on February 29, 2020, 10:49:29 PM
Thanks mate, very helpful! I'll try to create small UI containing some options for my RC Kitchen modules.