<?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>James Revillini &#187; software</title>
	<atom:link href="http://james.revillini.com/tag/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://james.revillini.com</link>
	<description>Say 'no' to styrofoam.</description>
	<lastBuildDate>Fri, 15 Oct 2010 12:24:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PDFaliscious Macro for Word 2007</title>
		<link>http://james.revillini.com/2010/03/30/pdfaliscious-macro-for-word-2007/</link>
		<comments>http://james.revillini.com/2010/03/30/pdfaliscious-macro-for-word-2007/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:56:44 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[macros]]></category>
		<category><![CDATA[microsoft word 2007]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://james.revillini.com/2010/03/30/pdfaliscious-macro-for-word-2007/</guid>
		<description><![CDATA[Want a single click button that will take your document, save it to PDF in a certain folder, then close the current document? It&#8217;s great when you need to machine-gun thrrough a bunch of document conversions. Here&#8217;s how: 1) open a word document 2) click the View tab in the Ribbon 3) click the Macros [...]]]></description>
			<content:encoded><![CDATA[<p>Want a single click button that will take your document, save it to PDF in a certain folder, then close the current document?  It&#8217;s great when you need to machine-gun thrrough a bunch of document conversions.</p>
<p>Here&#8217;s how:</p>
<p>1) open a word document<br />
2) click the View tab in the Ribbon<br />
3) click the Macros button, then click Record New Macro<br />
4) Give it the name &#8216;PDFaliscious&#8217; (don&#8217;t worry, you&#8217;ll never need to actually refer to or type that word)<br />
5) Click the &#8216;assign to button&#8217; button, then move PDFaliscious to the right-side list of commands (this will keep it within single-click access no matter where you are in word by adding it to the quick-access bar)<br />
7) Click OK (you&#8217;re now in macro record mode)<br />
 <img src='http://james.revillini.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Click Macro again in the View tab and select Stop Recording<br />
9) Click Macro AGAIN in the View tab and select View Macros<br />
10) Click PDFaliscious and then Edit<br />
11) Highlight everything from Sub PDFaliscious() to the next End Sub (about 15 lines) and delete it.<br />
12) Paste in the following</p>
<pre>
<div id="_mcePaste">Sub PDFaliscious()</div>
<div id="_mcePaste">'</div>
<div id="_mcePaste">' PDFaliscious Macro</div>
<div id="_mcePaste">'</div>
<div id="_mcePaste">'</div>
<div id="_mcePaste">    ActiveDocument.ExportAsFixedFormat OutputFileName:= _</div>
<div id="_mcePaste">        ActiveDocument.Path &amp; ActiveDocument.Name &amp; ".pdf" _</div>
<div id="_mcePaste">        , ExportFormat:=wdExportFormatPDF, OpenAfterExport:=False, OptimizeFor:= _</div>
<div id="_mcePaste">        wdExportOptimizeForPrint, Range:=wdExportAllDocument, From:=1, To:=1, _</div>
<div id="_mcePaste">        Item:=wdExportDocumentContent, IncludeDocProps:=True, KeepIRM:=True, _</div>
<div id="_mcePaste">        CreateBookmarks:=wdExportCreateNoBookmarks, DocStructureTags:=True, _</div>
<div id="_mcePaste">        BitmapMissingFonts:=True, UseISO19005_1:=False</div>
<div id="_mcePaste">    ActiveDocument.Close</div>
<div id="_mcePaste">End Sub</div>
<div></div>
</pre>
<p>13) Close the VB Editor.</p>
<p>Whenever you want to run this, click the new little yellow icon in the quick access toolbar, right next to the Microsoft soothing lozenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://james.revillini.com/2010/03/30/pdfaliscious-macro-for-word-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIRECT link to download JRE5 Update 20-something</title>
		<link>http://james.revillini.com/2010/02/22/direct-link-to-download-jre5-update-20-something/</link>
		<comments>http://james.revillini.com/2010/02/22/direct-link-to-download-jre5-update-20-something/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 21:48:43 +0000</pubDate>
		<dc:creator>james</dc:creator>
				<category><![CDATA[uncategorized]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jre]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://james.revillini.com/2010/02/22/direct-link-to-download-jre5-update-20-something/</guid>
		<description><![CDATA[http://java.sun.com/javase/downloads/5u22/jre It&#8217;s complete bullshit that you have to fill out a form to get an e-mail link to the download. This post goes out to all the devs who are NOT GOING TO FILL OUT THAT FORM. Shove it, Java, just shove it.]]></description>
			<content:encoded><![CDATA[<p>http://java.sun.com/javase/downloads/5u22/jre</p>
<p>It&#8217;s complete bullshit that you have to fill out a form to get an e-mail link to the download.  This post goes out to all the devs who are NOT GOING TO FILL OUT THAT FORM.  </p>
<p>Shove it, Java, just shove it.</p>
]]></content:encoded>
			<wfw:commentRss>http://james.revillini.com/2010/02/22/direct-link-to-download-jre5-update-20-something/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

