Hello,
I have a group of text lines that I'd like to control various properties of - such as visibility or position. I'm trying to use a for loop, but I'm missing something in the syntax. Let's say I have 5 lines, named line1, line2, etc. Can I then use a for loop to set the visiblility of all lines to false?
I was trying to use something like this:
if text = "3" then
for i=1 to 5
line" & i & ".visible" = false
next
end if
Xpression doesn't like that, throwing a syntax error. Anybody have a suggestion?
Thanks!
Brian