In MAC, while interacting to the MS Power Point with the AppleScript, I can't access to the 'Paste Special with Style Text' drop down selection, please guide on this topic.
Note: paste text to first presentation with first frame
tell application "Microsoft PowerPoint"
open alias "Untitled:Selvam:PPT_2022:Cross-sectional-Group-Session_CR_for_Session_909.pptx"
end tell
delay 2
tell application "Microsoft PowerPoint"
activate
tell slide 1 of active presentation
set content of text range of text frame of shape 1 to " "
tell application "System Events"
keystroke "v" using {command down}
tell application process "Microsoft PowerPoint"
--tell menu 4 of menu bar 1
-- tell menu item 12 to click
--end tell
keystroke "v" using {command down}
end tell
end tell
end tell
end tell
Thanks, Selva