Hello,
is there a way to jump to a specified paragraph in the front document of “Script Editor”, via applescript ? (the script must be stored into the “SCRIPT Editor Scripts” of the system domain, in other words stays into the contextual menu of “Script Editor” itself)
--Paragaph JUMPER
tell application "Script Editor"
set ask_para to the text returned of (display dialog "Jump to paragraph " default answer "12")
--or 0.5= middle of the document (for later)
set cc to count paragraphs of document 1
set y to contents of (paragraph ask_para of document 1 as text)
-- added whitespaces does not cause the jump to the desired paragraph. Sob
end tell