删除MAC OS中office(word、excel、powerpoint)菜单栏中acrobat加载项

***删除MAC OS中office(word、excel、powerpoint)菜单栏acrobat标签***

1.打开finder

2.菜单栏,按住option,点击前往--->资源库

3.依次找到:

~/资源库/Group Containers/UBF8T346G9.Office/用户内容/启动/Word/linkCreation.dotm

~/资源库/Group Containers/UBF8T346G9.Office/用户内容/启动/excel/SaveAsAdobePDF.xlam

~/资源库/Group Containers/UBF8T346G9.Office/用户内容/启动/PowerPoint/SaveAsAdobePDF.ppam

4.分别删除以上三个文件夹下的文件,重启后对应的acrobat加载项就删除了。

 

  • 14
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
PowerPoint 使用 VSTO 追加鼠标右键菜单,可以按照以下步骤进行: 1. 在 Visual Studio 创建一个新的 VSTO 目。 2. 在解决方案资源管理器,右键单击目并选择“添加”->“新”。 3. 在“添加新”对话框,选择“Office 目”->“PowerPoint ”,并选择“自定义幻灯片”。 4. 在“自定义幻灯片”对话框,选择“幻灯片”并点击“下一步”。 5. 在“选择类型”页面,选择“幻灯片窗体”,并点击“下一步”。 6. 在“命名”页面,为新命名并点击“完成”。 7. 打开该的代码视图,在 ThisAddIn.cs 文件,添加以下代码: ``` private void ThisAddIn_Startup(object sender, System.EventArgs e) { Application.WindowBeforeRightClick += new PowerPoint.EApplication_WindowBeforeRightClickEventHandler(Application_WindowBeforeRightClick); } void Application_WindowBeforeRightClick(PowerPoint.Selection Sel, ref bool Cancel) { if (Sel.Type == PowerPoint.PpSelectionType.ppSelectionShapes) { PowerPoint.ShapeRange shapeRange = Sel.ShapeRange; if (shapeRange.Count == 1) { PowerPoint.CommandBarPopup popup = (PowerPoint.CommandBarPopup)Application.CommandBars["Shape"].Controls.Add(MsoControlType.msoControlPopup, missing, missing, missing, true); popup.Caption = "My Custom Menu"; PowerPoint.CommandBarButton button = (PowerPoint.CommandBarButton)popup.Controls.Add(MsoControlType.msoControlButton, missing, missing, missing, true); button.Caption = "My Custom Command"; button.Click += new _CommandBarButtonEvents_ClickEventHandler(button_Click); } } } void button_Click(CommandBarButton Ctrl, ref bool CancelDefault) { MessageBox.Show("My Custom Command was clicked"); } ``` 上述代码,我们通过 ThisAddIn_Startup 事件处理程序,订阅了 Application.WindowBeforeRightClick 事件。在 Application_WindowBeforeRightClick 事件处理程序,我们检查当前选择是否为形状,并创建一个自定义弹出菜单和一个自定义命令按钮。当用户单击自定义命令按钮时,会触发 button_Click 事件处理程序,弹出一个消息框。 现在,您可以运行该目,打开 PowerPoint 并尝试右键单击一个形状,您将看到自定义的菜单和命令按钮。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值