<?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: PDFs mal schnell Taggen</title>
	<atom:link href="http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/feed/" rel="self" type="application/rss+xml" />
	<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/</link>
	<description></description>
	<lastBuildDate>Wed, 24 Feb 2010 08:52:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: adam</title>
		<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/comment-page-1/#comment-4592</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://hubionmac.com/wordpress/?p=931#comment-4592</guid>
		<description>hiya. thanks for the tool. would really really appreciate it if you can repeat the instructions again in english :) thanks for the tool!</description>
		<content:encoded><![CDATA[<p>hiya. thanks for the tool. would really really appreciate it if you can repeat the instructions again in english :) thanks for the tool!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hubionmac.com &#187; Kleiner Bugfix in PDF MetaEdit</title>
		<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/comment-page-1/#comment-4037</link>
		<dc:creator>hubionmac.com &#187; Kleiner Bugfix in PDF MetaEdit</dc:creator>
		<pubDate>Mon, 07 Sep 2009 22:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://hubionmac.com/wordpress/?p=931#comment-4037</guid>
		<description>[...] September, 2009 (00:04) &#124; Software I Use, hubionmac.com, pdf &#124; By: hubi  PDF MetaEdit Ist ein kleines Tool, dass ich zum Editieren der Meta-Daten von PDFs nutze, damit diese leichter [...]</description>
		<content:encoded><![CDATA[<p>[...] September, 2009 (00:04) | Software I Use, hubionmac.com, pdf | By: hubi  PDF MetaEdit Ist ein kleines Tool, dass ich zum Editieren der Meta-Daten von PDFs nutze, damit diese leichter [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VLC</title>
		<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/comment-page-1/#comment-3806</link>
		<dc:creator>VLC</dc:creator>
		<pubDate>Thu, 30 Jul 2009 10:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://hubionmac.com/wordpress/?p=931#comment-3806</guid>
		<description>Gut!</description>
		<content:encoded><![CDATA[<p>Gut!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hubi</title>
		<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/comment-page-1/#comment-3641</link>
		<dc:creator>Hubi</dc:creator>
		<pubDate>Sat, 13 Jun 2009 08:33:55 +0000</pubDate>
		<guid isPermaLink="false">http://hubionmac.com/wordpress/?p=931#comment-3641</guid>
		<description>Ja, auch möglich... Der Weg wäre mir aber zu speziell, die Keywords aus den PDF Tags kann jeder auslesen, deshalb mache ich ja pdfs draus. Spotlight Kommentare werden aber nicht in der Datei selben gespeichert.
Was würde ich also machen, wenn ich auf einmal auf Windows 7 umsteige ;-)</description>
		<content:encoded><![CDATA[<p>Ja, auch möglich... Der Weg wäre mir aber zu speziell, die Keywords aus den PDF Tags kann jeder auslesen, deshalb mache ich ja pdfs draus. Spotlight Kommentare werden aber nicht in der Datei selben gespeichert.<br />
Was würde ich also machen, wenn ich auf einmal auf Windows 7 umsteige ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fidel</title>
		<link>http://hubionmac.com/wordpress/2009/06/pdfs-mal-schnell-taggen/comment-page-1/#comment-3636</link>
		<dc:creator>fidel</dc:creator>
		<pubDate>Fri, 12 Jun 2009 10:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://hubionmac.com/wordpress/?p=931#comment-3636</guid>
		<description>hi,

wenns dir nur um die Auffindbarkeit via Spotlight gehen würde ... würde sich das ganze auch via Finder-Selections and Spotlight Tags im Get-Info Feld leicht halbautomatisch erschlagen lassen a la

&lt;code&gt;
tell application &quot;Finder&quot;
	activate
	
	-- get selected items
	set fileList to selection
	
	-- Check if there is something selected in Finder
	if (count result) is 0 then
		try
			get (target of front Finder window) as alias
		on error
			choose folder with prompt &quot;Set comments of files in this folder:&quot;
		end try
		
		try
			set theFolder to result
			set fileList to every file of folder (result) as alias list
		end try
	end if
	
	-- Comment Dialog
	display dialog &quot;Comment:&quot; default answer &quot;&quot; buttons {&quot;Overwrite&quot;, &quot;Cancel&quot;, &quot;Append&quot;} default button 3 with title &quot;Set Spotlight Comments&quot;
	
	-- Save Result
	set userInput to the result
	set newComment to text returned of userInput
	
	
	-- If Overwrite
	if (button returned of userInput) is &quot;Overwrite&quot; then
		if (class of first item of fileList) is alias then
			set comment of every file of folder theFolder to newComment
		else
			repeat with thisFile in fileList
				set comment of thisFile to newComment
			end repeat
		end if
	else
		-- If Append
		repeat with thisFile in fileList
			tell thisFile
				if length of (comment as text) is not 0 then
					get &quot;, &quot; &amp; newComment
				else
					get newComment
				end if
				set comment to (comment &amp; result)
			end tell
		end repeat
	end if
end tell
&lt;/code&gt;


Gruß
fidel</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>wenns dir nur um die Auffindbarkeit via Spotlight gehen würde ... würde sich das ganze auch via Finder-Selections and Spotlight Tags im Get-Info Feld leicht halbautomatisch erschlagen lassen a la</p>
<p><code><br />
tell application "Finder"<br />
	activate</p>
<p>	-- get selected items<br />
	set fileList to selection</p>
<p>	-- Check if there is something selected in Finder<br />
	if (count result) is 0 then<br />
		try<br />
			get (target of front Finder window) as alias<br />
		on error<br />
			choose folder with prompt "Set comments of files in this folder:"<br />
		end try</p>
<p>		try<br />
			set theFolder to result<br />
			set fileList to every file of folder (result) as alias list<br />
		end try<br />
	end if</p>
<p>	-- Comment Dialog<br />
	display dialog "Comment:" default answer "" buttons {"Overwrite", "Cancel", "Append"} default button 3 with title "Set Spotlight Comments"</p>
<p>	-- Save Result<br />
	set userInput to the result<br />
	set newComment to text returned of userInput</p>
<p>	-- If Overwrite<br />
	if (button returned of userInput) is "Overwrite" then<br />
		if (class of first item of fileList) is alias then<br />
			set comment of every file of folder theFolder to newComment<br />
		else<br />
			repeat with thisFile in fileList<br />
				set comment of thisFile to newComment<br />
			end repeat<br />
		end if<br />
	else<br />
		-- If Append<br />
		repeat with thisFile in fileList<br />
			tell thisFile<br />
				if length of (comment as text) is not 0 then<br />
					get ", " &amp; newComment<br />
				else<br />
					get newComment<br />
				end if<br />
				set comment to (comment &amp; result)<br />
			end tell<br />
		end repeat<br />
	end if<br />
end tell<br />
</code></p>
<p>Gruß<br />
fidel</p>
]]></content:encoded>
	</item>
</channel>
</rss>
