Itoo Software Forum

Author Topic: Hiding or changing kitchen handles on multiple RC objects  (Read 519 times)

UB1191

  • Newbie
  • *
  • Posts: 9
Hiding or changing kitchen handles on multiple RC objects
« 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).

Rokas

  • Hero Member
  • *****
  • Posts: 3324
Re: Hiding or changing kitchen handles on multiple RC objects
« Reply #1 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)



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.
Rokas

UB1191

  • Newbie
  • *
  • Posts: 9
Re: Hiding or changing kitchen handles on multiple RC objects
« Reply #2 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.