On Oct 11, 2011, at 23:43, Mark Lively wrote:
>> I noticed the process can be sped up if "pop-up window blocking" is disabled.  Any way to do this in Applescript?
>> 
>> Thanks in advance for any help, especially with resources I can read up on what is happening.
> 
> This toggles it 
> 
> tell application "System Events"
> 	tell process "Safari"
> 		click menu item "Block Pop-up Windows" of menu "Safari" of menu bar 1
> 	end tell
> end tell
> 
> But I am having issues finding a way to read it.  

______________________________________________________________________

tell application "System Events"
  tell process "Safari"
    value of attribute "AXMenuItemMarkChar" of menu item "Block Pop-up Windows" of menu "Safari" of menu bar 1
  end tell
end tell