Scripting Acrobat's GUI?

Hello everyone,

I am trying to script Acrobat 6’s GUI. Has anyone done this before. This the code I am testing but it is not working. I do have Assitive Devices turned on in Universal Access. I keep getting NS errors with the script below. Is Acrobat’s GUI scriptable??


tell application "Acrobat 6.0 Professional"
	activate
end tell
tell application "System Events"
	tell process "Acrobat 6 Professional"
		tell menu bar 1
			tell menu bar item "View"
				tell menu "View"
					click menu item "Review Tracker"
				end tell
			end tell
		end tell
	end tell
end tell

Thanks!!

Anyone?

This works for me:

tell application “Acrobat 6.0 Professional” to activate
tell application “System Events”
tell application process “Acrobat”
click menu item “Review Tracker” of menu “View” of menu bar item “View” of menu bar 1
end tell
end tell

cheers
Howard