【Microsoft PowerPoint for Mac】2分钟配置-MAC一键删除PPT中的所有备注

MAC一键删除PPT中的所有备注

  • 1.搜索自动操作
  • 2.点击快速操作
  • 3.搜索并运行`AppleScript`
  • [4.输入代码,并选择只应用于Microsoft PowerPoint for Mac【右上角】](#4.输入代码,并选择只应用于Microsoft PowerPoint for Mac【右上角】)
  • [5. CRTL+S保存为"清除当前文稿中的所有备注",PPT中应用。](#5. CRTL+S保存为“清除当前文稿中的所有备注”,PPT中应用。)

MAC没自带,需要自己配置

1.搜索自动操作

2.点击快速操作

第一遍可能打不开,可以尝试两次

3.搜索并运行AppleScript

4.输入代码,并选择只应用于Microsoft PowerPoint for Mac【右上角】

支持command+Z撤销删除

复制代码
on run {input, parameters}
	tell application "Microsoft PowerPoint" -- version: 2019
		set allSlides to slides of active presentation
		set counter to 0
		repeat with each_slide in allSlides
			try
				set content of text range of text frame of place holder 2 of notes page of each_slide to ""
			on error
				set counter to counter + 1
			end try
		end repeat
		if counter > 0 then display dialog "共跳过" & counter & "个无法解析的ppt页" buttons {"OK"} default button 1 with title "清除当前演示文稿中的所有备注" with icon note
	end tell
	return input
end run

5. CRTL+S保存为"清除当前文稿中的所有备注",PPT中应用。

参考:

https://www.machunjie.com/macos/1315.html【代码运行完闪退】

https://www.zhihu.com/question/35590265/answer/1193997870【完美解决问题】

相关推荐
chaofan98018 小时前
2026 轻量模型三国杀:Flash-Lite vs GPT-4.1 Nano vs Haiku,技术选型到底该站谁?
前端·人工智能·microsoft
掘根1 天前
【即时通讯项目】环境搭建9——语言平台
ide·macos·xcode
楚歌歌1 天前
用自己的声音实现PPT转视频加AI配音,小米坡PPT转视频工具v2.25操作教程
powerpoint
帅得不敢出门1 天前
MacOS安装VSCode在QEMU上模拟跑FreeRtos
ide·vscode·macos·freertos·rtos
Sahadev_1 天前
macOS 解决 AirDrop 传输应用“已损坏“问题,以sublime为例
macos·策略模式·sublime text
pop_xiaoli1 天前
【iOS】alloc & init & new源码阅读
macos·ios·objective-c·cocoa·xcode
Azure DevOps1 天前
Azure DevOps Server:2026年3月份补丁
运维·microsoft·azure·devops
Elastic 中国社区官方博客1 天前
使用 Azure SRE Agent 和 Elasticsearch 提升 SRE 生产力
大数据·人工智能·elasticsearch·microsoft·搜索引擎·云原生·azure
秦ぅ时2 天前
Grok-3-Fast-Beta 完整解析:xAI 低延迟大模型 + 可直接运行调用代码
人工智能·gpt·microsoft
MonkeyKing_sunyuhua2 天前
Mac 上用 MTR 做链路测试很适合排查“ping 不通 / 偶发丢包 / 某一跳延迟高”的问题
macos