I was just wondering what the comand is to hide a matrix. I realize that the hide comand is only available in later versions of X but that isn’t a problem. I know that the “hide” and “show” comands are only available for the window object. Basically what I want to do is have a N/A check box that if checked will hide the lower radio buttons, and if unchecked will have them appear again. I know how to script everything but the hide/show (if it is even possible). Any help here would be much appriciated!
on clicked theObject
tell window "main"
if state of button "na" is 1 then
hide the matrix "remix" of the box "remixBox"
else
show the matrix "remix" of box "remixBox"
end if
end tell
end clicked