<?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: Splitting PDF Pages</title>
	<atom:link href="http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/</link>
	<description>Stuff, stuff and more stuff</description>
	<lastBuildDate>Tue, 07 Feb 2012 17:56:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Todd</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1201</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Sun, 30 Oct 2011 15:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1201</guid>
		<description>Working with Acrobat Pro 9.4.6 on a Mac. The Split Pages script is working like a charm, but I cannot get the Reorder Pages script to work at all. It doesn&#039;t even appear in my Document menu, which leads me to believe I haven&#039;t created the Javascript correctly, and I can&#039;t figure out what I&#039;m doing wrong. Can someone send me the script file, or post a link to it?
Thanks much.</description>
		<content:encoded><![CDATA[<p>Working with Acrobat Pro 9.4.6 on a Mac. The Split Pages script is working like a charm, but I cannot get the Reorder Pages script to work at all. It doesn&#8217;t even appear in my Document menu, which leads me to believe I haven&#8217;t created the Javascript correctly, and I can&#8217;t figure out what I&#8217;m doing wrong. Can someone send me the script file, or post a link to it?<br />
Thanks much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: What to do when readers should be single. &#171; Colecandoo!</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1195</link>
		<dc:creator>What to do when readers should be single. &#171; Colecandoo!</dc:creator>
		<pubDate>Thu, 06 Oct 2011 09:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1195</guid>
		<description>[...] wordpresser Karl Heinz Kremer has a purely Acrobat solution to this issue. His post can be found here. Rate this:  Share this:FacebookPrintEmailLike this:LikeBe the first to like this [...]</description>
		<content:encoded><![CDATA[<div style="padding-left: 20px; ">
<p>[...] wordpresser Karl Heinz Kremer has a purely Acrobat solution to this issue. His post can be found here. Rate this:  Share this:FacebookPrintEmailLike this:LikeBe the first to like this [...]</p>
</div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Lush</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1190</link>
		<dc:creator>Alex Lush</dc:creator>
		<pubDate>Mon, 03 Oct 2011 14:07:05 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1190</guid>
		<description>Great job...just what I needed! Thanks.</description>
		<content:encoded><![CDATA[<p>Great job&#8230;just what I needed! Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gebhard</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1175</link>
		<dc:creator>Gebhard</dc:creator>
		<pubDate>Thu, 14 Jul 2011 12:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1175</guid>
		<description>Hello togther,
I use this wonderfull script and want to modify it a little bit by changing the first and last Page (TitleandBacktitle).
I use the following code for this found on Adobes Webside:
app.addMenuItem({ cName: &quot;Reverse&quot;, cParent: &quot;Document&quot;, cExec: &quot;PPReversePages();&quot;, cEnable: &quot;event.rc = (event.target != null);&quot;, nPos: 0
});
function PPReversePages()
{
    var t = app.thermometer;
    t.duration = this.numPages;
    t.begin();
    for (i = this.numPages - 1; i &gt;= 0; i--)
    {
        t.value = (i-this.numPages)*-1;
        this.movePage(i);
        t.text = &#039;Moving page &#039; + (i + 1);
    }
    t.end();    
}// JavaScript Document

Using the script standalone is runs perfect but I want to integrate it in the splitpages script. I´m not able to get this run because I´m not so fit in Java.
So is it possible to combine this scripts?
Another Question is how to compare the original PDFname I always get a Acrobat *.tmp file so I have always to rename the Pdfs manually
Thank you very much</description>
		<content:encoded><![CDATA[<p>Hello togther,<br />
I use this wonderfull script and want to modify it a little bit by changing the first and last Page (TitleandBacktitle).<br />
I use the following code for this found on Adobes Webside:<br />
app.addMenuItem({ cName: &#8220;Reverse&#8221;, cParent: &#8220;Document&#8221;, cExec: &#8220;PPReversePages();&#8221;, cEnable: &#8220;event.rc = (event.target != null);&#8221;, nPos: 0<br />
});<br />
function PPReversePages()<br />
{<br />
    var t = app.thermometer;<br />
    t.duration = this.numPages;<br />
    t.begin();<br />
    for (i = this.numPages &#8211; 1; i &gt;= 0; i&#8211;)<br />
    {<br />
        t.value = (i-this.numPages)*-1;<br />
        this.movePage(i);<br />
        t.text = &#8216;Moving page &#8216; + (i + 1);<br />
    }<br />
    t.end();<br />
}// JavaScript Document</p>
<p>Using the script standalone is runs perfect but I want to integrate it in the splitpages script. I´m not able to get this run because I´m not so fit in Java.<br />
So is it possible to combine this scripts?<br />
Another Question is how to compare the original PDFname I always get a Acrobat *.tmp file so I have always to rename the Pdfs manually<br />
Thank you very much</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Greet</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1168</link>
		<dc:creator>Matthew Greet</dc:creator>
		<pubDate>Mon, 02 May 2011 11:09:31 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1168</guid>
		<description>Superb!  Doesn&#039;t quite work as is on Acrobat X Windows because the Document menu no longer exists.  Simply edit the script to use &#039;File&#039; as the parent menu.</description>
		<content:encoded><![CDATA[<p>Superb!  Doesn&#8217;t quite work as is on Acrobat X Windows because the Document menu no longer exists.  Simply edit the script to use &#8216;File&#8217; as the parent menu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philip</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1158</link>
		<dc:creator>Philip</dc:creator>
		<pubDate>Tue, 05 Apr 2011 09:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1158</guid>
		<description>Possibly the greates thing since sliced bread! Thank you all so much!</description>
		<content:encoded><![CDATA[<p>Possibly the greates thing since sliced bread! Thank you all so much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason V</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1156</link>
		<dc:creator>Jason V</dc:creator>
		<pubDate>Mon, 28 Mar 2011 00:16:55 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1156</guid>
		<description>Works for me on Acrobat 10.0 on PC.  Amazingly useful, can&#039;t thank you enough.</description>
		<content:encoded><![CDATA[<p>Works for me on Acrobat 10.0 on PC.  Amazingly useful, can&#8217;t thank you enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin flashman</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1155</link>
		<dc:creator>colin flashman</dc:creator>
		<pubDate>Wed, 09 Mar 2011 08:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1155</guid>
		<description>that did the trick. thank you so much for that :D</description>
		<content:encoded><![CDATA[<p>that did the trick. thank you so much for that <img src='http://www.khk.net/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan S</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1154</link>
		<dc:creator>Stefan S</dc:creator>
		<pubDate>Tue, 08 Mar 2011 11:23:02 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1154</guid>
		<description>@Colin: Go to Preferences – JavaScript and enable JS from menu items (or similar, don&#039;t have the exact wordings…). Worked well for me :-)</description>
		<content:encoded><![CDATA[<p>@Colin: Go to Preferences – JavaScript and enable JS from menu items (or similar, don&#8217;t have the exact wordings…). Worked well for me <img src='http://www.khk.net/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: colin flashman</title>
		<link>http://www.khk.net/wordpress/2009/03/30/splitting-pdf-pages/comment-page-1/#comment-1126</link>
		<dc:creator>colin flashman</dc:creator>
		<pubDate>Tue, 23 Nov 2010 08:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://khk.net/wordpress/?p=306#comment-1126</guid>
		<description>it&#039;s not working for me sadly :(, i keep getting &quot;An internal error occurred.&quot;

working on acrobat 9.0 on a mac 10.6.4. acrobat also has enfocus pitstop plug-in</description>
		<content:encoded><![CDATA[<p>it&#8217;s not working for me sadly <img src='http://www.khk.net/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> , i keep getting &#8220;An internal error occurred.&#8221;</p>
<p>working on acrobat 9.0 on a mac 10.6.4. acrobat also has enfocus pitstop plug-in</p>
]]></content:encoded>
	</item>
</channel>
</rss>

