This article applies to:
E-Prime 3.0
Symptoms
Setting a SlideChoice sub-object's Visible property through script may not set the individual items visible property.
Detail
For example, a SlideChoice sub-object exists. The visible property is set to 'Yes' by default. During the time the Slide is displayed, the visible property is set to 'No' through script. Users will see the background become invisible, but the 3 individual items will still be present. Just setting the Visible property through the Properties window will work properly by showing or hiding all the SlideChoice items and the background.
However, this issue has been observed whenever the Visible property is manipulated in script. The script below will only hide the SlideChoice's background.
Workaround
Utilize InLine script such as the following in order to set and declare local button variables. Therefore, the individual items of the SlideChoice sub-object can be manipulated to be visible or invisible.
Dim ButtonChoice As SlideChoice
Set ButtonChoice = CSlideChoice(Slide1.ActiveObjects("ButtonCH"))
ButtonChoice .Visible = False
Dim ItemChoice As SlideButton
Dim nCounter As Long
For nCounter = 1 To 4
Set ItemChoice = CSlideButton(Slide1.ActiveObjects("ButtonCHItem" & nCounter))
ItemChoice.Visible = False
Next
See Also:
RELEASE INFO: Known Issues in E-Prime 3.0 Update 2 (3.0.3.80) [27789]
Comments
0 comments
Please sign in to leave a comment.