The code provided doesn’t seem to do anything. I couldn’t even mess about with it to get it to work. I had to create a completely different script:
Dim choices(7) As Integer
Sub OnSlideShowPageChange(ByVal ssw As SlideShowWindow)
Select Case ssw.View.CurrentShowPosition
Case 1
MsgBox (“Rugby/Hockey: ” & choices(0) & vbCrLf _
& “Basketball/Netball: ” & choices(1) & vbCrLf _
& “Orienteering/Tennis: ” & choices(2) & vbCrLf _
& “Badminton/Table tennis: ” & choices(3) & vbCrLf _
& “Chess/Bridge/Scrabble: ” & choices(4) & vbCrLf _
& “Debating: ” & choices(5) & vbCrLf _
& “Crafts/Hobbies: ” & choices(6) & vbCrLf _
& “Reading: ” & choices(7) & vbCrLf)
Case 8
choices(0) = choices(0) + 1
Case 9
choices(1) = choices(1) + 1
Case 10
choices(2) = choices(2) + 1
Case 11
choices(3) = choices(3) + 1
Case 12
choices(4) = choices(4) + 1
Case 13
choices(5) = choices(5) + 1
Case 14
choices(6) = choices(6) + 1
Case 15
choices(7) = choices(7) + 1
End Select
End Sub