メモは形状 ( place holder
class --> text frame
--> text range
--> content ) にあります。
各スライドのメモの値を取得する方法の例を次に示します。
tell application "Microsoft PowerPoint"
repeat with tSlide in (get slides of active presentation)
set tNote to ""
repeat with t_shape in (get shapes of notes page of tSlide)
tell t_shape to if has text frame then tell its text frame to if has text then
set tNote to content of its text range -- get the note of this slide
exit repeat
end if
end repeat
if tNote does not contain "STUDENT=HIDE" then
--- *** do something with tSlide *** ---
--
--
end if
end repeat
end tell