P
Preschool Mike
This is kind of hard to explain without getting too wordy, but I'll give it a
try. I've created a game - kind of like a maze of hide-n-seek where the
player has to find pictures in a specific order.
First note on the SlideMaster I've created 5 boxes that will hold 5
duplicate copies (with different names) of the pictures that need to be
found. Initially all the pictures are on the SlideMaster in these boxes and
set to visible = False. As they find each picture it appears on the
SlideMaster which can also be seen on all the slides. This is done so the
player knows what they've found.
Playing the game: Initially all the pictures, except the first are set to
visible = False. Once they find the first, clicking on it makes the second
visible (I'm using vba to make them visible because the pictures are on a
different slides) and makes the first visible on the SlideMaster. This
process continues throughout the game (e.g., find the second and it becomes
visible on the SlideMaster and makes the third visible on it's slide and so
on).
My Problem: Example - I find the first picture and click, it appears on the
SlideMaster and then I advance to another slide - now it's gone from the
SlideMaster - however when I advance to yet another slide it reappears. This
is also happening with the pictures the player needs to find during the game,
especially if I don't transverse the maze in the necessary order. I find if
I go through the maze in the correct order to find the pictures everything
works fine except I still encounter the same problem as mentioned with the
pictures on the SlideMaster.
I hope I've explained this clearly. I'm pretty sure my vb is good as it's
not that complicated. Here's a sample:
Sub moneyFarm2Appear()
'Clicking on the wallet runs this procedure. This is the first picture
needed in the game
ActivePresentation.Slides(10).Shapes("moneyFarm2").Visible = True
ActivePresentation.Slides(10).Shapes("moneyFarm").Visible = False
ActivePresentation.SlideMaster.Shapes("walletMaster").Visible = True
End Sub
Sub bananaStore2Appear()
'Clicking on the moneyFarm2 runs this procedure.
ActivePresentation.Slides(12).Shapes("bananaStore2").Visible = True
ActivePresentation.Slides(12).Shapes("bananaStore").Visible = False
ActivePresentation.SlideMaster.Shapes("moneyMaster").Visible = True
End Sub
Sub bucketMountain2Appear()
'Clicking on the bananaStore2 runs this procedure
ActivePresentation.SlideMaster.Shapes("bananaMaster").Visible = True
ActivePresentation.Slides(18).Shapes("bucketMountain").Visible = False
ActivePresentation.Slides(18).Shapes("bucketMountain2").Visible = True
End Sub
Thanks for the help
Mike
try. I've created a game - kind of like a maze of hide-n-seek where the
player has to find pictures in a specific order.
First note on the SlideMaster I've created 5 boxes that will hold 5
duplicate copies (with different names) of the pictures that need to be
found. Initially all the pictures are on the SlideMaster in these boxes and
set to visible = False. As they find each picture it appears on the
SlideMaster which can also be seen on all the slides. This is done so the
player knows what they've found.
Playing the game: Initially all the pictures, except the first are set to
visible = False. Once they find the first, clicking on it makes the second
visible (I'm using vba to make them visible because the pictures are on a
different slides) and makes the first visible on the SlideMaster. This
process continues throughout the game (e.g., find the second and it becomes
visible on the SlideMaster and makes the third visible on it's slide and so
on).
My Problem: Example - I find the first picture and click, it appears on the
SlideMaster and then I advance to another slide - now it's gone from the
SlideMaster - however when I advance to yet another slide it reappears. This
is also happening with the pictures the player needs to find during the game,
especially if I don't transverse the maze in the necessary order. I find if
I go through the maze in the correct order to find the pictures everything
works fine except I still encounter the same problem as mentioned with the
pictures on the SlideMaster.
I hope I've explained this clearly. I'm pretty sure my vb is good as it's
not that complicated. Here's a sample:
Sub moneyFarm2Appear()
'Clicking on the wallet runs this procedure. This is the first picture
needed in the game
ActivePresentation.Slides(10).Shapes("moneyFarm2").Visible = True
ActivePresentation.Slides(10).Shapes("moneyFarm").Visible = False
ActivePresentation.SlideMaster.Shapes("walletMaster").Visible = True
End Sub
Sub bananaStore2Appear()
'Clicking on the moneyFarm2 runs this procedure.
ActivePresentation.Slides(12).Shapes("bananaStore2").Visible = True
ActivePresentation.Slides(12).Shapes("bananaStore").Visible = False
ActivePresentation.SlideMaster.Shapes("moneyMaster").Visible = True
End Sub
Sub bucketMountain2Appear()
'Clicking on the bananaStore2 runs this procedure
ActivePresentation.SlideMaster.Shapes("bananaMaster").Visible = True
ActivePresentation.Slides(18).Shapes("bucketMountain").Visible = False
ActivePresentation.Slides(18).Shapes("bucketMountain2").Visible = True
End Sub
Thanks for the help
Mike