We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2007-10-26 11:25 PM - last edited on 2023-05-26 11:33 AM by Rubia Torres
2007-10-27 07:11 AM
2007-10-27 07:42 AM
2007-10-29 01:58 AM
2007-10-29 06:27 PM
2007-10-31 03:28 AM
Link wrote:The scripts of the doors/windows could be adjusted so they don't show the wallhole either if detail level is set to "Off".
Unfortunately both of these methods will still show the wallholes. I don't know of any way to eliminate them too.
You may have to use a zone instead? Or just temporarily delete them?
Cheers,
Link.
2007-11-03 04:10 AM
2007-11-03 12:37 PM
2007-11-08 02:39 AM - last edited on 2023-04-26 01:15 AM by Laszlo Nagy
Peter wrote:
Hello Barry,
How do you link to one of the Model View Options so they can be turned on/off on mass ? A new global or request perhaps ?
Thanks,
Peter Devlin
Hello Peter,
It is just a matter of requesting the state of the model view option in the script.
You can use :
REQUEST ("window_show_dim", "", show)
REQUEST ("door_show_dim", "", show)
in version 9 and above and in version 11 you can use :
REQUEST ("floor_plan_option","",storyViewpointType)
For example
n = REQUEST ("floor_plan_option","",storyViewpointType)
if storyViewpointType= 1 then
Wallhole 4,1,
0,0,1,
0.0001,0,1,
0.0001,0.0001,1,
0,0.0001,1
END
endif
I guess you could use other requests as well but these are simple because they return a value of 1 or 0.
Of course you need to be sure that the model veiw option you are using does not affect your plan in ways that you don't like.
i.e don't use the door/window show dimension option if you still want to see the door/window dimensions on plan.
But if you are hiding the doors/windows for the 3D model the dimensions on plan probably don't matter.
Barry.
2007-11-08 04:09 AM