<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>blogadresse &#187; Applescript</title>
	<atom:link href="http://blogadresse.de/tag/applescript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogadresse.de</link>
	<description>Tech. Design. Notes. Nonsense.</description>
	<lastBuildDate>Thu, 17 May 2012 13:44:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Batch Tag in Things</title>
		<link>http://blogadresse.de/batch-tag-in-things/</link>
		<comments>http://blogadresse.de/batch-tag-in-things/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 18:27:43 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://blogadresse.de/?p=1030</guid>
		<description><![CDATA[Entweder bin ich blind oder es gibt in Things keine M&#246;glichkeit mehreren Aufgaben gleichzeitig Tags zuzuweisen. Ich habe mir daf&#252;r ein kleines AppleScript geschrieben, dass ich entweder per Keyboard Maestro oder Launchbar starte. Download: tag Things.scpt]]></description>
			<content:encoded><![CDATA[<p>Entweder bin ich blind oder es gibt in <a href="http://culturedcode.com/things/" target="_blank">Things</a> keine M&#246;glichkeit mehreren Aufgaben gleichzeitig Tags zuzuweisen.</p>
<p>Ich habe mir daf&#252;r ein kleines AppleScript geschrieben, dass ich entweder per Keyboard Maestro oder Launchbar starte.</p>
<p><a href="http://blogadresse.de/wp-content/uploads/2011/09/batch-tag-things-1.png"><img class="alignnone size-medium wp-image-1031" title="batch tag things 1" src="http://blogadresse.de/wp-content/uploads/2011/09/batch-tag-things-1-480x241.png" alt="" width="480" height="241" /></a></p>
<p><a href="http://blogadresse.de/wp-content/uploads/2011/09/batch-tag-things-2.png"><img class="alignnone size-medium wp-image-1032" title="batch tag things 2" src="http://blogadresse.de/wp-content/uploads/2011/09/batch-tag-things-2-480x285.png" alt="" width="480" height="285" /></a></p>
<p><a href="http://blogadresse.de/wp-content/uploads/2011/09/tag-Things.scpt_.zip"> Download: tag Things.scpt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/batch-tag-in-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes f&#252;r 5 Minuten pausieren</title>
		<link>http://blogadresse.de/pause-itunes-5min/</link>
		<comments>http://blogadresse.de/pause-itunes-5min/#comments</comments>
		<pubDate>Sun, 10 Apr 2011 09:28:28 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[itunes]]></category>

		<guid isPermaLink="false">http://blogadresse.de/?p=914</guid>
		<description><![CDATA[Aktuell sieht man das schicke kleine Programm &#8220;Take Five&#8221; im App Store weit oben. Die Idee find ich super, das Programm sieht auch gut aus. Aber brauche ich die GUI, brauche ich eine Software, die die ganze Zeit im Hintergrund &#8230; <a href="http://blogadresse.de/pause-itunes-5min/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Aktuell sieht man das schicke kleine Programm &#8220;<a href="http://takefiveapp.com/">Take Five</a>&#8221; im App Store weit oben.</p>
<p>Die Idee find ich super, das Programm sieht auch gut aus. Aber brauche ich die GUI, brauche ich eine Software, die die ganze Zeit im Hintergrund l&#228;uft, muss ich daf&#252;r Geld ausgeben? NEIN!</p>
<p>Man kann sich die selbe Hauptfunktionalit&#228;t selbst per AppleScript bauen und das sogar ziemlich einfach. Zwar ohne GUI aber daf&#252;r kostenlos und es l&#228;uft auch nichts im Hintergrund wenn man es nicht braucht.</p>
<p>Das fertige AppleScript gibt es <a href="http://blogadresse.de/wp-content/uploads/2011/04/Pause-iTunes-for-5-minutes.scpt_.zip">hier zum Download</a>. Man kann es nach Belieben entweder vom iTunes Script Menu, jedem Scriptstarter oder auch Launchbar starten. Bei Launchbar muss man darauf achten, dass man das Script mit Return+Option startet, damit es auch im Hintergrund l&#228;uft und Launchbar nicht f&#252;r 5 Minuten blockiert.</p>
<p>Hier auch noch der recht einfache der Code:</p>
<pre class="brush: plain; title: ; notranslate">tell application &quot;iTunes&quot;
	pause
	delay 300
	set the sound volume to 0
	play
	set myCounter to 0
	repeat until myCounter is 100
		set myCounter to myCounter + 5
		set the sound volume to myCounter
		delay 0.2
	end repeat
end tell</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/pause-itunes-5min/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Things Script Batch-Taggen</title>
		<link>http://blogadresse.de/things-script-batch-taggen/</link>
		<comments>http://blogadresse.de/things-script-batch-taggen/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 10:59:02 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2009/06/04/things-script-batch-taggen/</guid>
		<description><![CDATA[Heute gibt es ein Mini-AppleScript f&#252;r Things, dass einer Auswahl von Todos Tags hinzuf&#252;gt. tell application "Things" set myTags to text returned of (display dialog "Enter some tags you want to add to your todos (comma sep)" default answer "") &#8230; <a href="http://blogadresse.de/things-script-batch-taggen/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Heute gibt es ein Mini-AppleScript f&#252;r Things, dass einer Auswahl von Todos Tags hinzuf&#252;gt.</p>
<p><code>tell application "Things"<br />
set myTags to text returned of (display dialog "Enter some tags you want to add to your todos (comma sep)" default answer "")<br />
tell application "Things"<br />
repeat with selectedToDo in selected to dos<br />
set tag names of selectedToDo to (myTags &amp; ",") &amp; tag names of selectedToDo<br />
end repeat<br />
end tell<br />
end tell</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/things-script-batch-taggen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Safari und Things</title>
		<link>http://blogadresse.de/safari-und-things/</link>
		<comments>http://blogadresse.de/safari-und-things/#comments</comments>
		<pubDate>Thu, 28 May 2009 11:43:22 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=485</guid>
		<description><![CDATA[Es gibt mal wieder ein kleines neues  AppleScript f&#252;r Things. Diesmal f&#252;r Safari und Things. Das  Skript  legt ein neues ToDo an mit dem ausgew&#228;hlten Text als ToDo und der URL als Notiz. Falls kein Text ausgew&#228;hlt ist benutzt es &#8230; <a href="http://blogadresse.de/safari-und-things/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Es gibt mal wieder ein kleines neues  AppleScript f&#252;r Things. Diesmal f&#252;r Safari und Things.</p>
<p>Das  Skript  legt ein neues ToDo an mit dem ausgew&#228;hlten Text als ToDo und der URL als Notiz. Falls kein Text ausgew&#228;hlt ist benutzt es den Titelnamen der Seite als ToDo-Text.</p>
<p>Download: <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/safari-to-things.scpt">Safari to Things</a></p>
<p>Zus&#228;tzlich  gibt es auch noch:  <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/camino-to-things.scpt">Camino to Things</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/safari-und-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>neue Version von &#8220;Mail to Things&#8221;</title>
		<link>http://blogadresse.de/neue-version-von-mail-to-things/</link>
		<comments>http://blogadresse.de/neue-version-von-mail-to-things/#comments</comments>
		<pubDate>Thu, 14 May 2009 17:27:33 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=481</guid>
		<description><![CDATA[Ich habe noch ein paar Neuerungen in das Mail to Things Script eingebaut. So kopiert es nun Absender, Sendedatum, den Mailinhalt als auch den Link zu der Mail in die Notiz des neuen ToDos. Ich hoffe es gef&#228;llt euch. Download: &#8230; <a href="http://blogadresse.de/neue-version-von-mail-to-things/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Ich habe noch ein paar Neuerungen in das Mail to Things Script eingebaut.</p>
<p>So kopiert es nun Absender, Sendedatum, den Mailinhalt als auch den Link zu der Mail in die Notiz des neuen ToDos.</p>
<p>Ich hoffe es gef&#228;llt euch.</p>
<p>Download:  <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/mail-to-things.scpt">Mail To Things</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/neue-version-von-mail-to-things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nochmal Things und Mail Skript</title>
		<link>http://blogadresse.de/nochmal-things-und-mail-skript/</link>
		<comments>http://blogadresse.de/nochmal-things-und-mail-skript/#comments</comments>
		<pubDate>Sun, 10 May 2009 08:54:51 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=477</guid>
		<description><![CDATA[Ich habe das Mail To Things Skript f&#252;r die Mailregel noch mal ein bisschen ge&#228;ndert, diese Version tr&#228;gt nicht die Betreffzeile der Mail in Things als Titel ein sondern den Titel der Mailregel. Ist ganz interessant f&#252;r manche Aufgaben. Download: &#8230; <a href="http://blogadresse.de/nochmal-things-und-mail-skript/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>Ich habe das Mail To Things Skript f&#252;r die Mailregel noch mal ein bisschen ge&#228;ndert, diese Version tr&#228;gt nicht die Betreffzeile der Mail in Things als Titel ein sondern den Titel der Mailregel. Ist ganz interessant f&#252;r manche Aufgaben.</p>
<p>Download: <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/mailtothings_mailrule_titlefromrule.scpt">Mail to Things (Mailrule: Title from Rule)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/nochmal-things-und-mail-skript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mailregelskript f&#252;r Things</title>
		<link>http://blogadresse.de/mailregelskript-fuer-things/</link>
		<comments>http://blogadresse.de/mailregelskript-fuer-things/#comments</comments>
		<pubDate>Sat, 09 May 2009 14:28:53 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=472</guid>
		<description><![CDATA[Gestern hab ich mir ein weiteres kleines  AppleScript geschrieben f&#252;r Mail und Things. Mit diesem kann man nun automatisch ToDos in Things erstellen lassen anhand von Regel. Download: Mail To Things (Mailrule)]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blogadresse.de/wp-content/uploads/2009/05/mailrule_things.jpg"><img class="alignnone size-full wp-image-474" title="mailrule_things" src="http://www.blogadresse.de/wp-content/uploads/2009/05/mailrule_things.jpg" alt="mailrule_things" width="547" height="195" /></a></p>
<p>Gestern hab ich mir ein weiteres kleines  AppleScript geschrieben f&#252;r Mail und Things. Mit diesem kann man nun automatisch ToDos in Things erstellen lassen anhand von Regel.</p>
<p>Download: <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/mailtothings_mailrule.scpt">Mail To Things (Mailrule)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/mailregelskript-fuer-things/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Things + Mail dank Script vereint</title>
		<link>http://blogadresse.de/things-mail-dank-script-vereint/</link>
		<comments>http://blogadresse.de/things-mail-dank-script-vereint/#comments</comments>
		<pubDate>Thu, 07 May 2009 16:46:05 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[Things]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/?p=466</guid>
		<description><![CDATA[Culturedcode hat vor ein paar Tagen  Things 1.1 ver&#246;ffentlich, das jetzt auch AppleScript unterst&#252;tzt. So konnte ich mir eine kleine Sache, die ich schon immer vermisst habe bei Things schnell selbst basteln:  &#8220;Aus E-Mails neue ToDos erstellen.&#8221; Hier gibt es &#8230; <a href="http://blogadresse.de/things-mail-dank-script-vereint/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<div>
<div id="ectocontent">
<div>
<p><a href="http://culturedcode.com/">Culturedcode</a> hat vor ein paar Tagen  <a href="http://culturedcode.com/things/">Things</a> 1.1 ver&#246;ffentlich, das jetzt auch AppleScript unterst&#252;tzt. So konnte ich mir eine kleine Sache, die ich schon immer vermisst habe bei Things schnell selbst basteln:  <strong>&#8220;Aus E-Mails neue ToDos erstellen.&#8221;</strong></p>
<p>Hier gibt es mein kleines AppleScript:  <a href="http://www.blogadresse.de/wp-content/uploads/2009/05/mailtothings.scpt">MailToThings</a></p>
<p>Einfach E-Mails in Apple Mail markieren und dann das Script starten. Das Script legt dann f&#252;r jede Mail, die ihr ausgew&#228;hlt habt, ein neues Todo an. Dabei ist der Titel des ToDo gleich dem Mailbetreff und in den Notizen steht die URL zu der Mail.</p>
<p>Ich starte es immer einfach per Launchbar, dazu das Script nach ~/Library/Application Support/LaunchBar/Actions/ kopieren. Mails ausw&#228;hlen, Launchbar starten und MailToThings tippen.</p></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/things-mail-dank-script-vereint/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Download Queue Actions for Automator</title>
		<link>http://blogadresse.de/download-queue-actions-for-automator/</link>
		<comments>http://blogadresse.de/download-queue-actions-for-automator/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 20:15:57 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[actions]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[automator]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2008/03/14/download-queue-actions-for-automator/</guid>
		<description><![CDATA[Today I had some free time to develope a little bit and learn something about Automator Actions. Here is the result. <a href="http://blogadresse.de/download-queue-actions-for-automator/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>I bought <a href="http://www.olivetoast.com/DownloadQueue/">Download Queue</a> from Olive Toast Sofware some days ago at <a href="http://www.mupromo.com/deal/449/download-queue">mupromo</a> for $9.99. It is a very nice and faster download manganger for Mac OS X. Today I release some <a href="http://en.wikipedia.org/wiki/Automator">Automator</a> Actions for it<span id="more-331"></span>:</p>
<ul>
<li>Start all downloads in queue</li>
<li>Stop all downloads</li>
<li>Add Downloads to queue</li>
</ul>
<p><a href='http://www.blogadresse.de/wp-content/uploads/2008/03/download-queue-actions-screenshot.png' title='download-queue-actions-screenshot.png'><img src='http://www.blogadresse.de/wp-content/uploads/2008/03/download-queue-actions-screenshot.thumbnail.png' alt='download-queue-actions-screenshot.png' /></a></p>
<p>Download: <a href="http://www.blogadresse.de/wp-content/uploads/2008/03/download-queue-actions.zip" title="Download Queue Actions.zip">Download Queue Actions.zip</a> (216 kb)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/download-queue-actions-for-automator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DNS-O-Matic Updater Script 1.0</title>
		<link>http://blogadresse.de/dns-o-matic-updater-script/</link>
		<comments>http://blogadresse.de/dns-o-matic-updater-script/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 16:25:41 +0000</pubDate>
		<dc:creator>Jan</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Applescript]]></category>
		<category><![CDATA[DNS-O-Matic]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[opendns]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[updater]]></category>

		<guid isPermaLink="false">http://www.blogadresse.de/2008/03/08/dns-o-matic-updater-script-10/</guid>
		<description><![CDATA[My little DNS-O-Matic updater. I wrote it in Applescript. It is really easy to use and has some nice advantages above other solutions. <a href="http://blogadresse.de/dns-o-matic-updater-script/">Weiterlesen</a>]]></description>
			<content:encoded><![CDATA[<p>DNS-O-Matic Updater Script is a simple AppleScript to update your external IP on DNS-O-Matic. You simply put your username and password in, save it and could run it.</p>
<p><span id="more-324"></span></p>
<p>It has some nice advantages above other clients:</p>
<ul>
<li>Stay out of the way</li>
<li>No memory usage (just runs and then quits)</li>
<li>Really small</li>
<li>Easy to change your self</li>
<li>No dock or menu icon</li>
</ul>
<p>You could start it an various ways:</p>
<ul>
<li>Script Editor</li>
<li>Script Menu</li>
<li>Save it as an app to start it in the dock or your favorite app launcher</li>
<li><strong>Run it as system agent by adding it with <a href="http://lingon.sourceforge.net/">Lingon</a></strong></li>
<li>Use it in Automator actions</li>
<li>Use it in shell script</li>
</ul>
<p>Script made by Jan Kampling<br />
http://www.blogadresse.de<br />
Licenesed under GNU General Public License, Free Software Foundation http://creativecommons.org/licenses/GPL/2.0/</p>
<p><strong>Download:</strong> <a href='http://www.blogadresse.de/wp-content/uploads/2008/03/dnsomatic_updater.zip' title='DNS-O-Matic Updater Script 1.0'>DNS-O-Matic Updater Script 1.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogadresse.de/dns-o-matic-updater-script/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

