【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【完美解决问题】

相关推荐
johnny23336 分钟前
PPT制作工具:open-slide、SlideAgent、LivePPT、Claude、SpeedAI、sandun
powerpoint
科技侃谈2 小时前
Windows和Mac日常使用推荐?联想小新 Air 15 给出大屏新答案
macos
PersistJiao3 小时前
针对 Intel Mac 的硬件限制提升faster-whisper字幕识别的方法
macos·whisper
想你依然心痛3 小时前
具身智能全景图:从符号主义到世界模型
microsoft·机器人·具身智能
艾莉丝努力练剑3 小时前
【QT】窗口
运维·网络·数据库·qt·计算机网络·microsoft
起个破名想半天了4 小时前
Vmware安装MacOS虚拟机方法
macos·vmware·unlocker
诺未科技_NovaTech4 小时前
上海诺未 紧随微软2026 build大会新趋势
microsoft
V搜xhliang024617 小时前
临床科研新范式:从选题到投稿,AI智能体如何接管全流程?
运维·数据结构·人工智能·算法·microsoft·数据挖掘·自动化
爱看科技17 小时前
微软Majorana 2量子芯片横空出世,IBM与WiMi微美全息双线并进加速量子+AI商用落地
人工智能·microsoft·量子计算
新手村领路人19 小时前
在macos python中安装dlib
开发语言·python·macos