Without seeing the code, it is hard to tell if it is rubbish. Even seeing
it, without the overview of what was the desired outcome, it is a tad hard
to debug.
I would suggest adding this line of code beneath the Sub xXxXx line (where
xXxXx is the name of the subroutine - in other words, just at the beginning
of each sub-routine)
MsgBox "This sub routine was activated"
and perhaps a note or reference to tell you which sub routine was activated.
If these "You are here" messages do not show up, than the VBA is disabled in
some way, if they do, than the code is working but ineffective.

Signature
Bill Dilworth
A proud member of the Microsoft PPT MVP Team
Users helping fellow users.
http://billdilworth.mvps.org
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
vestprog2@ Please read the PowerPoint FAQ pages.
yahoo. They answer most of our questions.
com www.pptfaq.com
.
> I've been given a little bit of proof reading/editting work to do of some
> teaching aids that have been written in Powerpoint. They're a few years
[quoted text clipped - 26 lines]
>
> Thanks in advance :)
David M. Marcovitz - 17 Dec 2007 15:13 GMT
What Bill said and ...
It is unlikely that the version makes a difference. Most of what works in
older versions continues to work in newer versions. Here are some things
that cause macros to have problems:
(1) Running a presentation in the Viewer or directly from a Web site (it
doesn't sound like this is your problem).
(2) Macro security level not set properly. You mentioned that security
was set to medium. Did you open the file and then set it to medium? The
security setting is checked when the file is opened so changing it after
it is opened will only affect the next time you open the file. Also, if
it is set to medium, then it should have asked you if you want to enable
macros, and you should have said yes. Did it ask?
(3) Running a zipped PowerPoint without expanding first. Macros have
trouble if the PowerPoint file has been zipped. In 2002, you can simply
drag it out of the zipped folder to expand it, and then run it from the
new location.
(4) Weird file names. My super-secret reason for macros not running is if
the file name contains ! (i.e., an exclamation point). If the files are
strangely named (exclamation point is the character I know about, but
there might be others), rename it to something with just letters and
numbers ending in .ppt.
--David

Signature
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
> Without seeing the code, it is hard to tell if it is rubbish. Even
> seeing it, without the overview of what was the desired outcome, it is
[quoted text clipped - 10 lines]
> disabled in some way, if they do, than the code is working but
> ineffective.