AppleScript: System Events – reading from plist-file

set the plistfile_path to "~/Desktop/example_2.plist"

tell application "System Events"
	set p_list to property list file (plistfile_path)
	value of p_list
end tell