Intel mini frowns on a decent script

tell application “SnapNDrag” to activate
tell application “System Events” to click menu item “Selection” of menu 1 of menu bar item “Capture” of menu bar 1 of process “SnapNDrag”

The above script works on a PPC mini running Tiger 10.4.8 but is refused by an Intel mini running Tiger 10.4.10 Can you please tell me how the script should be modified to agree with the Intel (core 2 duo) Mac?

Try this - Tom

tell application "SnapNDrag" to activate
tell application "System Events"
	tell process "SnapNDrag"
		click menu item "Selection" of menu 1 of menu bar item "Capture" of menu bar 1
	end tell
end tell

Try this one too. - Tom

tell application "SnapNDrag" to activate
tell application "System Events"
	tell process "SnapNDrag"
		keystroke "A" using {command down, shift down}
	end tell
end tell

…and this one - Tom

tell application "SnapNDrag" to activate
tell application "System Events"
	tell process "SnapNDrag"
		keystroke (ASCII character 65) using {command down, shift down}
	end tell
end tell

the last one - Tom

tell application "SnapNDrag" to activate
tell application "System Events"
	tell process "SnapNDrag"
		keystroke (ASCII character 65) using {command down}
	end tell
end tell

Dear Tom,

I never received any notice that someone replied to my questions.

Just in case I logged in today to make sure, and lo, I found not one but four scripts! They ALL work neatly. I am very pleased and thank you for following this up.

I hope you have a wonderful new year ahead of you

maurice