Mac OS X 10.3.9
tell application "System Events"
tell application process "Finder"
tell application "Finder" to open desktop
get title of window "Desktop" -- All Ok
get title of window "Desktop" of application "Finder" --Finder got an error: Can't get title of window "Desktop"
get title of window "Desktop" of application process "Finder" --System Event got an error : NSCannotCreateScriptCommandError
get title of window "Desktop" of application "System Events" --System Event got an error : NSReceiverEvaluationScriptError: 4
end tell
end tell
What gives properties of a window if any reference to the possible parent has not worked?