E
Edward Jones (Eddie)
I have the following code :
Sub BottomTabs_onScriptletEvent(ByRef pstrEventName, ByRef pstrEventData)
Select Case pstrEventName
Case "onClick()"
MsgBox (pstrEventData)
pstrEventData.style.zIndex="5"
Case Else
End Select
End Sub
The message box print the text i want. I have layers setup with ID
corresponding with the pstrEventData strings. I want to change the z-index of
the layer (<div>) with id=pstrEventData.
In other word how do you use the object hierarchy on a variable whose value
is in the hierarchy? Please feel free to email me for more information ejones
(at) roanoke (dot) edu. Thank you.
pstrEventData.style.zIndex="5"
Sub BottomTabs_onScriptletEvent(ByRef pstrEventName, ByRef pstrEventData)
Select Case pstrEventName
Case "onClick()"
MsgBox (pstrEventData)
pstrEventData.style.zIndex="5"
Case Else
End Select
End Sub
The message box print the text i want. I have layers setup with ID
corresponding with the pstrEventData strings. I want to change the z-index of
the layer (<div>) with id=pstrEventData.
In other word how do you use the object hierarchy on a variable whose value
is in the hierarchy? Please feel free to email me for more information ejones
(at) roanoke (dot) edu. Thank you.
pstrEventData.style.zIndex="5"