invoking ppa action

J

johnemmatty

Hello Friends,
I need to run a function written inside ppa when a hyperlink is
clicked.Is there any way to do it.

Any help would be appreciated.

Thanx in advance,
J.
 
H

Hans Werner Hofmann

Hello Friends,
I need to run a function written inside ppa when a hyperlink is
clicked.Is there any way to do it.

Hm,
if you VBA the hyperlink to
ActivePresentation.FollowHyperlink Address:="...."
and then
Application.Run "Your_ppa_sub"
 
J

johnemmatty

Thanks for your valuable help. Is there is some way to avoid the
warning message which is throwed up when the addin is loaded.That one
is really annoying.I am using this method because my program needs to
determine the mouse click on a hyperlink(which will open another
presentation.). Since powerpoint is not providing a straightforward
method for it, my plan is to direct every hyperlink to a ppa function
and in that function open the hyperlinked presentation..

Thanx again,
John.
 
H

Hans Werner Hofmann

Thanks for your valuable help. Is there is some way to avoid the
warning message which is throwed up when the addin is loaded.That one
is really annoying.I am using this method because my program needs to

You can selfcert your code...
Google for it?
or trust all installed Add-Ins:
Extras | Makro Security | Trusted Publishers
determine the mouse click on a hyperlink(which will open another
presentation.). Since powerpoint is not providing a straightforward
method for it, my plan is to direct every hyperlink to a ppa function
and in that function open the hyperlinked presentation..

There is no way calling Add-In-code without having wrapper code in
presentation
The only way to call Add-In -Code is to implement an button in
Presentation context menu...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top