D
Dale Fye
I would like to list the properties that apply to shapes of various types.
Specifically, I'm looking for those properties that might contain text.
As an example, the other day, I found out that I could create screen tips
that show up when I mouse over a shape.
Is there a way to do something like
Dim prop as property
'What I would like to do here is be able to select a shape in the active
presentation, then run a macro that uses the selected shape
'I still have not figured out how to do that part, so I generally do
something like the following line and iterate through the shape numbers till
I get the one I'm looking for.
set oShp = activewindow.presentations.slides(x).shapes(y)
oShp.Select
debug.print oShp.Name, oShp.Type
For each prop in oshp.properties
debug.print prop.name, prop.value
next
Specifically, I'm looking for those properties that might contain text.
As an example, the other day, I found out that I could create screen tips
that show up when I mouse over a shape.
Is there a way to do something like
Dim prop as property
'What I would like to do here is be able to select a shape in the active
presentation, then run a macro that uses the selected shape
'I still have not figured out how to do that part, so I generally do
something like the following line and iterate through the shape numbers till
I get the one I'm looking for.
set oShp = activewindow.presentations.slides(x).shapes(y)
oShp.Select
debug.print oShp.Name, oShp.Type
For each prop in oshp.properties
debug.print prop.name, prop.value
next