I would like my case statement to get the name of an image from the
array and use that to unhide itself. The rest of the script works fine
but the image name is not getting passed to the presence property. Can
anyone help?var a01 = Array("project title" , "projectsubtitle" ,
"nameofImage" , "blurbtext");switch(this.rawValue){ case "0":
projecttTitle.rawValue = a01[0]; projectSubTitle.rawValue = a01[1];
a01[2].presence = "visible"; projectText.rawValue = a01[3]; break;etc.