<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: Toggle screensaver password applescript</title> <atom:link href="http://patjack.co.uk/toggle-screensaver-password-applescript/feed/" rel="self" type="application/rss+xml" /><link>http://patjack.co.uk/toggle-screensaver-password-applescript/</link> <description>Patrick Robertson</description> <lastBuildDate>Sun, 25 Jul 2010 14:29:46 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0</generator> <item><title>By: eN0ch</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-2991</link> <dc:creator>eN0ch</dc:creator> <pubDate>Thu, 01 Jul 2010 07:28:23 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-2991</guid> <description>Fantastic - thanks a heap for this :) .. But just one prob - I&#039;m not getting the growl notification. (I do have Growl running and many other notifications work fine.)macbook2.16G / 10.6.4.  Can anyone help?  Thanks.</description> <content:encoded><![CDATA[<p>Fantastic &#8211; thanks a heap for this <img
src='http://patjack.co.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .. But just one prob &#8211; I&#8217;m not getting the growl notification. (I do have Growl running and many other notifications work fine.)</p><p>macbook2.16G / 10.6.4.  Can anyone help?  Thanks.</p> ]]></content:encoded> </item> <item><title>By: markfrommarton</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-2641</link> <dc:creator>markfrommarton</dc:creator> <pubDate>Thu, 15 Apr 2010 07:17:17 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-2641</guid> <description>You&#039;re a genius!</description> <content:encoded><![CDATA[<p>You&#8217;re a genius!</p> ]]></content:encoded> </item> <item><title>By: Patrick</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-2639</link> <dc:creator>Patrick</dc:creator> <pubDate>Wed, 14 Apr 2010 16:04:05 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-2639</guid> <description>&lt;ol&gt;
Thanks to David and Januz for a Snow Leopard compatible version!An updated applescript with a few more fixes is uploaded.My version will check to see if the System Preferences is open and if it is it&#039;ll reopen it to the same pane so as not to disturb your workflow.:)</description> <content:encoded><![CDATA[<ol> Thanks to David and Januz for a Snow Leopard compatible version!</p><p>An updated applescript with a few more fixes is uploaded.</p><p>My version will check to see if the System Preferences is open and if it is it&#8217;ll reopen it to the same pane so as not to disturb your workflow.</p><p> <img
src='http://patjack.co.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></ol> ]]></content:encoded> </item> <item><title>By: Januz</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-2636</link> <dc:creator>Januz</dc:creator> <pubDate>Fri, 02 Apr 2010 11:42:28 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-2636</guid> <description>@ David: THANKS!!The Script works. The only thing I had to do was addtell application &quot;System Preferences&quot;
quit
end tellin front of your script because the script won´t function if the Preferences are running. I also removed theset volume without output muted
set response to “”lines because I didn´t need them and I had to replace the quotation marks but after that everything works just fineThank you and all the best,Januz</description> <content:encoded><![CDATA[<p>@ David: THANKS!!</p><p>The Script works. The only thing I had to do was add</p><p>tell application &#8220;System Preferences&#8221;<br
/> quit<br
/> end tell</p><p>in front of your script because the script won´t function if the Preferences are running. I also removed the</p><p>set volume without output muted<br
/> set response to “”</p><p>lines because I didn´t need them and I had to replace the quotation marks but after that everything works just fine</p><p>Thank you and all the best,</p><p>Januz</p> ]]></content:encoded> </item> <item><title>By: davd8401</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-2618</link> <dc:creator>davd8401</dc:creator> <pubDate>Mon, 15 Mar 2010 16:39:13 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-2618</guid> <description>Hi,Yes I&#039;m using a version of this on Snow Leopard.Here&#039;s the script (simplified to the very basics):tell application &quot;System Events&quot;
set volume without output muted
set response to &quot;&quot;
tell security preferences
if get require password to wake is true then
set require password to wake to false
set response to &quot;De-Activated&quot;
else
set require password to wake to true
set response to &quot;Activated&quot;
end if
end tell
tell application &quot;GrowlHelperApp&quot;
set the allNotificationsList to {&quot;Security Setting&quot;}
set the enabledNotificationsList to {&quot;Security Setting&quot;}
register as application &quot;AppleScript - PW&quot; all notifications allNotificationsList default notifications enabledNotificationsList icon of application &quot;System Preferences&quot;
notify with name &quot;Security Setting&quot; title &quot;Security: PW-Settings&quot; description &quot;Passwords have been &quot; &amp; response &amp; &quot;!&quot; application name &quot;AppleScript - PW&quot;
end tell
end tellDoes this help somebody?BR,
David</description> <content:encoded><![CDATA[<p>Hi,</p><p>Yes I&#8217;m using a version of this on Snow Leopard.</p><p>Here&#8217;s the script (simplified to the very basics):</p><p>tell application &#8220;System Events&#8221;<br
/> set volume without output muted<br
/> set response to &#8220;&#8221;<br
/> tell security preferences<br
/> if get require password to wake is true then<br
/> set require password to wake to false<br
/> set response to &#8220;De-Activated&#8221;<br
/> else<br
/> set require password to wake to true<br
/> set response to &#8220;Activated&#8221;<br
/> end if<br
/> end tell<br
/> tell application &#8220;GrowlHelperApp&#8221;<br
/> set the allNotificationsList to {&#8220;Security Setting&#8221;}<br
/> set the enabledNotificationsList to {&#8220;Security Setting&#8221;}<br
/> register as application &#8220;AppleScript &#8211; PW&#8221; all notifications allNotificationsList default notifications enabledNotificationsList icon of application &#8220;System Preferences&#8221;<br
/> notify with name &#8220;Security Setting&#8221; title &#8220;Security: PW-Settings&#8221; description &#8220;Passwords have been &#8221; &amp; response &amp; &#8220;!&#8221; application name &#8220;AppleScript &#8211; PW&#8221;<br
/> end tell<br
/> end tell</p><p>Does this help somebody?</p><p>BR,<br
/> David</p> ]]></content:encoded> </item> <item><title>By: Chris</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-1867</link> <dc:creator>Chris</dc:creator> <pubDate>Sat, 10 Oct 2009 21:49:31 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-1867</guid> <description>Anyone able to get this script or any applescript that toggles the screensaver to work with Snow Leopard?</description> <content:encoded><![CDATA[<p>Anyone able to get this script or any applescript that toggles the screensaver to work with Snow Leopard?</p> ]]></content:encoded> </item> <item><title>By: Bundweite</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-1725</link> <dc:creator>Bundweite</dc:creator> <pubDate>Sat, 26 Sep 2009 21:18:50 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-1725</guid> <description>There are many interesting things in this article. Author is a good guy</description> <content:encoded><![CDATA[<p>There are many interesting things in this article. Author is a good guy</p> ]]></content:encoded> </item> <item><title>By: Joel</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-1708</link> <dc:creator>Joel</dc:creator> <pubDate>Fri, 25 Sep 2009 16:10:08 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-1708</guid> <description>Thank you. Very helpful :)</description> <content:encoded><![CDATA[<p>Thank you. Very helpful <img
src='http://patjack.co.uk/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Cliff Pearson</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-349</link> <dc:creator>Cliff Pearson</dc:creator> <pubDate>Thu, 12 Feb 2009 19:28:40 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-349</guid> <description>Just a quick note to say thanks for the script - exactly what i was looking for!All the best</description> <content:encoded><![CDATA[<p>Just a quick note to say thanks for the script &#8211; exactly what i was looking for!</p><p>All the best</p> ]]></content:encoded> </item> <item><title>By: fidel</title><link>http://patjack.co.uk/toggle-screensaver-password-applescript/comment-page-1/#comment-84</link> <dc:creator>fidel</dc:creator> <pubDate>Sun, 07 Dec 2008 12:48:22 +0000</pubDate> <guid
isPermaLink="false">http://tyddynadda.co.uk/design/?p=77#comment-84</guid> <description>Thanks for pointing that out - helped me with my small project. Thumbs up !</description> <content:encoded><![CDATA[<p>Thanks for pointing that out &#8211; helped me with my small project. Thumbs up !</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)

Served from: patjack.co.uk @ 2010-07-30 15:38:34 -->