We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2008-03-10 08:04 AM
2008-03-10 09:16 AM
mackyboy wrote:close . . .
any suggestion?
!! if these are the parameters you want to hide... myParameter1 = 1 myParameter2 = 2 myParameter3 = 3 !! ...this is the code if marker = "Section" then hideparameter myParameter1, myParameter2, myParameter3 endif !! you don't need a "showparameter" control because !! it will always be visible unless you hide it. !! i.e. if 'marker' is NOT "Section" it will be visible. !! you may also want to lock them at the same time... if marker = "Section" then hideparameter myParameter1, myParameter2, myParameter3 lock myParameter1, myParameter2, myParameter3 endif !! ...or you can simply lock them without the hiding so that !! the user knows that they exist. may be an option?be sure to put this kind of code in the
2008-03-10 08:44 PM
2008-03-11 04:06 AM