This seems pretty easy with VBA, but I'm not sure how secure it would
be. You might want to include tests at other times in the game to make
sure they didn't find another way to get to slide 2.
If you go to my site:
http://www.PowerfulPowerPoint.com/
and click on "More Tricks," you can look at the first couple of examples
that involve writing information to a text file. Reading and writing the
info to a text file seems like the hardest part. The rest is a simple IF
statement.
--David

Signature
David M. Marcovitz
Microsoft PowerPoint MVP
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
> Has anyone here ever had a program that lets you try the free version
> until you buy the full version? You get a serial code that you have to
[quoted text clipped - 26 lines]
>
> Thanks!
Desmond777 - 25 Mar 2008 22:30 GMT
Thanks a lot David! I'll give it a try.
> This seems pretty easy with VBA, but I'm not sure how secure it would
> be. You might want to include tests at other times in the game to make
[quoted text clipped - 41 lines]
> >
> > Thanks!
Desmond777 - 25 Mar 2008 22:44 GMT
Edit: It worked exactly like I want it now all I need is some code that
checks the txt file for the "Magic Numbers" and determines which slide to go
to.
> Thanks a lot David! I'll give it a try.
>
[quoted text clipped - 43 lines]
> > >
> > > Thanks!
John Wilson - 25 Mar 2008 23:08 GMT
Try this sort of thing (make sure text file has only one line)
Sub checktext()
Dim checkserial As String
Dim sFile As String
Dim Ifilenum As Integer
sFile = "C:/text.txt" ' change this to suit
Ifilenum = FreeFile()
Open sFile For Input As Ifilenum
Line Input #Ifilenum, checkserial
If checkserial = "xxxxx" Then
'do whatever
Else
'do something else
End If
End Sub

Signature
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
> Edit: It worked exactly like I want it now all I need is some code that
> checks the txt file for the "Magic Numbers" and determines which slide to go
[quoted text clipped - 47 lines]
> > > >
> > > > Thanks!
Desmond777 - 25 Mar 2008 23:16 GMT
Perfect! Just what i was looking for. Thanks Guys!
> Try this sort of thing (make sure text file has only one line)
>
[quoted text clipped - 64 lines]
> > > > >
> > > > > Thanks!