Estoy tratando de crear un AppleScript que seleccione varias palabras adyacentes en una diapositiva de Microsoft PowerPoint.
He descubierto cómo seleccionar palabras individuales, y cómo seleccionar todo el rango de una forma de texto, pero no puedo averiguar cómo seleccionar un rango personalizado de múltiples palabras adyacentes.
Apple script para seleccionar una sola palabra:
tell application "Microsoft PowerPoint"
tell active presentation
tell slide 1
repeat with j from 1 to count of shapes
set aShape to shape j
if (name of aShape is "Title 1") then
select word 2 of text range of text frame of aShape
end if
end repeat
end tell
end tell
end tell
Apple script para seleccionar la forma completa del texto:
tell application "Microsoft PowerPoint"
tell active presentation
tell slide 1
repeat with j from 1 to count of shapes
set aShape to shape j
if (name of aShape is "Title 1") then
set myTextFrame to text frame of aShape
set myRange to text range of myTextFrame
select text range of myTextFrame
end if
end repeat
end tell
end tell
end tell