<?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>Apfelkuh.de &#187; Mac Apps</title>
	<atom:link href="http://www.apfelkuh.de/category/mac-apps/feed" rel="self" type="application/rss+xml" />
	<link>http://www.apfelkuh.de</link>
	<description>think &#60;div&#62;erent</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:01:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>SML on Mac OSX (incl. TextMate Bundle)</title>
		<link>http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle</link>
		<comments>http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:57:05 +0000</pubDate>
		<dc:creator>Manuel Graf</dc:creator>
				<category><![CDATA[Mac Apps]]></category>
		<category><![CDATA[Informatik]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.apfelkuh.de/?p=868</guid>
		<description><![CDATA[At University, people sometimes do use strange programming languages, most evelopers never even heard about. One of these is SML (Standard Markup Language). A functional proramming language, designed to torture students all over the world. Due to missing Sources it can be somewhat annoying to install it. Thats why I wrote this Step-by-Step Instruction on [...]

<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul><li><a href='http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle' rel='bookmark' title='Permanent Link: 18 Stunden noch: Das Macheist Mac OS Software Bundle'>18 Stunden noch: Das Macheist Mac OS Software Bundle</a></li>
<li><a href='http://www.apfelkuh.de/263/standardanwendung-fur-leeren-dateityp-definieren-in-mac-os-x' rel='bookmark' title='Permanent Link: Standardanwendung für (leeren) Dateityp definieren in Mac OS X'>Standardanwendung für (leeren) Dateityp definieren in Mac OS X</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.apfelkuh.de%2F868%2Fsml-on-mac-osx-incl-textmate-bundle"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.apfelkuh.de%2F868%2Fsml-on-mac-osx-incl-textmate-bundle&amp;source=Apfelkuh_de&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle"><span class="imageFrame"><br />
        <span class="image"><br />
            <img src="http://www.apfelkuh.de/wp-content/uploads/SML.png" alt="SML on Mac OSX (incl. TextMate Bundle)" title="fblike" width="100" height="100" class="alignnone size-full" /><br />
        </span><br />
        <span class="overlay" style="background:transparent"><br />
        </span><br />
    </span></a><strong>At University, people sometimes do use strange programming languages, most evelopers never even heard about. One of these is SML (Standard Markup Language). A functional proramming language, designed to torture students all over the world. Due to missing Sources it can be somewhat annoying to install it. Thats why I wrote this Step-by-Step Instruction on how to Install SML on your Mac – even with a neat TextMate Bundle:</strong></p>
<p><span id="more-868"></span></p>
<p>1. install this package:<br />
<a href="http://smlnj.cs.uchicago.edu/dist/working/110.72/smlnj-x86-110.72.dmg">SML for MAC OSX (Intel)</a>…</p>
<p>2. set a symlink , so that our shell knows where the installed package dropped its binaries:<br />
Applications > Terminal:<br />
<code>sudo ln -sf /usr/local/smlnj-110.72/bin/sml /usr/bin/sml</code></p>
<p>Now you can call the sml-command in Terminal:<br />
<code>>>  sml<br />
Standard ML of New Jersey v110.72 [built: Wed Feb  3 11:03:59 2010]<br />
-<br />
</code></p>
<p>or just open a file with sml syntax in it via <strong>sml <filename></strong></p>
<p><code>>>  sml test.sml<br />
Standard ML of New Jersey v110.72 [built: Wed Feb  3 11:03:59 2010]<br />
[opening test.sml]<br />
hello worldval it = () : unit<br />
val add = fn : int -> int -> int<br />
val it = 7 : int<br />
-<br />
</code></p>
<p>And now to the fun part: the TextMate Bundle that makes SML bearable. It offers syntax highlighting and neat things like a run-command. To install the bundle open a blank text document in Textmate (<strong>Cmd+N</strong>), change the <strong>document type</strong> to <strong>&#8220;Shell-script (bash)&#8221;</strong> at the section below the textfield and paste the following shell-code:</p>
<p><code>#!/bin/sh</p>
<p>LC_CTYPE=en_US.UTF-8<br />
SVN=`which svn`</p>
<p>echo Changing to Bundles directory...<br />
mkdir -p "/Library/Application Support/TextMate/Bundles"<br />
cd "/Library/Application Support/TextMate/Bundles"</p>
<p>if [ -d "/Library/Application Support/TextMate/Bundles/Standard ML.tmbundle" ]; then<br />
	echo Standard ML bundle already exists - updating...<br />
	$SVN up "Standard ML.tmbundle"<br />
else<br />
	echo Checking out Standard ML bundle...<br />
	$SVN --username anon --password anon co "http://svn.textmate.org/trunk/Bundles/Standard ML.tmbundle/"<br />
fi</p>
<p>echo Reloading bundles in TextMate...<br />
osascript -e 'tell app "TextMate" to reload bundles'<br />
</code></p>
<p>Now<strong>hit CMD+R</strong> and TextMate should install the bundle all by itself.</p>
<p>This Bundle now offers you the &#8220;Standard ML&#8221; document type. After writing some lines in SML you can Run your SML-program by pressing <strong>CMD+R</strong>. Now it should look like this: <a href="http://www.apfelkuh.de/wp-content/uploads/Screen-shot-2011-07-14-at-3.22.10-PM.png"><br />
<img src="http://www.apfelkuh.de/wp-content/uploads/Screen-shot-2011-07-14-at-3.22.10-PM-300x120.png" alt="SML TextMate Bundle in Action" title="SML-on-OSX" width="300" height="120" class="alignleft size-medium wp-image-869" /></a></p>


<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul><li><a href='http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle' rel='bookmark' title='Permanent Link: 18 Stunden noch: Das Macheist Mac OS Software Bundle'>18 Stunden noch: Das Macheist Mac OS Software Bundle</a></li>
<li><a href='http://www.apfelkuh.de/263/standardanwendung-fur-leeren-dateityp-definieren-in-mac-os-x' rel='bookmark' title='Permanent Link: Standardanwendung für (leeren) Dateityp definieren in Mac OS X'>Standardanwendung für (leeren) Dateityp definieren in Mac OS X</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul>]]></content:encoded>
			<wfw:commentRss>http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Neues von Apple: iTunes 9 und die neuen iPods</title>
		<link>http://www.apfelkuh.de/740/neues-von-apple-itunes-9-und-die-neuen-ipods</link>
		<comments>http://www.apfelkuh.de/740/neues-von-apple-itunes-9-und-die-neuen-ipods#comments</comments>
		<pubDate>Thu, 10 Sep 2009 10:32:40 +0000</pubDate>
		<dc:creator>Manuel Graf</dc:creator>
				<category><![CDATA[Mac Apps]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://www.apfelkuh.de/?p=740</guid>
		<description><![CDATA[Steve Jobs hielt gestern eine Keynote zum Thema Musik. Er stellte hierbei den neuen iPod Nano vor. Doch auch bei dem iPod Classic, Touch und Shuffle gab es neues zu berichten. Es gab in allen Bereichen rund um das Thema Musik neue &#196;nderungen in der Apple-Schmiede. Zuerst nannte Steve Jobs das Betriebssystem-update f&#252;r das iPhone [...]

<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul><li><a href='http://www.apfelkuh.de/779/apple-stellt-magicmouse-mit-multitouch-vor' rel='bookmark' title='Permanent Link: Apple stellt MagicMouse mit Multitouch vor'>Apple stellt MagicMouse mit Multitouch vor</a></li>
<li><a href='http://www.apfelkuh.de/417/wenn-steve-jobs-und-bill-gates-facebook-profile-hatten' rel='bookmark' title='Permanent Link: Wenn Steve Jobs und Bill Gates Facebook Profile hätten&#8230;'>Wenn Steve Jobs und Bill Gates Facebook Profile hätten&#8230;</a></li>
<li><a href='http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle' rel='bookmark' title='Permanent Link: 18 Stunden noch: Das Macheist Mac OS Software Bundle'>18 Stunden noch: Das Macheist Mac OS Software Bundle</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.apfelkuh.de%2F740%2Fneues-von-apple-itunes-9-und-die-neuen-ipods"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.apfelkuh.de%2F740%2Fneues-von-apple-itunes-9-und-die-neuen-ipods&amp;source=Apfelkuh_de&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href=": http://www.apfelkuh.de/740/neues-von-apple-itunes-9-und-die-neuen-ipods"><span class="imageFrame"><br />
        <span class="image"><br />
<img src="http://www.apfelkuh.de/wp-content/uploads/overview_hero1_20090909-300x161.png" alt="iTunes 9 und neue iPod touch, nano, shuffle und classic" title="iTunes 9 und neue iPod touch, nano, shuffle und classic" width="300" height="161" class="alignnone size-medium wp-image-747" /><br />
        </span><br />
        <span class="overlay"><br />
        </span><br />
    </span></a><strong>Steve Jobs hielt gestern eine Keynote zum Thema Musik. Er stellte hierbei den neuen iPod Nano vor. Doch auch bei dem iPod Classic, Touch und Shuffle gab es neues zu berichten. <span id="more-740"></span></strong></p>
<p>Es gab in allen Bereichen rund um das Thema Musik neue &Auml;nderungen in der Apple-Schmiede. Zuerst nannte Steve Jobs das Betriebssystem-update f&uuml;r das iPhone und den iPod touch.</p>
<h3><a href="http://www.apple.com/de/iphone/softwareupdate/" class="previewlink">Iphone/Ipod touch OS 3.1</a></h3>
<ul>
<li>Jede Menge neue Features und Bugfixes</li>
<li>Genius-Engine Nun auch im Appstore vorhanden. Diese schl&auml;gt individuell Apps vor, die den Benutzer auch interessieren k&ouml;nnten</li>
<li>Klingelt&ouml;ne im Itunes Store</li>
</ul>
<p>Zudem ist nun ein neues Major Update f&uuml;r iTunes verf&uuml;gbar. <strong>iTunes 9</strong></p>
<h3><a href="http://www.apple.com/de/itunes/download/" class="previewlink">iTunes 9.0</a></h3>
<ul>
<li>Genius Mixes (Genius Mixes erstellt aus der eigenen lokalen music Library Playlisten aus Songs zusammen, die gut zueinander passen. Dies basiert sowohl auf fingerprinting als auch auf 27.000.000 analysierten Musiksammlungen)</li>
<li>Verbesserte Synchronisierung (viel praktischere Filtereinstellungen, App-Manager f&uuml;r iPhone/iPod touch)</li>
<li>Home sharing (Erm&ouml;glicht es, auf Musiksammlungen anderer Rechner im Netz zuzugreifen ohne die Lieder zu seiner eigenen Bibliothek adden zu m&uuml;ssen, das heisst: Nie wieder die nervigen fehlenden Verkn&uuml;pfungen, da man seinen Server etc. direkt als device in iTunes sehen kann)</li>
<li>Redesign des iTunes Stores (jeder K&uuml;nstler hat seine eigene Seite, wie Myspace, blo&szlig; in sch&ouml;n. Zudem gibt es ein Facebook-Mashup)</li>
<li>iTunes LP beschert einem zus&auml;tzlichen Content beim Kauf von Alben oder Filmen. W&auml;hlt man die LP-Funktion eines Albums, welches man im Store gekauft hat, aus, so wird eienm eien Art DVD-Men&uuml; angezeigt mit Extras wie exklusiven Interviews, Songtexten, Videos etc.
	</li>
</ul>
<p><img src="http://www.apfelkuh.de/wp-content/uploads/picture-41-300x162.png" alt="iTunes 9 und neue iPod touch, nano, shuffle und classic: iTunes LP" title="iTunes 9 und neue iPod touch, nano, shuffle und classic: iTunes LP" width="300" height="162" class="alignnone size-medium wp-image-744" /></p>
<p>Soviel zur neuen Software, doch auch Hardwaretechnisch hat sich einiges getan. Der iPod Touch und iPod classic bekommen mehr Speicherplatz, der iPod Nano eine Kamera und der iPod Shuffle neue Farben.</p>
<h3><a href="http://www.apple.com/de/ipodtouch/" class="previewlink">iPod touch</a></h3>
<ul>
<li>Implementierung von <i>Genius Mixes</i></li>
<li>OpenGL/ES</li>
<li>Neue Preise:</li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>Kapazit&auml;t</th>
<th>Preis</th>
</tr>
<tr>
<td>8&thinsp;GB</td>
<td>199$ / <strong>189&euro;</strong></td>
</tr>
<tr>
<td>32&thinsp;GB</td>
<td>299$ / <strong>279&euro;</strong></td>
</tr>
<tr>
<td>64&thinsp;GB</td>
<td>399$ / <strong>369&euro;</strong></td>
</tr>
</table>
<h3><a href="http://www.apple.com/de/ipodclassic/" class="previewlink">iPod Classic</a></h3>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>Kapazit&auml;t</th>
<th>Preis</th>
</tr>
<tr>
<td><strong>160&thinsp;GB</strong></td>
<td>249$ / 229&euro;</td>
</tr>
</table>
<h3><a href="http://www.apple.com/de/ipodshuffle/" class="previewlink">iPod Shuffle</a></h3>
<ul>
<li>Jetzt in F&uuml;nf Farben (Schwarz, Silber, Pink, Gr&uuml;n, Blau)</li>
<li>Special Edition in Edelstahl</li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>Kapazit&auml;t</th>
<th>Preis</th>
</tr>
<tr>
<td><strong>2&thinsp;GB</strong></td>
<td>59$ / 55&euro;</td>
</tr>
<tr>
<td><strong>4&thinsp;GB</strong></td>
<td>79$ / 75&euro;</td>
</tr>
</table>
<p><img src="http://www.apfelkuh.de/wp-content/uploads/picture-71-300x235.png" alt="iTunes 9 und neue iPod touch, nano, shuffle und classic: iPod Shuffle Special Edition" title="iTunes 9 und neue iPod touch, nano, shuffle und classic: iPod Shuffle Special Edition" width="300" height="235" class="alignnone size-medium wp-image-742" /></p>
<h3><a href="http://www.apple.com/de/ipodnano/" class="previewlink">iPod Nano</a> </h3>
<ul>
<li>mit Videokamera, lautsprechern, und Mikrofon</li>
<li>Voiceover, &auml;hnlich wie beim iPod Shuffle</li>
<li>Geb&uuml;rstetes Aluminium</li>
<li>Voice Recorder</li>
<li>Schrittz&auml;hler</li>
<li>FM-Radio</li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>Kapazit&auml;t</th>
<th>Preis</th>
</tr>
<tr>
<td><strong>8&thinsp;GB</strong></td>
<td>149$ / 139&euro;</td>
</tr>
<tr>
<td><strong>16&thinsp;GB</strong></td>
<td>179$ / 169&euro;</td>
</tr>
</table>
<p><img src="http://www.apfelkuh.de/wp-content/uploads/overview_hero1_20090909-300x161.png" alt="iTunes 9 und neue iPod touch, nano, shuffle und classic" title="iTunes 9 und neue iPod touch, nano, shuffle und classic" width="300" height="161" class="alignnone size-medium wp-image-747" /></p>


<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul><li><a href='http://www.apfelkuh.de/779/apple-stellt-magicmouse-mit-multitouch-vor' rel='bookmark' title='Permanent Link: Apple stellt MagicMouse mit Multitouch vor'>Apple stellt MagicMouse mit Multitouch vor</a></li>
<li><a href='http://www.apfelkuh.de/417/wenn-steve-jobs-und-bill-gates-facebook-profile-hatten' rel='bookmark' title='Permanent Link: Wenn Steve Jobs und Bill Gates Facebook Profile hätten&#8230;'>Wenn Steve Jobs und Bill Gates Facebook Profile hätten&#8230;</a></li>
<li><a href='http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle' rel='bookmark' title='Permanent Link: 18 Stunden noch: Das Macheist Mac OS Software Bundle'>18 Stunden noch: Das Macheist Mac OS Software Bundle</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul>]]></content:encoded>
			<wfw:commentRss>http://www.apfelkuh.de/740/neues-von-apple-itunes-9-und-die-neuen-ipods/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apfelkast: Safari 4 (vs. Mozilla Firefox)</title>
		<link>http://www.apfelkuh.de/686/apfelkast-safari-4-vs-mozilla-firefox</link>
		<comments>http://www.apfelkuh.de/686/apfelkast-safari-4-vs-mozilla-firefox#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:44:19 +0000</pubDate>
		<dc:creator>Manuel Graf</dc:creator>
				<category><![CDATA[Mac Apps]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Safari]]></category>

		<guid isPermaLink="false">http://www.apfelkuh.de/?p=686</guid>
		<description><![CDATA[Der neue Safari von Apple ist nun herausgekommen und ich habe mir natürlich nicht nehmen lassen ihn einmal auszuprobieren. Ich bin zwar stets kritisch anderen Browsern ausser dem Firefox gegenüber aber der Safari hat es in sich. Doch seht selbst im zweiten Apfelkuh.de Apfelkast zum Thema: Safari 4. Es gibt ausser dem Video ncoh ein [...]

<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul><li><a href='http://www.apfelkuh.de/429/10-unabdingbare-firefox-plugins-fur-web-developer' rel='bookmark' title='Permanent Link: 10+ unabdingbare Firefox Addons für Web Developer'>10+ unabdingbare Firefox Addons für Web Developer</a></li>
<li><a href='http://www.apfelkuh.de/754/trick-17-css-transparenz-fuer-alle-browse' rel='bookmark' title='Permanent Link: Trick 17: CSS-Transparenz für alle Browsertypen'>Trick 17: CSS-Transparenz für alle Browsertypen</a></li>
<li><a href='http://www.apfelkuh.de/583/mediengestalter-ap-2009-lernmaterial' rel='bookmark' title='Permanent Link: Mediengestalter Abschlussprüfung 2009 Lernmaterial'>Mediengestalter Abschlussprüfung 2009 Lernmaterial</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.apfelkuh.de%2F686%2Fapfelkast-safari-4-vs-mozilla-firefox"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.apfelkuh.de%2F686%2Fapfelkast-safari-4-vs-mozilla-firefox&amp;source=Apfelkuh_de&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.apfelkuh.de/686/apfelkast-safari-4-vs-mozilla-firefox"><span class="imageFrame"><br />
		<span class="image"><br />
<img src="http://www.apfelkuh.de/wp-content/uploads/safari4.jpg" alt="safari4" title="safari4" width="100" height="100" class="alignnone size-full wp-image-687" /><br />
		</span><br />
		<span class="overlay"><br />
		</span><br />
	</span></a><strong>Der neue Safari von Apple ist nun herausgekommen und ich habe mir natürlich nicht nehmen lassen ihn einmal auszuprobieren. Ich bin zwar stets kritisch anderen Browsern ausser dem Firefox gegenüber aber der Safari hat es in sich. Doch seht selbst im zweiten Apfelkuh.de Apfelkast zum Thema: Safari 4.</strong></p>
<p>Es gibt ausser dem Video ncoh ein paar Sachen zu erwähnen, die ich im Video vergessen habe. Zum Beispiel die Flüssigkeit von Javascript-Animationen. Also Fotogalerien etc, was es da halt alles so im Netz gibt. Das läuft auf Safari ungelogen 10 mal so flüssig ohne einen einzigen Ruckler und als ob es 20 fps mehr hätte.</p>
<p>Für Mediengestalter ist folgendes relevant: Der Safari hat ein weit besseres Color-Management. Für alle die, die sich immer geärgert haben, dass die Bilder in unterschiedlichen Browsern immer anders aussehen als die Vorlage in Photoshop: Der Safari 4 schafft es nun endlich fast den gesamten Arbeitsfarbraum an Farben darzustellen. Der Firefox hingegen hängt immer noch über alles einen leichten Unbuntschleier&#8230; doch nun zum Video&#8230;</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=5217429&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=5217429&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object>
<p><a href="http://vimeo.com/5217429">Apfelkast: Safari 4 (vs. Mozilla Firefox 3)</a> from <a href="http://vimeo.com/user1923514">Manuel Graf</a> on <a href="http://vimeo.com">Vimeo</a>.</p>


<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul><li><a href='http://www.apfelkuh.de/429/10-unabdingbare-firefox-plugins-fur-web-developer' rel='bookmark' title='Permanent Link: 10+ unabdingbare Firefox Addons für Web Developer'>10+ unabdingbare Firefox Addons für Web Developer</a></li>
<li><a href='http://www.apfelkuh.de/754/trick-17-css-transparenz-fuer-alle-browse' rel='bookmark' title='Permanent Link: Trick 17: CSS-Transparenz für alle Browsertypen'>Trick 17: CSS-Transparenz für alle Browsertypen</a></li>
<li><a href='http://www.apfelkuh.de/583/mediengestalter-ap-2009-lernmaterial' rel='bookmark' title='Permanent Link: Mediengestalter Abschlussprüfung 2009 Lernmaterial'>Mediengestalter Abschlussprüfung 2009 Lernmaterial</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul>]]></content:encoded>
			<wfw:commentRss>http://www.apfelkuh.de/686/apfelkast-safari-4-vs-mozilla-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>18 Stunden noch: Das Macheist Mac OS Software Bundle</title>
		<link>http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle</link>
		<comments>http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle#comments</comments>
		<pubDate>Tue, 07 Apr 2009 08:45:08 +0000</pubDate>
		<dc:creator>Manuel Graf</dc:creator>
				<category><![CDATA[Mac Apps]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Macheist]]></category>

		<guid isPermaLink="false">http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle</guid>
		<description><![CDATA[Das Macheist Bundle #3 ist ein Mac OS Softwarepaket, mit 14 hochkarätigen Programmen, darunter auch Award- Gewinner wie Picturesque oder iSale iSale. Es ist für jeden Geschmack etwas dabei. Ob für Web Developer (Kinemac, Espresso, LittleSnapper), Designer (Picturesque, Kinemac), Podcaster (BoinxTV), Gamer (World of Goo, Cro-Mac Rally), Feedjunkies (Times), Musiker und Screencaster (WireTap tudio) oder [...]

<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul><li><a href='http://www.apfelkuh.de/321/rapid-web-prototyping-wireframing-iplotz' rel='bookmark' title='Permanent Link: Rapid Web Prototyping/ Wireframing: iPlotz'>Rapid Web Prototyping/ Wireframing: iPlotz</a></li>
<li><a href='http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle' rel='bookmark' title='Permanent Link: SML on Mac OSX (incl. TextMate Bundle)'>SML on Mac OSX (incl. TextMate Bundle)</a></li>
<li><a href='http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts' rel='bookmark' title='Permanent Link: Alle Mac OS X  Keyboard Shortcuts'>Alle Mac OS X  Keyboard Shortcuts</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.apfelkuh.de%2F425%2F18-stunden-noch-das-macheist-mac-os-software-bundle"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.apfelkuh.de%2F425%2F18-stunden-noch-das-macheist-mac-os-software-bundle&amp;source=Apfelkuh_de&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.apfelkuh.de/wp-content/uploads/picture-51.png" target="_blank"><img src="http://www.apfelkuh.de/wp-content/uploads/picture-51-300x126.png" alt="MacHeist Software Bundle 3" title="MacHeist Software Bundle 3" width="300" height="126" class="alignnone size-medium wp-image-424" /></a></p>
<p>Das <a href="http://www.macheist.com/bundle/" class="previewlink">Macheist Bundle #3</a> ist ein Mac OS Softwarepaket, mit 14 hochkarätigen Programmen, darunter auch Award- Gewinner wie <a href="http://www.acqualia.com/picturesque/" class="previewlink">Picturesque</a> oder iSale <a href="http://www.equinux.com/de/products/isale/index.html" class="previewlink">iSale</a>. Es ist für jeden Geschmack etwas dabei. </p>
<p>Ob für Web Developer (Kinemac, Espresso, LittleSnapper), Designer (Picturesque, Kinemac), Podcaster (BoinxTV), Gamer (World of Goo, Cro-Mac Rally), Feedjunkies (Times), Musiker und Screencaster (WireTap tudio) oder Leute die einfach nur an ihrem Mac arbeiten (The Hit List, PhoneView).<br />
Jede der Apps kostet gewöhnlich zwischen 20$ und 300$ und Macheist bietet all diese Programme zu dem wirklich günstgen preis von 39$ (knapp 30€) an. Zudem <strong>gehen 25% des Erlöses an Charities.</strong></p>
<p>ich und bereits 71690 andere Macuser haben bereits zugeschlagen udn die Apps haben es wirklich in sich.</p>


<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul><li><a href='http://www.apfelkuh.de/321/rapid-web-prototyping-wireframing-iplotz' rel='bookmark' title='Permanent Link: Rapid Web Prototyping/ Wireframing: iPlotz'>Rapid Web Prototyping/ Wireframing: iPlotz</a></li>
<li><a href='http://www.apfelkuh.de/868/sml-on-mac-osx-incl-textmate-bundle' rel='bookmark' title='Permanent Link: SML on Mac OSX (incl. TextMate Bundle)'>SML on Mac OSX (incl. TextMate Bundle)</a></li>
<li><a href='http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts' rel='bookmark' title='Permanent Link: Alle Mac OS X  Keyboard Shortcuts'>Alle Mac OS X  Keyboard Shortcuts</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul>]]></content:encoded>
			<wfw:commentRss>http://www.apfelkuh.de/425/18-stunden-noch-das-macheist-mac-os-software-bundle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alle Mac OS X  Keyboard Shortcuts</title>
		<link>http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts</link>
		<comments>http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts#comments</comments>
		<pubDate>Mon, 06 Apr 2009 11:55:49 +0000</pubDate>
		<dc:creator>Manuel Graf</dc:creator>
				<category><![CDATA[Mac Apps]]></category>
		<category><![CDATA[Mac OS]]></category>

		<guid isPermaLink="false">http://www.apfelkuh.de/?p=335</guid>
		<description><![CDATA[Wie zum Teufel erzeuge ich einen Force Quit in Mac OS? Apfel+Alt+Esc. Wie mache ich einen Screenshot? Apfel+Shift+3/4. Wie schließe ich Alle Fenster, wie Zeige ich mit der tastatur mein Dock an? Wie leere ich per Shortcut den Papierkorb? Hättet ihr alles gewusst? Viele Fragen, eine Antwort. Im Folgenden habe ich eine komplette Tabelle der [...]

<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul><li><a href='http://www.apfelkuh.de/248/apfelkuh-keycode-finder' rel='bookmark' title='Permanent Link: Apfelkuh KeyCode Finder'>Apfelkuh KeyCode Finder</a></li>
<li><a href='http://www.apfelkuh.de/263/standardanwendung-fur-leeren-dateityp-definieren-in-mac-os-x' rel='bookmark' title='Permanent Link: Standardanwendung für (leeren) Dateityp definieren in Mac OS X'>Standardanwendung für (leeren) Dateityp definieren in Mac OS X</a></li>
<li><a href='http://www.apfelkuh.de/816/svn-revert-zu-einer-fruheren-revision' rel='bookmark' title='Permanent Link: SVN Revert zu einer früheren Revision'>SVN Revert zu einer früheren Revision</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3>
<ul>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.apfelkuh.de%2F335%2Falle-mac-os-x-keyboard-shortcuts"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.apfelkuh.de%2F335%2Falle-mac-os-x-keyboard-shortcuts&amp;source=Apfelkuh_de&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts" rel="335/alle-mac-os-x-keyboard-shortcuts"><img src="http://www.apfelkuh.de/wp-content/uploads/liste-aller-mac-os-tastaturkurzel.png" alt="Liste Aller Mac Os Tastenkombinationen" title="Liste Aller Mac Os Tastenkombinationen" width="638" height="100" class="alignnone size-full wp-image-402" /></a><strong>Wie zum Teufel erzeuge ich einen Force Quit in Mac OS? Apfel+Alt+Esc. Wie mache ich einen Screenshot? Apfel+Shift+3/4. Wie schließe ich Alle Fenster, wie Zeige ich mit der tastatur mein Dock an? Wie leere ich per Shortcut den Papierkorb?</strong></p>
<p>Hättet ihr alles gewusst? Viele Fragen, eine Antwort. Im Folgenden habe ich eine komplette Tabelle der Tastaturkürzel (Keyboard Shortcuts) in Mac OS X bereit gestellt. Guckt sie euch durch, es sind unter andrem sehr nützliche Tastenkombination dabei. Die aktuelle Liste gilt für Mac OS X 10.5 Leopard. Viele dürften jedoch auch in früheren Versionen funktionieren.<br />
<span id="more-335"></span></p>
<p> <a href="http://www.apfelkuh.de/material/apfelkuh_mac_os_shortcuts.pdf">Download PDF</a></p>
<p>eine Deutsche Übersetzung findet sich <a href="http://docs.info.apple.com/article.html?artnum=75459-de" class="previewlink">hier</a> 	</p>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Startup</th>
</tr>
<tr class="odd">
<td><b>Keystroke</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>Press X during startup</td>
<td>Force Mac OS X startup</td>
</tr>
<tr class="odd">
<td>Press Option-Command-Shift-Delete&raquo;<br />
            during startup</td>
<td>Bypass primary startup volume and seek a different startup volume (such as a CD or external disk)</td>
</tr>
<tr>
<td>Press C during startup</td>
<td>Start up from a CD that has a system folder</td>
</tr>
<tr class="odd">
<td>Press N during startup</td>
<td>Attempt to start up from a compatible network server (NetBoot)</td>
</tr>
<tr>
<td>Press T during startup</td>
<td>Start up in FireWire Target Disk mode</td>
</tr>
<tr class="odd">
<td>Press Shift during startup</td>
<td>start up in Safe Boot mode and temporarily disable login items and non-essential kernel extension files (Mac OS X 10.2 and later)</td>
</tr>
<tr>
<td>Press Command-V during startup</td>
<td>Start up in Verbose mode.</td>
</tr>
<tr class="odd">
<td>Press Command-S during startup</td>
<td>Start up in Single-User mode</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Finder window</th>
</tr>
<tr class="odd">
<td><b>Keyboard shortcut</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>Command-W</td>
<td>Close Window</td>
</tr>
<tr class="odd">
<td>Option-Command-W</td>
<td>Close all Windows</td>
</tr>
<tr>
<td>Command-Right Arrow</td>
<td>Expand folder (list view)</td>
</tr>
<tr class="odd">
<td>Option-Command-Right Arrow</td>
<td>Expand folder and nested subfolders (list view)</td>
</tr>
<tr>
<td>Command-Left Arrow</td>
<td>Collapse Folder (list view)</td>
</tr>
<tr class="odd">
<td>Option-Command-Up Arrow</td>
<td>Open parent folder and close current window</td>
</tr>
<tr class="odd">
<td valign="top">(Assigned in Keyboard &#038; Mouse preferences)</td>
<td valign="top">Show Package Contents (of selected file in Mac OS X 10.5 or later only). To create this contextual menu shortcut, open Keyboard &#038; Mouse preferences in Mac OS X 10.5, click Keyboard Shortcuts, click the &#8220;+&#8221; button, choose Finder.app as the Application, and type &#8220;Show Package Contents&#8221; (exactly), and set whichever shortcut you want, such as Command-Control-S.</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Menu commands</th>
</tr>
<tr class="odd">
<td><b>Keyboard shortcut</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>Shift-Command-Q</td>
<td>Apple Menu&raquo;<br />
                 Log out</td>
</tr>
<tr class="odd">
<td>Shift-Option-Command-Q</td>
<td>Apple Menu&raquo;<br />
                 Log out immediately</td>
</tr>
<tr>
<td>Shift-Command-Delete</td>
<td>Finder Menu&raquo;<br />
                 Empty Trash</td>
</tr>
<tr class="odd">
<td>Option-Shift-Command-Delete</td>
<td>Finder Menu&raquo;<br />
                 Empty Trash without dialog</td>
</tr>
<tr>
<td>Command-H</td>
<td>Finder Menu&raquo;<br />
                 Hide Finder</td>
</tr>
<tr class="odd">
<td>Option-Command-H</td>
<td>Finder Menu&raquo;<br />
                 Hide Others</td>
</tr>
<tr>
<td>Command-N</td>
<td>File Menu&raquo;<br />
                 New Finder window</td>
</tr>
<tr class="odd">
<td>Shift-Command-N</td>
<td>File Menu&raquo;<br />
                 New Folder</td>
</tr>
<tr>
<td>Command-O</td>
<td>File Menu&raquo;<br />
                 Open</td>
</tr>
<tr class="odd">
<td>Command-S</td>
<td>File Menu&raquo;<br />
                 Save</td>
</tr>
<tr>
<td>Shift-Command-S</td>
<td>File Menu&raquo;<br />
                 Save as</td>
</tr>
<tr class="odd">
<td>Command-P</td>
<td>File Menu&raquo;<br />
                 Print</td>
</tr>
<tr>
<td>Command-W</td>
<td>File Menu&raquo;<br />
                 Close Window</td>
</tr>
<tr class="odd">
<td>Option-Command-W</td>
<td>File Menu&raquo;<br />
                 Close all Windows</td>
</tr>
<tr>
<td>Command-I</td>
<td>File Menu&raquo;<br />
                 Get Info</td>
</tr>
<tr class="odd">
<td>Option-Command-I</td>
<td>File Menu&raquo;<br />
                 Show Attributes Inspector</td>
</tr>
<tr>
<td>Command-D</td>
<td>File Menu&raquo;<br />
                 Duplicate</td>
</tr>
<tr class="odd">
<td>Command-L</td>
<td>File Menu&raquo;<br />
                 Make Alias</td>
</tr>
<tr>
<td>Command-R</td>
<td>File Menu&raquo;<br />
                 Show original</td>
</tr>
<tr class="odd">
<td>Command-T</td>
<td>File Menu&raquo;<br />
                 Add to Favorites (Mac OS X 10.2.8 or earlier), Add to Sidebar (Mac OS X 10.3 or later—use Shift-Command-T for Add to Favorites)</td>
</tr>
<tr>
<td>Command-Delete</td>
<td>File Menu&raquo;<br />
                 Move to Trash</td>
</tr>
<tr class="odd">
<td>Command-E</td>
<td>File Menu&raquo;<br />
                 Eject</td>
</tr>
<tr>
<td>Command-F</td>
<td>File Menu&raquo;<br />
                 Find</td>
</tr>
<tr class="odd">
<td>Command-Z</td>
<td>Edit Menu&raquo;<br />
                 Undo</td>
</tr>
<tr>
<td>Command-X</td>
<td>Edit Menu&raquo;<br />
                 Cut</td>
</tr>
<tr class="odd">
<td>Command-C</td>
<td>Edit Menu&raquo;<br />
                 Copy</td>
</tr>
<tr>
<td>Command-V</td>
<td>Edit Menu&raquo;<br />
                 Paste</td>
</tr>
<tr class="odd">
<td>Command-A</td>
<td>Edit Menu&raquo;<br />
                 Select All</td>
</tr>
<tr>
<td>Command-1</td>
<td>View Menu&raquo;<br />
                 View as Icons</td>
</tr>
<tr class="odd">
<td>Command-2</td>
<td>View Menu&raquo;<br />
                 View as List</td>
</tr>
<tr>
<td>Command-3</td>
<td>View Menu&raquo;<br />
                 View as Columns</td>
</tr>
<tr class="odd">
<td>Command-B</td>
<td>View Menu&raquo;<br />
                 Hide Toolbar</td>
</tr>
<tr>
<td>Command-J</td>
<td>View Menu&raquo;<br />
                 Show View Options</td>
</tr>
<tr class="odd">
<td>Command &#8211; [</td>
<td>Go Menu&raquo;<br />
                 Back</td>
</tr>
<tr>
<td>Command - ]</td>
<td>Go Menu&raquo;<br />
                 Forward</td>
</tr>
<tr class="odd">
<td>Shift-Command-C</td>
<td>Go Menu&raquo;<br />
                 Computer</td>
</tr>
<tr>
<td>Shift-Command-H</td>
<td>Go Menu&raquo;<br />
                 Home</td>
</tr>
<tr class="odd">
<td>Shift-Command-I</td>
<td>Go Menu&raquo;<br />
                 iDisk</td>
</tr>
<tr>
<td>Shift-Command-A</td>
<td>Go Menu&raquo;<br />
                 Applications</td>
</tr>
<tr class="odd">
<td>Shift-Command-F</td>
<td>Go Menu&raquo;<br />
                 Favorites</td>
</tr>
<tr>
<td>Shift-Command-G</td>
<td>Go Menu&raquo;<br />
                 Goto Folder</td>
</tr>
<tr class="odd">
<td>Command-K</td>
<td>Go Menu&raquo;<br />
                 Connect to Server</td>
</tr>
<tr>
<td>Command-M</td>
<td>Window Menu&raquo;<br />
                 Minimize Window</td>
</tr>
<tr class="odd">
<td>Option-Command-M</td>
<td>Window Menu&raquo;<br />
                 Minimize All Windows</td>
</tr>
<tr>
<td>Command-?</td>
<td>Help Menu&raquo;<br />
                 Open Mac Help</td>
</tr>
<tr class="odd">
<td>Command-Space</td>
<td>Open Spotlight (Mac OS X 10.4 or later)</td>
</tr>
<tr>
<td>Command-esc</td>
<td>Front Row&raquo;<br />
                 Activates Front Row for certain Apple computers</td>
</tr>
</tbody>
</table>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Universal Access and <a href="http://www.apple.com/support/country/" onclick='s_objectID="http://www.apple.com/support/country/_1";return this.s_oc?this.s_oc(e):true'>VoiceOver</a></th>
</tr>
<tr class="odd">
<td><b>Keyboard shortcut</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>Option-Command-8</td>
<td>Turn on Zoom</td>
</tr>
<tr class="odd">
<td>Option-Command-+ (plus)</td>
<td>Zoom in</td>
</tr>
<tr>
<td>Option-Command&#8211; (minus)</td>
<td>Zoom out</td>
</tr>
<tr class="odd">
<td>Control-Option-Command-8</td>
<td>Switch to White on Black</td>
</tr>
<tr>
<td>Control-F1</td>
<td>Turn on Full Keyboard Access&raquo;<br />
            When Full Keyboard Access is turned on, you can use the key combinations listed in the table below from the Finder.</td>
</tr>
<tr class="odd">
<td>Control-F2</td>
<td>Full Keyboard Access&raquo;<br />
                 Highlight Menu</td>
</tr>
<tr>
<td>Control-F3</td>
<td>Full Keyboard Access&raquo;<br />
                 Highlight Dock</td>
</tr>
<tr class="odd">
<td>Control-F4</td>
<td>Full Keyboard Access&raquo;<br />
                 Highlight Window (active) or next window behind it</td>
</tr>
<tr>
<td>Control-F5</td>
<td>Full Keyboard Access&raquo;<br />
                 Highlight Toolbar</td>
</tr>
<tr class="odd">
<td>Control-F6</td>
<td>Full Keyboard Access&raquo;<br />
                 Highlight Utility window (palette)</td>
</tr>
<tr>
<td>Command-F5 or fn-Command-F5</td>
<td>Turn VoiceOver on or off (Mac OS X 10.4 or later)</td>
</tr>
<tr class="odd">
<td>Control-Option-F8 or fn-Control-Option-F8</td>
<td>Open VoiceOver Utility (Mac OS X 10.4 or later)</td>
</tr>
<tr>
<td>Control-Option-F7 or fn-Control-option-F7</td>
<td>Display VoiceOver menu (Mac OS X 10.4 or later)</td>
</tr>
<tr class="odd">
<td>Control-Option-; &raquo;<br />
            or fn-Control-option-;</td>
<td>Enable/disable VoiceOver Control-Option lock (Mac OS X 10.4 or later)</td>
</tr>
</tbody>
</table>
<p>The Universal Access preference pane allows you to turn on Mouse Keys. When Mouse Keys is on, you can use the numeric keypad to move the mouse. If your computer doesn&#8217;t have a numeric keypad, use the Fn (function) key.</p>
</p>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Mouse Keys</th>
</tr>
<tr class="odd">
<td><b>Keystroke</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>8</td>
<td>Move Up</td>
</tr>
<tr class="odd">
<td>2</td>
<td>Move Down</td>
</tr>
<tr>
<td>4</td>
<td>Move Left</td>
</tr>
<tr class="odd">
<td>6</td>
<td>Move Right</td>
</tr>
<tr>
<td>1, 3, 7, and 9</td>
<td>Move Diagonally</td>
</tr>
<tr class="odd">
<td>5</td>
<td>Press Mouse Button</td>
</tr>
<tr>
<td>0</td>
<td>Hold Mouse Button</td>
</tr>
<tr class="odd">
<td>. (period on keypad)</td>
<td>Release Mouse Button (use after pressing 0)</td>
</tr>
</tbody>
</table>
</p>
<table width="100%" cellspacing="0" border="0" class = "list">
<tbody>
<tr>
<th colspan="2">Other Commands</th>
</tr>
<tr class="odd">
<td><b>Keystroke</b></td>
<td><b>Description</b></td>
</tr>
<tr>
<td>Option-Command-D</td>
<td>Show/Hide Dock</td>
</tr>
<tr class="odd">
<td>Command-Tab</td>
<td>Switch application</td>
</tr>
<tr>
<td>tab</td>
<td>Highlight next item</td>
</tr>
<tr class="odd">
<td>Command-Up Arrow</td>
<td>Move up one directory</td>
</tr>
<tr>
<td>Command-Down Arrow</td>
<td>Move down one directory</td>
</tr>
<tr class="odd">
<td>Page Up or Control-Up Arrow</td>
<td>Move up one page</td>
</tr>
<tr>
<td>Page Down or Control-Down Arrow</td>
<td>Move down one page</td>
</tr>
<tr class="odd">
<td>Option-Drag</td>
<td>Copy to new location</td>
</tr>
<tr>
<td>Option-Command-Drag</td>
<td>Make alias in new location</td>
</tr>
<tr class="odd">
<td>Command-Drag</td>
<td>Move to new location without copying</td>
</tr>
<tr>
<td>Shift-Command-C</td>
<td>Show Colors palette in application</td>
</tr>
<tr class="odd">
<td>Command-T</td>
<td>Show Font palette in application</td>
</tr>
<tr>
<td>Command-Shift-3</td>
<td>Take a picture of the screen</td>
</tr>
<tr class="odd">
<td>Command-Shift-4</td>
<td>Take a picture of the selection</td>
</tr>
<tr>
<td>Command-Shift-4, then press Control while selecting</td>
<td>Take a picture of the screen, place in Clipboard</td>
</tr>
<tr class="odd">
<td>Command-Shift-4, then Spacebar</td>
<td>Take a picture of the selected window</td>
</tr>
<tr>
<td>Option-Command-esc</td>
<td>Force Quit</td>
</tr>
<tr class="odd">
<td>Control-Eject</td>
<td>Restart, Sleep, Shutdown dialog box</td>
</tr>
<tr>
<td>Control-Command-Eject</td>
<td>Quit all applications and restart</td>
</tr>
<tr class="odd">
<td>Option-Command-Eject <b>or</b>&raquo;<br />
            Option-Command-Power</td>
<td>Sleep</td>
</tr>
<tr>
<td>Command-click window toolbar button (upper right corner)</td>
<td>Cycle through available views for the window&#8217;s toolbar (dependant on the nature of the Finder or application window)</td>
</tr>
<tr class="odd">
<td>Command-`</td>
<td>Cycle through windows in application or Finder (if more than one window is open)</td>
</tr>
<tr>
<td>Function-Delete (portables only&#8211;PowerBook, iBook, MacBook, MacBook Pro)</td>
<td>Forward Delete (delete the character to the right of your cursor)</td>
</tr>
</tbody>
</table>
<p><a href="http://www.apfelkuh.de/material/apfelkuh_mac_os_shortcuts.pdf">Download PDF</a></p>
<p class="source"> Quelle: <a href="http://support.apple.com/kb/HT1343" class="previewlink">Apple.com Mac Support</a></p>


<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul><li><a href='http://www.apfelkuh.de/248/apfelkuh-keycode-finder' rel='bookmark' title='Permanent Link: Apfelkuh KeyCode Finder'>Apfelkuh KeyCode Finder</a></li>
<li><a href='http://www.apfelkuh.de/263/standardanwendung-fur-leeren-dateityp-definieren-in-mac-os-x' rel='bookmark' title='Permanent Link: Standardanwendung für (leeren) Dateityp definieren in Mac OS X'>Standardanwendung für (leeren) Dateityp definieren in Mac OS X</a></li>
<li><a href='http://www.apfelkuh.de/816/svn-revert-zu-einer-fruheren-revision' rel='bookmark' title='Permanent Link: SVN Revert zu einer früheren Revision'>SVN Revert zu einer früheren Revision</a></li>
<div class="fadeRule"></div><h3>Ähnliche Artikel:</h3><p><ul>]]></content:encoded>
			<wfw:commentRss>http://www.apfelkuh.de/335/alle-mac-os-x-keyboard-shortcuts/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

