Thanks Guys, Steve when you say 'Tag' what exactly does this mean? is this
done through VB?
VB or VBA, yes.
Each Presentation, Slide or Shape has a Tags collection that consists of named
strings.
For example, given a reference to a shape in oShp, you could:
oShp.Tags.Add "TagName", "TagValue"
Then later
Msgbox oShap.Tags("TagName")
How do you know what shape number you are refering to - is there something
you can click on to see the shapes property?
Also if was to purchase your StarterStep Plus will I need to make sure each
person presenting has it installed on their machines?
StarterSet plus has a kind of object inspector that shows you (and lets you
edit) tags, the shape name and in some cases, link paths.
The tags and other properties it sets are part of PowerPoint itself ... once
set, they're part of the presentation, and your code running on any copy of PPT
can access them. No need for StarterSet to be present.
It's just like setting a shape's fill color to Blue. You can do it manually or
with code or an addin can do it, but any copy of PPT will still display the
shape's fill as blue.
Tags are the same; the only difference is that there's no user interface to
them other than ones we write for ourselves.
If all you need to do is set a few tag values, it's simple enough to code; we
can help you with that. Just ask ...