Paragraph JUMPER

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
tell application "Script Editor"
	set ask_para to the text returned of (display dialog "Jump to paragraph " default answer "4")
	set cc to count paragraphs of document 1
	set x to every paragraph of document 1
	set y to item ask_para of x
end tell

sure that your result is in good meaning cwtnospam, but i want to scroll (fisically) to the desired paragraph, if i’m on top or elsewhere in the document. Thats the trick. :confused:
Perhaps it was not clear enough “jump”.