Powerpoint 超链接区域

发布于 2025-01-06 01:47:26 字数 210 浏览 0 评论 0原文

我想让 Powerpoint 的区域可点击。想象一个国家的地图,您希望用户能够单击其中的每个州。我尝试在每个状态上放置一个可单击的透明图像,但该图像仅在演示文稿未运行时才是透明的。演示一运行,图像就会从透明变为白色,从而覆盖状态。有人知道如何在演示文稿运行时保持图像透明,或者更好的方法吗?

提前致谢。

我应该提到我需要一些代码来触发,所以我必须使用 ActiveX 控件。

I want to make regions of a powerpoint clickable. Think of a map of a country where you want users to be able to click on each state. I've tried placing a clickable transparent image over each state, but the image is only transparent when the presentation is not running. As soon as the presentation runs, the image goes from transparent to white, thus covering the state. Anyone know how to keep the image transparent while the presentation is running, or a better way altogether?

Thanks in advance.

I should have mentioned that I need some code to fire so I had to use an ActiveX control.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

是你 2025-01-13 01:47:26

为每个自选图形分配运行宏操作设置。让它运行如下:

Sub DoSomething(oSh as Shape)
  ' You now have a reference to the clicked shape:
   MsgBox oSh.Name
   ' Now what do you want it to do when clicked?
End Sub

Assign a Run Macro action setting to each autoshape. Have it run something like this:

Sub DoSomething(oSh as Shape)
  ' You now have a reference to the clicked shape:
   MsgBox oSh.Name
   ' Now what do you want it to do when clicked?
End Sub
半边脸i 2025-01-13 01:47:26

过去,使用无填充的自选图形作为线条颜色,在无线条上作为线条颜色对我有用。这是快速教程

Using an AutoShape with No Fill for the color on No Line for the Line Color has worked for me in the past. Here's a quick tutorial.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文