<?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>MakeUseOf &#187; documents</title>
	<atom:link href="http://www.makeuseof.com/tags/documents/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:31:42 +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>How To Integrate Excel Data Into A Word Document</title>
		<link>http://www.makeuseof.com/tag/integrate-excel-data-word-document/</link>
		<comments>http://www.makeuseof.com/tag/integrate-excel-data-word-document/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 19:01:15 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft excel]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98678</guid>
		<description><![CDATA[During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around. This is how people often produce written reports based on data that’s accumulated and updated in an Excel spreadsheet. In this article, I’m going to dive a little more into the background VBA scripting that allows you to actually program connections between data in Excel and Word.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/womancomputer.png?323f2c" alt="" />During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around.</p>
<p>This is how people often produce written reports based on data that&#8217;s accumulated and updated in an Excel spreadsheet. We&#8217;ve offered a lot of really cool tips and tools for Excel over the years, such as Saikat&#8217;s article on producing <a href="http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/">professional looking charts</a>, and Steve&#8217;s article on cool <a href="http://www.makeuseof.com/tag/excel-project-management-tracking-templates/">Excel templates for project management</a>.</p>
<p>In this article, I&#8217;m going to dive a little more into the background VBA scripting that allows you to actually program connections between data that might be stored in an Excel file and Word documents where you may be producing reports.</p>
<p>It&#8217;s actually surprisingly easy to accomplish this once you know how to add the right references, and how to lay out the syntax of the background VBA code.</p>
<h2>Integrating Data From Excel Into Your Word Document</h2>
<p>In this example, I&#8217;m going to start out with a fairly simple Excel spreadsheet. In reality, the Excel file can consist of multiple spreadsheets with lots of data, it doesn&#8217;t matter.</p>
<p>So long as you know where the data resides in the spreadsheet, you&#8217;ll be able to reach in and grab it using VBA.</p>
<p>Here&#8217;s what my sample spreadsheet looks like. It&#8217;s a list of expense totals that have been calculated throughout the entire year.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1a.png?323f2c" alt="" width="261" height="295" /></p>
<p>Now, lets say you have a manager that would like to see a nicely formatted report that describes the expenses, grouping together like items and laying it all out in a layout that&#8217;s a little more pleasing to the eye (and easier for the big boys upstairs to understand).</p>
<p>You can do this by incorporating objects like textboxes or labels into your Word document. When you&#8217;re in Word, just click on the <em>Developer</em> menu tab, and then select &#8220;<em>Design Mode</em>&#8221; in the Controls box. Use the <em>Legacy Tools</em> dropdown icon to find where you can insert labels into your document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1.png?323f2c" alt="" width="490" height="515" /></p>
<p>Once you have the label placed in the document where you want it (not always an easy task), you&#8217;re ready to program the data feed. But first you&#8217;ll need to name the label so that the VBA can identify it. Right click on the label and go into <em>Properties</em>. Find the <em>&#8220;(Name)&#8221;</em> field and call it something that you&#8217;ll remember.</p>
<p>Now, add a Command Button from the same Legacy Tools dropdown list, place it in your document, and double click it to open up the VBA editor. When you get your code working later, you can modify it so that the code runs on the Document Open() event. You&#8217;ll see that in the object dropdown boxes in the editor window.</p>
<p>To get started connecting Word to Excel, you&#8217;ll need to reference Excel. Click on <em>Tools</em>, and then <em>References</em>. Scroll down the list until you see the &#8220;<em>Microsoft Excel 12.0 Object Library</em>&#8221; and select it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword4.png?323f2c" alt="" width="522" height="471" /></p>
<p>Once you&#8217;ve done this, the rest is just a matter of writing a ridiculously simple VBA script to pull in data from an Excel spreadsheet and automatically update the label caption with the data. Here&#8217;s how that works.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #E56717; font-weight: bold;">Sub</span> CommandButton1_Click()
<span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

<p>See how that works? The &#8220;exWb&#8221; Excel application object opens the Excel file at the path you provide it, and it&#8217;ll go right into the specific sheet and cell number, extract the data, and place it into the Caption property of the label that you named &#8220;<em>yrTotal</em>&#8220;.</p>
<p>Here&#8217;s the VBA macro in action.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword5.png?323f2c" alt="" width="399" height="104" /></p>
<p>The hard part with dealing with labels in Word is that it&#8217;s sometimes hard to align it at the end of a sentence or alongside any other text.</p>
<p>One way of overcoming that is actually incorporating some of the text alongside the data in the VBA code itself.  As you can see here, I&#8217;ve put the static text right into the Caption when I create the label itself.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword6.png?323f2c" alt="" width="336" height="212" /></p>
<p>Now, all you have to do is include that text when you update the label with your VBA script, and just append the data from the Excel file to the end of that text. Here&#8217;s what that kind of code would look like.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
ThisDocument.totHotels.Caption = <span style="color: #800000;">&quot;Hotels: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(5, 2)
ThisDocument.TotDining.Caption = <span style="color: #800000;">&quot;Dining Out: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(2, 2)
ThisDocument.totTolls.Caption = <span style="color: #800000;">&quot;Tolls: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(3, 2)
ThisDocument.totFuel.Caption = <span style="color: #800000;">&quot;Fuel: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(10, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span></pre></div></div>

<p>You can use the string concatenation &#8220;&amp;&#8221; symbol to place connect the static text with the data extracted from the Excel sheet. Here&#8217;s what the final results look like in the updated Word document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword7.png?323f2c" alt="" width="542" height="328" /></p>
<p>Again, if you don&#8217;t want to have a big, ugly grey command button in your word document, just have the data-update script run on Document.Open(), and it&#8217;ll all take place behind the scenes.</p>
<p>In fact, in many cases you could create the initial document once, and then you&#8217;ll never have to create it again. All you&#8217;ll have to do is open it, and all of the labels will automatically update for you with the data from the updated Excel file. All you have to do is click to Print, and submit the report to your manager. A 30 minute report just turned into a 1 minute printout!</p>
<p>Can you think of any other cool uses for this data-integration technique using VBA? Share some of your own ideas and thoughts in the comments section below.</p>
<p><small><a href="http://image.shutterstock.com/display_pic_with_logo/59253/59253,1264063933,1/stock-photo-business-woman-in-office-using-desktop-computer-44970433.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/integrate-excel-data-word-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Share Your Printer With Anyone On The Internet</title>
		<link>http://www.makeuseof.com/tag/share-printer-internet/</link>
		<comments>http://www.makeuseof.com/tag/share-printer-internet/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 23:31:04 +0000</pubDate>
		<dc:creator>Chris Hoffman</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[internet sharing]]></category>
		<category><![CDATA[office worker]]></category>
		<category><![CDATA[printing]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98325</guid>
		<description><![CDATA[Windows 7’s Homegroup feature makes sharing printers on your local network easy, but what if you want to share a printer over the Internet? This has traditionally been very complicated, involving print drivers, firewall rules and IP addresses. Google Cloud Print, built into Google Chrome, simplifies online printer sharing.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/shutterstock-cloud-print-image-resized.png?323f2c" alt="printer share" />Windows 7’s <a href="http://www.makeuseof.com/tag/microsoft-windows-7-7-noticeable-features/">Homegroup</a> feature makes sharing printers on your local network easy, but what if you want to share a printer over the Internet? This has traditionally been very complicated, involving print drivers, firewall rules and IP addresses. Google Cloud Print, built into Google Chrome, simplifies online printer sharing.</p>
<p>We’ve written about using <a href="http://www.makeuseof.com/tag/how-to-share-a-printer-across-the-internet-cross-platform/">PrinterShare</a> to share printers in the past, but Google Cloud Print is a much easier alternative. After you share your printer with someone, they can print to it from their web browser &#8211; you can even print to your own printer from a browser if you’re away from your computer.</p>
<h2>Setting Up Cloud Print</h2>
<p>You’ll need the <a href="https://www.google.com/chrome">Google Chrome</a> web browser installed to set up Cloud Print. After it’s installed, launch it and open its <em>Options</em> page.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_03.png?323f2c" alt="printer share" width="323" height="480" /></p>
<p>Click over to the <em>Under the Hood</em> tab and scroll down; you’ll find the <em>Google Cloud Print</em> option hidden near the bottom.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_011.png?323f2c" alt="share your printer over the internet" width="590" height="209" /></p>
<p>Click the “<em>Sign in to Google Cloud Print</em>” button and you’ll be asked to register your computer’s printers with your Google account.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_02.png?323f2c" alt="share your printer over the internet" width="574" height="259" /></p>
<h2>Sharing the Printer</h2>
<p>Click the <em>Manage Your Printers</em> link after registering your printers to access the Cloud Print website. You can also access this page by clicking the <em>Manage Print Settings</em> button next to Google Cloud Print on the <em>Under the Hood</em> page.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_041.png?323f2c" alt="share your printer over the internet" width="574" height="243" /></p>
<p>The main window here shows a list of print jobs, but you won’t have anything here yet. Click <em>Printers</em> in the sidebar and you’ll see a list of printers on your current computer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_051.png?323f2c" alt="share your printer" width="581" height="370" /></p>
<p>Select a printer and click the <em>Share</em> button to manage its sharing settings.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_061.png?323f2c" alt="share your printer" width="553" height="374" /></p>
<p>Type an email address into the box and click <em>Share</em>. This box will automatically autocomplete addresses you type from your <a href="http://www.makeuseof.com/tag/5-gmail-filters-prioritize-organize-inbox/">Gmail</a> contacts, so you can also start typing a contact’s name to find their email address.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/screenshot_07.png?323f2c" alt="share your printer" width="560" height="497" /></p>
<p>Google Chrome must be open on your computer so it can forward incoming print jobs to your printer. Don&#8217;t worry, though &#8212; if Google Chrome is closed or your computer is turned off, print jobs will be saved in Cloud Print&#8217;s queue online. They&#8217;ll start printing automatically the next time you launch Google Chrome.</p>
<h2>Accepting The Shared Printer</h2>
<p>The person you share the printer with can sign into their Google account and access the <a href="http://www.google.com/cloudprint">Google Cloud Print website</a>. They’ll see an indication that they have a new printer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/screenshot_08.png?323f2c" alt="" width="507" height="366" /></p>
<p>First, they’ll have to accept the shared printer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/screenshot_09.png?323f2c" alt="" width="537" height="210" /></p>
<p>The printer will appear in their list &#8212; a face icon superimposed over the printer’s icon indicates that it’s a shared printer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/screenshot_10.png?323f2c" alt="" width="545" height="229" /></p>
<h2>Printing A Document</h2>
<p>The person you share the printer with can click the <em>Print</em> button and select “<em>Upload File to Print</em>” to upload a file from their computer and print it on your printer.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/screenshot_11.png?323f2c" alt="" width="477" height="324" /></p>
<p>You should be able to upload any <a href="http://www.makeuseof.com/tag/simplest-pdf-apps-ever-merge-pdfs-pdf-to-doc-convert-to-pdf/">PDF</a> or DOC file &#8212; hopefully, Google will add support for additional file types in the future.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/screenshot_12.png?323f2c" alt="printer share" width="590" height="379" /></p>
<p>The &#8220;<em>Other Ways to Print</em>&#8221; option takes you to <a href="http://www.google.com/cloudprint/learn/apps.html">a page</a> that lists ways you can access the shared printer from other devices. Google Cloud print is integrated into the Gmail and Google Docs mobile webpages for smartphones and Cloud Print apps are available for <a href="http://www.makeuseof.com/pages/best-iphone-apps">iOS</a>, <a href="http://www.makeuseof.com/pages/best-android-apps">Android</a> and Mac.</p>
<p>Cloud Print isn’t only for sharing your printer with other people; it can also provide access to your printer from other devices. You can use the apps to print from your smartphone or tablet or use the website to print when you&#8217;re away from your printer.</p>
<h2>Future Features</h2>
<p>Google Cloud Print is currently in beta and is evolving quickly. Currently, it supports both Windows and Mac. Linux users can’t share their printers yet, but they can still print using the Cloud Print webpage. <a href="http://www.google.com/cloudprint/learn/printers.html">Some printers</a> even include Cloud Print support out of the box, so you can connect them to your network and use them without setting up Google Chrome. Expect more printers with integrated Cloud Print support in the future.</p>
<p>Have you tried Google Cloud Print sharing yet? Let us know how well it works for you in the comments.</p>
<p><small>Image Credit: <a href="http://www.shutterstock.com/cat.mhtml?lang=en&amp;search_source=search_form&amp;version=llv1&amp;anyorall=all&amp;safesearch=1&amp;searchterm=printer&amp;search_group=&amp;orient=&amp;search_cat=&amp;searchtermx=&amp;photographer_name=&amp;people_gender=&amp;people_age=&amp;people_ethnicity=&amp;people_number=&amp;commercial_ok=&amp;color=&amp;show_color_wheel=1#id=81045472" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/share-printer-internet/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Create, Edit and Share PDFs the Right Way with Nitro Pro 7 [Giveaway]</title>
		<link>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/</link>
		<comments>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 16:30:37 +0000</pubDate>
		<dc:creator>Christian Cawley</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[Home Feature]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf creator]]></category>
		<category><![CDATA[pdf editors]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98257</guid>
		<description><![CDATA[In the next two week, <strong>we're giving away 50 free copies of Nitro Pro 7 worth a <em>whopping</em> $6000</strong> in total! ]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/nitro-giveaway.png?323f2c" />You don’t have to look far to find a PDF application these days, but separating the wheat from the chaff to find a competent and flexible tool is becoming tougher. A few years ago creating a genuine, correctly-formatted PDF would require an expensive license for Adobe Standard, but these days you can download free virtual printers and even generate PDFs from office suites.</p>
<p>However, these free or bundled tools usually only offer the bare bones. If you’re looking for an all-in-one PDF reader, creator and editor, the latest release of Nitro PDF should provide you with all of the features that you need without breaking your budget on a product from Adobe.</p>
<p>With <a title="Try Nitro Pro 7" href="http://www.nitropdf.com/">Nitro Pro 7</a> you can create a PDF from one or more different file types, convert PDFs to other file types, extract key data from documents, edit documents and apply secure access requirements PDFs. In the next two week, <strong>we&#8217;re giving away 50 free copies of Nitro Pro 7 worth a <em>whopping</em> $6000</strong> in total! </p>
<h2>User Interface</h2>
<p>The first launch of <a href="http://www.nitropdf.com/">Nitro Pro 7</a> will display a “Getting Started” screen which highlights some of the application’s features. You can easily disable this via the <strong>Do not show at startup</strong> checkbox but it is worth spending a moment looking at the various tasks on offer.</p>
<p><img class="aligncenter size-full wp-image-98265" title="muo-nitro-splash" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-splash.png?323f2c" alt="The Nitro Pro 7 start screen" width="580" height="353" /></p>
<p>Everything is organized using the familiar ribbon menu that you might find in Windows Explorer or the different Microsoft Office applications and as such the features on offer are sensibly presented. For instance if you wish to convert a PDF to another format you will find the buttons on the <strong>Home</strong> tab; editing a PDF is possible via the <strong>Edit</strong> tab and adding passwords and redactions is via the controls available in the <strong>Protect</strong> menu.</p>
<p>Meanwhile via the <strong>Forms</strong> tab you can create forms on your document that comprise of text fields, radio buttons and checkboxes, as well as export and import data to and from a form on a PDF.</p>
<h2>Protecting Your PDF</h2>
<p>As the PDF format has become more and more widely used so the requirements for protecting and validating the contents of such documents has become increasing paramount.</p>
<p>Accordingly, Nitro Pro 7 features effective password, certification and redaction tools that are suitable for use in all levels of business. Found on the Protect tab, the redaction tool can be used to highlight text that should be blocked out from unauthorized viewing, and removed completely using the <strong>Apply all Redactions</strong> option.</p>
<p><img class="aligncenter size-full wp-image-99055" title="muo-nitro-redact" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-redact.png?323f2c" alt="Using the redact tool in Nitro Pro 7" width="580" height="187" /></p>
<p>Meanwhile Digital IDs and Signatures can be applied to a document, useful for establishing trust between yourself and the recipient of a PDF document that you have created.</p>
<p>Elsewhere, the Password Security setting allows you to set various passwords and profiles for the document, each with different privileges; for instance you can set a PDF document as being read-only for a specific password and even block printing altogether.</p>
<h2>Combining PDF Documents</h2>
<p>It so happens that I have a pretty important PDF-related task which I need to resolve. I have three documents, all in PDF format but each with a different page format that I need to combine into a single document.</p>
<p>Can Nitro Pro 7 help me out?</p>
<p>As it happens, yes it can. Using the <strong>Combine</strong> button on the <strong>Create</strong> section of the <strong>Home</strong> menu, I was easily able to merge the three documents – plus a cover – into one.</p>
<p><img class="aligncenter size-full wp-image-98258" title="muo-nitro-giveaway1" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway1.png?323f2c" alt="Selecting files to combine" width="435" height="566" /></p>
<p>The process is simple, requiring you to first browse for the PDF files (or indeed any other file type) and add them.</p>
<p>Following that, all you need to do is save the combined document &#8211; with a meaningful file name, of course!</p>
<p><img class="aligncenter size-full wp-image-98260" title="muo-nitro-giveaway3" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway3.png?323f2c" alt="Combined PDF documents" width="580" height="428" /></p>
<p>The preview view above shows two of the combined files – you can see the differences in artwork between the strips. Note that you’re not restricted to PDF documents here as you can also combine other document types into a PDF. For instance, you might wish to combine a Word document with an Excel spreadsheet.</p>
<h2>Editing a PDF</h2>
<p>If you&#8217;ve ever found yourself having to recreate a PDF document from scratch because the source file was lost then you will know that this is often a long and drawn out process that pretty much requires you to type the document into a word processor and save or convert it to a PDF.</p>
<p><img class="aligncenter size-full wp-image-98263" title="muo-nitro-giveaway4" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway41.png?323f2c" alt="Editing text in a PDF thanks to OCR" width="580" height="230" /></p>
<p>PDF editing tools have been available in the past but they can prove to be difficult to use and expensive. Fortunately Nitro Pro 7 features an easy-to-use editing tool which delivers good results. Available via the Edit tab, you can begin editing text by selecting the <strong>Edit</strong> button which opens the Text Tools Format view. Using this you can select sentences, append or amend, add and remove images and even watermark the document. If you have problems editing an OCR tool is provided to convert the text so that it can be edited.</p>
<p>As pictured above, right-clicking a block of text and selecting <strong>Edit Text</strong> will also allow you to edit the document&#8217;s contents.</p>
<p>Note also that pages can be deleted and inserted or even rotated &#8211; useful if you have a page-sized image that would look better oriented in a different way.</p>
<h2>Document Conversion</h2>
<p>While PDF is a popular format, it isn&#8217;t the only one suitable for e-books. Sadly it isn&#8217;t possible to accurately convert a PDF document to all current e-book formats, but fortunately Nitro Pro 7 features the ability to convert PDFs into a format that is more flexible in this respect: Microsoft Word&#8217;s DOCX format. In fact, documents can be converted and exported into plain text and rich text formats, as well as images.</p>
<p><img class="aligncenter size-full wp-image-99053" title="muo-nitro-convert" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-convert.png?323f2c" alt="A Word document and the original PDF used to create it." width="580" height="391" /></p>
<p>The results of a conversion to DOCX &#8211; performed via the <strong>Convert</strong> section of the Home tab &#8211; can be seen above. When in this state, the document can be reformatted and then converted into a variety of formats depending on your requirements.</p>
<h2>Conclusion</h2>
<p>Nitro 7 Pro is certainly as good an option as any of the Adobe PDF creation applications and certainly among the best of this type of software. As you can see from the screenshots above the results of my own PDF editing project were extremely favourable; this software has enabled me to perform a task that has for a long-time proved difficult and time-consuming.</p>
<p>Additional features that allow text editing and password protecting documents is similarly accomplished, resulting in a PDF solution that is every bit as good &#8211; if not better &#8211; than anything Adobe has ever released. <a href="http://www.nitropdf.com/try/default.aspx">Download</a> a fully-functional trial now and take it for a spin.</p>
<p>As a special treat to MakeUseOf readers, we&#8217;re giving away <strong>50 copies of Nitro Pro 7 worth $6000 in total</strong> over the next two weeks. Here&#8217;s how you can score a copy for yourself.</p>
<h2>How do I win a copy?</h2>
<p>It&#8217;s simple, just follow the instructions.</p>
<h3>Step 1: Fill in the giveaway form</h3>
<p>Please fill in the form with your <strong>real name and email address</strong> so that we can get in touch if you are chosen as a winner. <a href="https://muo.wufoo.com/forms/z7s7r5/" onclick="window.open(this.href,  null, 'height=443, width=680, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false">Click here if you can&#8217;t view the form.</a></p>
<p><script type="text/javascript">var host = (("https:" == document.location.protocol) ? "https://secure." : "http://");document.write(unescape("%3Cscript src='" + host + "wufoo.com/scripts/embed/form.js' type='text/javascript'%3E%3C/script%3E"));</script></p>
<p><script type="text/javascript">
var z7s7r5 = new WufooForm();
z7s7r5.initialize({
'userName':'muo', 
'formHash':'z7s7r5', 
'autoResize':true,
'height':'443',
'header':'show', 
'ssl':true});
z7s7r5.display();
</script></p>
<h3>Step 2: Share!</h3>
<p>You&#8217;re almost done. Now, all that&#8217;s left to do is to share the post. There are 2 options to choose from or you can do both!</p>
<table border="0" cellspacing="20">
<tbody>
<td width="240" align="middle" valign="top">
<p><strong>Like it on Facebook</strong>
<div align="center"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.makeuseof.com%2Ftag%2Fcreate-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway%2F&amp;layout=box_count&amp;show_faces=true&amp;width=60&amp;action=like&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:60px; height:65px;" allowTransparency="true"></iframe></div>
</td>
<td width="240" align="middle" valign="top">
<p><strong>Or share it on Twitter</strong></p>
<div align="center"><a href="http://twitter.com/share" class="twitter-share-button" data-text="I've just entered @makeuseof's giveaway to win a FREE copy of Nitro Pro 7 worth $119.99! Woohoo!" data-count="vertical">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
</td>
</tbody>
</table>
<p>This giveaway begins now and ends <strong>Friday, February 17th</strong>. The winners will be selected at random and informed via email.</p>
<p>Spread the word to your friends and have fun!</p>
<p><em>Interested in sponsoring a giveaway? We&#8217;d love to hear from you. Get in touch with us via <a href="http://www.makeuseof.com/makeuseof-giveaway-program/">the form at the bottom of this page</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>Make Quick Changes To PDF Files With PDF Mod [Linux]</title>
		<link>http://www.makeuseof.com/tag/quick-pdf-files-pdf-mod-linux/</link>
		<comments>http://www.makeuseof.com/tag/quick-pdf-files-pdf-mod-linux/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 00:31:39 +0000</pubDate>
		<dc:creator>Justin Pot</dc:creator>
				<category><![CDATA[Cool Linux Apps & Tips]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf editors]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98522</guid>
		<description><![CDATA[Make simple changes to any PDF file in Linux. Move pages around, edit the bookmarks, add pages from another PDF or remove pages altogether. It's a snap with PDF Mod, a simple Linux program that does one thing and does it well. If there's something PDF files aren't really supposed to be, it's editable. The format, originally created as a way to transfer data from a computer to a printer, is essentially a digital piece of paper.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdfmod-icon.png?323f2c" alt="changes to pdf files" />Make simple changes to any PDF file in Linux. Move pages around, edit the bookmarks, add pages from another PDF or remove pages altogether. It&#8217;s a snap with <a href="http://live.gnome.org/PdfMod">PDF Mod</a>, a simple Linux program that does one thing and does it well.</p>
<p>If there&#8217;s something <a href="http://www.makeuseof.com/tags/pdf/">PDF</a> files aren&#8217;t really supposed to be, it&#8217;s editable. The format, originally created as a way to transfer data from a computer to a printer, is essentially a digital piece of paper. Sure, there are tools that kind of do the job, but most of them end up converting the PDF to some other file before letting you re-export them. We highlighed <a href="http://www.makeuseof.com/tag/4-methods-create-edit-pdf-files-free/">tools for editing PDFs before</a>, and they basically do this or something like it.</p>
<p>PDF Mod isn&#8217;t a tool like that &#8211; it allows you to edit your PDF files directly. This is possible because of its limited functionality. You can&#8217;t make changes to pages, but you can move pages around or remove them altogether. Basically, it lets you re-shuffle pieces of paper the way you can in real life.</p>
<p>It&#8217;s always best to avoid editing PDF files, assuming you have access to the source files. If something was made in Libre Office, for example, it&#8217;s a lot easier to edit the Libre Office document then it is to edit the PDF. If you just need to quickly re-arrange or remove some pages in a PDF, though, this is your go-to Linux tool.</p>
<h2>Using PDF Mod</h2>
<p>Open a PDF with PDF Mod and you&#8217;ll instantly see all of your pages.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdfmod-main.png?323f2c" alt="changes to pdf files" width="580" height="294" /></p>
<p>Do you need to see more? You can quickly zoom in and out using the slide at the bottom of the window. Re-arranging pages is easy &#8211; just click and drag. You&#8217;ll also find buttons in the menu for removing pages, and another for extracting images from a given page.</p>
<p>Do you want to add pages from another PDF? There&#8217;s a button for that too. This is a quick and easy way to combine two PDFs into a single file. You can also rotate pages.</p>
<p>Do you want to change the author&#8217;s name, and other details? Just click the &#8220;<em>Properties</em>&#8221; button.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/modpdf-properties.png?323f2c" alt="change pdf file" width="580" height="161" /></p>
<p>You can also quickly edit the bookmarks in your PDF. Remove, add or change the references, it doesn&#8217;t matter.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/modpdf-bookmarks.png?323f2c" alt="changes to pdf files" width="391" height="285" /></p>
<p>Like I said, you can&#8217;t make changes to the text, or move images around on a given page. PDFs aren&#8217;t really meant to be edited that way, just like a piece of paper. You can re-arrange things, though, and that&#8217;s what this program is for.</p>
<h2>Installation</h2>
<p>Do you want to install this program on your Linux computer? Check out your distro&#8217;s package manager, because it&#8217;s probably there. Ubuntu users can <a href="apt:pdfmod">simply click here to install PDF mod</a>, though users of older Ubuntu releases might find this doesn&#8217;t work.</p>
<p>Can&#8217;t find PDF mod in your package manager? Check out the <a href="http://live.gnome.org/PdfMod">PDF Mod website</a>, where you&#8217;ll find a few packages and some source code you can compile yourself.</p>
<h2>Conclusion</h2>
<p>This simple tool is great if you ever need to make quick changes to, or to merge, a couple of PDF files. It&#8217;s got a simple interface and runs quickly. Like I said, it does one thing and does it well.</p>
<p>Have you made use of this? Let me know for what in the comments below. Or you can tell me about how PDFs are totally easy to edit.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/quick-pdf-files-pdf-mod-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Edit Text Files In Your Dropbox From Your Browser With TextDropApp</title>
		<link>http://www.makeuseof.com/tag/edit-text-files-dropbox-browser-textdropapp/</link>
		<comments>http://www.makeuseof.com/tag/edit-text-files-dropbox-browser-textdropapp/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 20:01:46 +0000</pubDate>
		<dc:creator>Justin Pot</dc:creator>
				<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[text editors]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=97683</guid>
		<description><![CDATA[Edit any text file in your Dropbox from your browser. It's easy to with TextDropApp, a web-based text editor that uses Dropbox for storage. Whether you want to edit text documents from Chrome OS or just want a simple way to do some writing while on the go, TextDropApp is easy to use and quick. TextDropApp isn't just useful for programmers. It's also perfect for the writer on the move.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/textdrop-icon.png?323f2c" alt="edit dropbox text file" />Edit any text file in your <a href="http://www.makeuseof.com/tags/dropbox/">Dropbox</a> from your browser. It&#8217;s easy to with TextDropApp, a web-based text editor that uses Dropbox for storage. Whether you want to edit text documents from <a>Chrome OS</a> or just want a simple way to do some writing while on the go, TextDropApp is easy to use and quick.</p>
<p>You can&#8217;t edit formatted documents with this tool, but if you at least do your first drafts in TXT files you&#8217;ll find this tool useful. Even better, it connects with Dropbox, meaning your work will sync with all of your computers. Jessica pointed this tool out when she showed you <a href="http://www.makeuseof.com/tag/edit-compile-run-code-online-tools/">how to edit and compile code online</a>, but TextDropApp isn&#8217;t just useful for programmers. It&#8217;s also perfect for the writer on the move.</p>
<h2>Using TextDropApp</h2>
<p>Ready to check this out? Just head over to <a href="http://textdropapp.com">TextDropApp,</a> click the &#8220;<em>login</em>&#8221; button and you will be re-directed to Dropbox. You will have to log into Dropbox, assuming you&#8217;re not already, and then you will need to give TextDropApp permission to read and edit your documents.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/textdrop-enable1.png?323f2c" alt="edit dropbox text file" width="580" height="341" /></p>
<p>This makes sense: the app can hardly edit anything without permission. Still, some people might be worried. That&#8217;s smart, but according to the app&#8217;s creator Sam Nguyen, there&#8217;s not much to worry about:</p>
<blockquote><p><em>TextDrop does not save your password. It doesn&#8217;t even see your password because it uses Dropbox&#8217;s OAuth system.</em></p></blockquote>
<p>So rest assured, your password is safe. TextDropApp, as a text editor, is very low-frills. You can&#8217;t customize much of anything, and there is no code syntax highlighting. This is a simple tool for simple purposes.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/textdrop-editing1.png?323f2c" alt="edit dropbox files online" width="580" height="238" /></p>
<p>The minimalist interface works well on a variety of devices, so give it a try on your tablet or your smartphone as well as your browser. It&#8217;s a great, simple way to quickly edit a document in your Dropbox.</p>
<p>You can open any file in your Dropbox, provided it has a &#8220;.txt&#8221; extension.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/textdrop-open1.png?323f2c" alt="edit dropbox text file" width="542" height="257" /></p>
<p>You can also create new files and save them to whatever sub-folder you prefer. It&#8217;s a very functional tool.</p>
<h2>Security Concern</h2>
<p>I mentioned above that your Dropbox password is safe via this service. You should know, however, that the information you write may not be. Again, from app creator Sam Nguyen:</p>
<blockquote><p><em>[TextDropApp] does transiently transmit the contents of your files through its servers, although it never saves any of your contents to disk. The transmission from your browser to the TextDrop server is unencrypted, so please only use TextDrop for non-sensitive material.</em></p></blockquote>
<p>In summary, don&#8217;t use this app to make a list of your credit card numbers, because that information won&#8217;t be encrypted. Grocery lists or blog posts should be fine, though.</p>
<h2>Conclusion</h2>
<p>I have to say, I&#8217;ve been looking for something more or less like this for a year or so. I&#8217;m glad I found it, and will be making more use of it in the months to come.</p>
<p>What do you think? Do you like being able to quickly edit text documents in your Dropbox, or would you prefer something more full-featured, like <a href="http://www.makeuseof.com/tags/google-docs/">Google Docs</a> integration for Dropbox? Let us know in the comments below, along with any other useful Dropbox tools we might not know about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/edit-text-files-dropbox-browser-textdropapp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Extract Images From PDF Files &amp; Save Them For Other Uses [Windows]</title>
		<link>http://www.makeuseof.com/tag/extract-images-pdf-files-save-windows/</link>
		<comments>http://www.makeuseof.com/tag/extract-images-pdf-files-save-windows/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 18:00:06 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[converter]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[file converter]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=96757</guid>
		<description><![CDATA[We had taken an earlier look at 6 Ways To Convert A PDF To A JPG Image. But over here, I am looking for something specific – extracting images only from PDF files. The solutions offered in the previous article are full-fledged converters. Here, the focus is more pinpointed. Let’s check out a few ways to extract images from PDF files.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdf.png?323f2c" alt="extract images from pdf" />The <a href="http://www.makeuseof.com/tags/pdf/">Portable Document Format</a> (PDF) is often the preferred medium for exchanging documents across the web. But sometimes, it creates more “problems” than it solves.</p>
<p>For instance, I am a voracious user of Slideshare, and sometimes I like to save a neat illustration or graphic for my personal use. Then there are some professional reports which come packaged as a PDF and you might come across the need to use a graphic from there in a presentation.</p>
<p>We had taken an earlier look at <a href="http://www.makeuseof.com/tag/6-ways-to-convert-a-pdf-file-to-a-jpg-image/">6 Ways To Convert A PDF To A JPG Image</a>. But over here, I am looking for something specific – extracting images only from PDF files. The solutions offered in the previous article are full-fledged converters. Here, the focus is more pinpointed.</p>
<p>Let’s check out a few ways to extract images from PDF files.</p>
<h2>The Manual Way</h2>
<p>Extracting images from PDF files is not a problem if you have the commercial Adobe Acrobat. It allows you to extract all the images (in multiple image formats) in a PDF file with a single click. Some free PDF readers like the earlier reviewed <a href="http://www.makeuseof.com/tag/sneak-peek-nitro-pdf-reader-2/">Nitro PDF Reader</a> also have this feature. If you have the free Adobe Reader installed, then you have to slog it out by either using the <em>Print Screen</em> button on an individual image or using the <em>Take a snapshot</em> feature from the Edit menu. In both cases, you have to paste the copied image from the clipboard into a graphic editor.</p>
<h2>The Photoshop Way</h2>
<p>Okay, Adobe Photoshop isn’t a free product, but some of us do have it installed because it is the Big Daddy when it comes to image editors. Photoshop allows you to open a PDF document and start importing the text or the images in it. The Import PDF dialog appears as below:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdf-image-converter01c.png?323f2c" alt="extract images from pdf" width="589" height="414" /></p>
<p>&nbsp;</p>
<p>You can select the images you want to extract. Click on OK and then save (or edit) the image as you would normally do. CorelDRAW also offers a similar functionality.</p>
<h2>The Freeware Way</h2>
<p>Well, you don’t need to get thumbprints on the Print Screen button or plonk down serious case on Photoshop if you regularly extract images from PDF files. Let’s bring up <strong><a href="http://www.somepdf.com/some-pdf-image-extract.html">Some PDF Image Extract</a></strong> for the job at hand.</p>
<p>The 885 KB free software runs on Windows and is very handy for extracting image files from PDF documents. Plus, it comes with a few bells and whistles that give some control over what you are going to pull out from the PDF file. Installation is a breeze; just be careful to deselect the option which asks you to install the Blekko search engine as an option (i.e. if you want).</p>
<p>The interface of Some PDF Image Extract looks like this and using the image extractor doesn’t need you to consult any help file (though there is one).</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdf-image-converter02c.png?323f2c" alt="extract pdf images" width="590" height="374" /></p>
<p>&nbsp;</p>
<p>Some PDF Image Extract allows you to extract images from PDF files by using any or all of the following features…</p>
<p>1. The free software can batch process PDF files and extract their images in individual folders in one go. If you have more than one PDF file to work on, this is a time saver.</p>
<p>2. Some PDF Image Extract comes with image format options (JPG, BMP, PNG, GIF, TIF, TGA, and PCX). In case of the JPG output option, you can also control the quality of the extracted image.</p>
<p>3. You can choose the page range as well as an individual page if you want to extract only specific images from the file.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/pdf-image-converter03.png?323f2c" alt="extract images from pdf" width="313" height="340" /></p>
<p>4. Some PDF Images Extract can work with password protected PDF-files too. The conversion tool has a field where you can key in the password during conversion.</p>
<p>Some PDF Image Extract does its conversion bit quite rapidly and smoothly. It works with Windows 2000/XP/2003/Vista, and probably Windows 7 too though I haven’t tested it out on that.</p>
<p>PDF image extraction has quite a few uses. What are yours? How do you extract images from PDF files? Tell us your choice of method.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/extract-images-pdf-files-save-windows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How To Bookmark A Page In A PDF Document (in Adobe Reader)</title>
		<link>http://www.makeuseof.com/tag/bookmark-page-pdf-document-open-adobe-reader/</link>
		<comments>http://www.makeuseof.com/tag/bookmark-page-pdf-document-open-adobe-reader/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 18:01:59 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[bookmarking]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=96332</guid>
		<description><![CDATA[The one thing that strikes a discordant note when I am using the free Adobe Reader X is the absence of a bookmarking feature. Just how the heck am I supposed to start from where I left off reading a 1000 page ebook? Why Adobe would nix out such a basic feature is beyond me, but that forced me to look for solutions as a workaround.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader-300x300.png?323f2c" alt="pdf bookmark editor freeware" />Like it or hate it, <a href="http://www.makeuseof.com/tags/adobe/">Adobe</a> rules the roost when it comes to the Portable Document Format (PDF). Even as Adobe Reader puffed up with importance and size, <a href="http://www.makeuseof.com/tag/a-quadruple-of-light-alternatives-to-adobe-reader/">free alternatives</a> came into the scene. They brought in new features and some you could only find in the commercial Adobe Acrobat, the paid big brother of the still free Adobe Reader.</p>
<p>Great! But for me as a lay reader, the one thing that strikes a discordant note when I am using the free Adobe Reader X is the absence of a bookmarking feature. Just how the heck am I supposed to start from where I left off reading a 1000 page ebook?</p>
<p>Why Adobe would nix out such a basic feature is beyond me, but that forced me to look for solutions as a workaround.</p>
<h2>The Easy Way to Remember a Page in Adobe Reader</h2>
<p>Adobe Reader does not let you create and place new bookmarks, but there’s one little setting you can apply that will help the software remember the last page that was opened by the PDF reader. It is ‘technically’ not a bookmark, but it’s a handy workaround that takes just a checkmark. Follow the steps below to enable the native feature.</p>
<p>1. In Adobe Reader, go to <em>Edit – Preferences</em> (or <em>CTRL + K</em>).</p>
<p>2. Click on <em>Documents</em> under the listed categories on the left.</p>
<p>3. As shown in the screenshot, enable the feature that says &#8211; <em>Restore last view settings when reopening document.</em><em> Click OK and exit.</em></p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader01.png?323f2c" alt="pdf bookmark editor freeware" width="580" height="211" /></p>
<p>Now, open any number of PDF documents; Adobe Reader remembers the page you left it at. This may not be a bookmarking solution, may not give you the option to mark out multiple points in a book, but is a simple elegant answer to our basic requirement when we open up an ebook in a PDF reader.</p>
<h2>JavaScript Has the Answer</h2>
<p>Call this a plug-in or an Adobe back, but it is the only solution I could find to deliberately introduce a bookmarking feature in Adobe Reader. The small 5KB JavaScript file is packaged in a downloadable ZIP file at <strong><a href="http://www.pdfhacks.com/bookmark_page/">PDF Hacks</a></strong>.</p>
<p>1. Download and unzip the small file. Copy it into your Acrobat Reader JavaScript&#8217;s directory. In my Win XP machine it is located at &#8211; C:\Program Files\Adobe\Reader 10.0\Reader\Javascripts.</p>
<p>2. Open any PDF file with Adobe Acrobat Reader and open the View menu. Four new items are clearly visible under the menu &#8211; <em>Bookmark this page, Go to bookmark, Remove bookmark</em> and <em>Clear bookmarks</em>. The numbers (5,6) next to the top two options refers to the keyboard shortcut keys.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader02.png?323f2c" alt="bookmark a pdf" width="366" height="400" /></p>
<p>3. The functions are pretty much self-explanatory. From the page you want to bookmark, click on <em>Bookmark this page</em>. The following box opens up and you can assign a name to the bookmark.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader03.png?323f2c" alt="bookmark a pdf" width="346" height="182" /></p>
<p>4. Clicking on <em>Go to bookmark</em> opens up a floating box and a click on each takes you to each successive bookmark you have set. You can bookmark as many numbers of pages as you want.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader04.png?323f2c" alt="bookmark a pdf" width="290" height="145" /></p>
<p>5. <em>Remove bookmark</em> allows you to remove a single bookmark and <em>Clear bookmarks</em> wipes out all the bookmarks in one go.</p>
<p><strong>Note:</strong> For some PDF files, the hack works smoothly. In others, you might get an internal error notification. Right click on a page in the PDF file and click on <em>Page Display Preferences</em>. Under <em>JavaScript</em>, make sure the boxes on the right are checked as in the following screen.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Adobe-Reader05.png?323f2c" alt="pdf bookmark editor freeware" width="579" height="293" /></p>
<p>Inspite of the larger memory footprint of Adobe Reader in comparison to other (free) alternatives, there are some benefits like better rendering of PDF documents. The new Sandbox feature has also improved security. But the missing feature of user-bookmarking is an irritant when it comes to readers like you and me. These two simple, no hassle solutions allow us to use Adobe Reader and enjoy a few of its merits.</p>
<p>Do you know of any other way to bookmark ebooks in Adobe Reader? Did these two tips solve your <a href="http://www.makeuseof.com/tags/pdf/">PDF</a> bookmarking issues? Let us know.</p>
<p><em> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/bookmark-page-pdf-document-open-adobe-reader/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Reading Personal Documents On Your Kindle App</title>
		<link>http://www.makeuseof.com/tag/reading-personal-documents-kindle-app/</link>
		<comments>http://www.makeuseof.com/tag/reading-personal-documents-kindle-app/#comments</comments>
		<pubDate>Sat, 31 Dec 2011 00:30:17 +0000</pubDate>
		<dc:creator>Bakari Chavanu</dc:creator>
				<category><![CDATA[iPhone / iPad / iPod]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[ipad apps]]></category>
		<category><![CDATA[kindle]]></category>
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=95443</guid>
		<description><![CDATA[Since I first reviewed the Amazon Kindle for the iPad and other iOS devices, some pretty useful features have been added in recent updates. From basic annotation tools, an e-book library, and its Whispersync capabilities, the Kindle app now allows users to import magazines and newspapers, as well as personal documents—each of which can be synced between iOS devices. ]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/image154.png?323f2c" alt="reading documents on kindle"/>Since I first <a href="http://www.makeuseof.com/tag/how-to-use-the-amazon-kindle-reader-for-the-iphone-ipod-touch/">reviewed</a> the Amazon Kindle for the iPad and other iOS devices, some pretty useful features have been added in recent updates. From basic annotation tools, an e-book library, and its Whispersync capabilities, the Kindle app now allows users to import magazines and newspapers, as well as personal documents—each of which can be synced between iOS devices.</p>
<p>While the Kindle app still falls short in many areas, the recent updates do provide better functionality for e-book reading.</p>
<h2>Personal Documents</h2>
<p>Perhaps the best update for Kindle 2.9 app is a feature that allows Amazon members to e-mail personal documents to their Kindle app-supported device using a new Send-to-Kindle email address ([assigned name]@kindle.com.)</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/kindle_7.jpg?323f2c" alt="reading documents on kindle" width="506" height="580"/></p>
<p>You can attach documents and other files, including PDFs, Word files, JPEGs and PNGs, on your computer or in your mobile device to the address associated with your Amazon account. Amazon says that &#8220;A subject is not necessary in the e-mail, unless you&#8217;d prefer to have the document converted to the Kindle format. To have a document converted to Kindle format (.azw), the subject line should be &#8216;convert&#8217; when e-mailing the personal document to a Send-to-Kindle address.&#8221;</p>
<p>In order to use the Kindle annotation features, text documents must be converted to the Kindle format. However, in my tests some parts of say a PDF document—the table of contents for example—may not format correctly in the .azw conversion.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/kindle_11.png?323f2c" alt="personal documents kindle app" width="580" height="393"/></p>
<p>Other people can also send documents to your device after you approve their e-mail address. You will need to log into your Manage Your Kindle account, and select Personal Document Settings to add and improve e-mail addresses. This authorization, of course, keeps your account from being spammed.</p>
<p>There are some restrictions to this personal documents feature, such as submitted e-mails to your Amazon account cannot contain more than 25 attached personal documents, and it must target less than 15 distinct Send-to-Kindle addresses.</p>
<p>This personal documents feature enables users to do less printing, and it is also convenient for keeping your documents archived in the cloud.</p>
<h2>Magazines and Newspapers</h2>
<p>This Kindle update version for the iPad now also allows Amazon customers to select from over 400 magazines and newspapers in the Kindle Store. You can buy single issues or subscribe to magazines like, <em>Martha Stewart Living</em>, <em>Cosmopolitan</em>, <em>The New York Times</em>, and <em>Popular Science</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/amazon_newsstand.png?323f2c" alt="personal documents kindle app" width="503" height="430"/></p>
<p>Some Kindle customers however have commented that the digital versions of publications may not be as good production wise as the printed versions, so be sure to check the customer feedback section before making a purchase.</p>
<h2>The User Interface</h2>
<p>The Kindle app also includes an updated user interface, so that now downloaded content is categorized by All Items, Books, Newsstand, Docs. Kindle books and personal documents can also be archived to your account in order to reduce the amount of space taken up on your mobile device.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/kindle_4.png?323f2c" alt="personal documents kindle app" width="580" height="151"/></p>
<p>It would be great, however, if there were a section for purchased Kindle books separate from sample copies of Kindle e-books.</p>
<h2>Social Network Sharing</h2>
<p>The prior update to the Kindle app includes a feature for sharing selected texts to your Twitter or Facebook timeline, via a link to the highlighted passage which appears on your Kindle profile page.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/kindle_3.png?323f2c" alt="personal documents kindle app" width="566" height="399"/></p>
<p>I&#8217;m not sure how useful this feature is for sharing with online contacts, but I find it handy for my own reading and review purposes. You can actually access and read your highlights and notes in your Kindle account. You can also follow and network with other Kindle readers .</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/kindle_10.png?323f2c" alt="reading documents on kindle" width="580" height="429"/></p>
<p>As an avid Kindle book reader, I welcome the new app updates, but I still long for improvements with the annotation tools. Accessing and reviewing notes, highlights, and bookmarks is not a productive experience, especially for students and scholars, in the Kindle e-reader.</p>
<p>Let us know what you think of the new updates. Have you started reading more ebooks on your Kindle? And what additional features would you like to see.</p>
<p>For other articles about the Kindle app, start with these:</p>
<ul>
<li><a href="http://www.makeuseof.com/tag/how-to-use-the-amazon-kindle-reader-for-the-iphone-ipod-touch/">How To Use The Amazon Kindle Reader For The iPhone &amp; iPod Touch</a></li>
<li><a href="http://www.makeuseof.com/tag/ibooks-kindle-ipad/">iBooks Vs. Kindle – Which Is Better? [iPad]</a></li>
<li><a href="http://www.makeuseof.com/tag/reading-ebooks-ipad-ibooks-amazon-kindle-mac/">Reading Ebooks on The iPad with iBooks &amp; Amazon Kindle</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/reading-personal-documents-kindle-app/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Get Easy Access To Your Documents Stored Online With Google Docs For Android</title>
		<link>http://www.makeuseof.com/tag/easy-access-documents-stored-online-google-docs-android/</link>
		<comments>http://www.makeuseof.com/tag/easy-access-documents-stored-online-google-docs-android/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:00:56 +0000</pubDate>
		<dc:creator>Tina Sieber</dc:creator>
				<category><![CDATA[Google Android]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[Mobile Apps]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=94305</guid>
		<description><![CDATA[The Google Docs app for Android provides quick access to your documents and collections stored online with Google. Within the app you can view, create, edit, upload, and share files or take pictures with your Android device camera and directly import them.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Android-intro.png?323f2c" alt="android google docs" />The <a title="Google Docs" href="https://market.android.com/details?id=com.google.android.apps.docs">Google Docs</a> app for Android provides quick access to your documents and collections stored online with Google. Within the app you can view, create, edit, upload, and share files or take pictures with your Android device camera and directly import them.</p>
<p>Images uploaded from the gallery or camera can be scanned with optical character recognition to extract text and save it to a document. Users of Android Honeycomb can enjoy an optimized version of the app for larger screens.</p>
<h2>The Interface</h2>
<p>The interface of the Google Docs app is clean and straight forward and not too different from the web interface. A visual overview can be found under &gt; <em>Settings</em> &gt; <em>Quick hints</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Overview.png?323f2c" alt="android google docs"/></p>
<p>When you click the little arrow button on the far right of a document, you can preview the respective document and view its details.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Preview.png?323f2c" alt="google docs for android"/></p>
<p>Clicking the button will open a little sidebar with document properties, including date last viewed, date last modified, owner, and a list of people who can edit the document. In this view you can also  add collaborators (people or groups), send or share the document, or rename the document. Via the settings button in the top right, you can open or delete the document.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-File-Properties.png?323f2c" alt="google docs for android"/></p>
<p>If you want to send, rename, delete, or open a file with an alternative app, press it for a couple of seconds to trigger the menu shown in the screenshot below.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Send-Rename-Open-Delete.png?323f2c" alt="google docs for android"/></p>
<h2>Creating Documents</h2>
<p>The Google Doc apps supports creating new documents, spreadsheets, or documents from a photo or the gallery.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Create-New-Google-Doc.png?323f2c" alt="google docs on android"/></p>
<p>When you create a &gt; <em>Document from gallery or photo</em>, the image you choose from the gallery or take with your device camera, can be uploaded as individual file, converted to a Google Docs document and embedded into a new document, or sent to web clipboard, so that you can paste it into a desired location.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Upload-Photo.png?323f2c" alt="google docs on android" width="580" height="223" /></p>
<p>When you choose the &gt; <em>Convert file go Google Docs document</em>, the respective photo will be converted to text using optical character recognition (OCR). In theory, OCR is a fantastic feature, but in reality it doesn&#8217;t work very well, even with clearly printed text. However, if you experiment with the camera conditions (light, position, size of text), you might be able to get it to work for you. It also is rather unfortunate that the app can not display the source image, which is inserted on top of the recognized text, although it is very well able to display images.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-OCR.png?323f2c" alt="google docs on android"/></p>
<h2>Editing Documents</h2>
<p>Editing documents within the app is possible, but it is fairly difficult. Edits can only be done line by line. Finding the right spot can be a bit of a challenge, typically resulting in short flickers of the document and a jumpy keyboard. Moreover, Google Docs does not allow you to zoom in, but forces you to work with the available text size. It must be said though that once the right line or paragraph has been highlighted, moving the cursor to a desired position works very well, unlike in some other apps.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Editing.png?323f2c" alt=""/></p>
<h2>Homescreen Widget</h2>
<p>Google Docs comes with a simple homescreen widget. It unites four functions: opening Google Docs, viewing starred files, taking a photo and uploading it, and creating a new document.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Google-Docs-Widget.png?323f2c" alt=""/></p>
<p>In Honeycomb, you can add the widget by pressing an available spot on your homescreen for a few seconds or tapping the + icon in the top right, which opens the widgets gallery. The app is listed as Docs. You can drag and drop it to your desired homescreen.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Android-Widget-Gallery.png?323f2c" alt="android google docs"/></p>
<h2>Verdict</h2>
<p>The Google Docs app is great for accessing and reading your Google documents. However, I would not recommend to create and edit documents with it. Overall, I find the app very useful and hope that Google will continue to develop and improve it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/easy-access-documents-stored-online-google-docs-android/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3 Handy Apps For Working with Text on Mac &amp; iOS</title>
		<link>http://www.makeuseof.com/tag/formatmatch-mou-markdownmail-awesome-text-apps-mac-ios/</link>
		<comments>http://www.makeuseof.com/tag/formatmatch-mou-markdownmail-awesome-text-apps-mac-ios/#comments</comments>
		<pubDate>Fri, 09 Dec 2011 23:30:16 +0000</pubDate>
		<dc:creator>Bakari Chavanu</dc:creator>
				<category><![CDATA[Cool Mac Apps & Tips]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text editors]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=93507</guid>
		<description><![CDATA[When it comes to writing and manipulating text on a computer, I think we can never have enough tools to simplify all the tasks involved . Three relatively new applications you might consider adding to your arsenal are Mou and MarkdownMail, for working in Markdown language; and a seriously magical Mac application, FormatMatch, for automatically reformatting copied and pasted text.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/markdownmail1.jpg?323f2c" alt="text apps for mac"/>When it comes to writing and manipulating text on a computer, I think we can never have enough tools to simplify all the tasks involved with writing, formatting, and publishing articles, documents, blog posts, and the like.</p>
<p>Three relatively new applications you might consider adding to your arsenal are <a href="http://mouapp.com/">Mou</a> and <a href="http://itunes.apple.com/us/app/markdownmail-send-html-email/id390094543?mt=8&amp;ign-mpt=uo%3D4">MarkdownMail</a>, for working in Markdown language; and a seriously magical Mac application, <a href="http://itunes.apple.com/us/app/formatmatch/id445211988?mt=12">FormatMatch</a>, for automatically reformatting copied and pasted text.</p>
<p>Let&#8217;s check them all out here.</p>
<h2>FormatMatch</h2>
<p>Typically when you copy text from one source, say a webpage or email, and then paste it in another text document, the copied text does not match the font style and size of the document you paste the text into. On a Mac you have to use the &#8220;paste and match style&#8221; keyboard shortcut command (Command+Option+Shift-V) to get the style match.</p>
<p>But now FormatMatch alleviates this annoying problem. This little app, which works in the background, will reformat text copied from one source, and match the format of the document in which you paste the text. Here&#8217;s an example:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/formatmatch_11.png?323f2c" alt="text apps for mac" width="580" height="276"/></p>
<p>When I copy formatted text from the MUO article on the right, and then paste into the TextEdit document on the left, it matches the style of the first sentence in that document.</p>
<p>You don&#8217;t have to use a keyboard shortcut or click any button. It&#8217;s all automatic, as if what the app does was built into the operating system. And if you frequently need to deactivate FormatMatch, you can do so in the menu bar or by using a keyboard shortcut.</p>
<p>FormatMatch is a free download from the App Store, but it&#8217;s an application that I would gladly would have paid as much as $10 for.</p>
<h2>Mou</h2>
<p>Unless you&#8217;re a web developer or a writer who works in HTML formatting, you might not be familiar with what is called Markdown, &#8220;a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML)&#8221; (Source: <a href="http://daringfireball.net/projects/markdown/">Daring Fireball</a>.)</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/Mou_Screenshot_1.png?323f2c" alt="free text apps" width="580" height="415"/></p>
<p>Based on my brief experience with Markdown, I think it&#8217;s whole lot easier to learn than HTML. And rather you&#8217;re learning Markdown for the first time or have been using it for a while, you will definitely want to check out Mou, a text editor that provides you a preview of your Markdown text as you write.</p>
<p>Mou is an excellent tool for learning the syntax, and it&#8217;s one that you might continue using as a text editor when you need to write in Markdown.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/markdownsyntax.png?323f2c" alt="free text apps" width="421" height="538"/></p>
<p>Mou even includes a built-in document that introduces you to the Markdown syntax. So you can start a new document in Mou and instantly start writing and Markdown let&#8217;s you actually see a preview of what you write. Markdown syntax seems almost intuitive.</p>
<p>In fact, sometimes writing in Markdown is easier than using keyboard shortcuts to format text, such as incorporating quotes and italics, documents headers, ordered lists, and hard line breaks.</p>
<h2>MarkdownMail</h2>
<p>If you get the hang of writing in Markdown and want to send out stylish HTML emails on your iPhone or iPad, you might want to purchase MarkdownMail ($2.99).</p>
<p>MarkdownMail enables you to write email that can include bold text, italics, bulleted lists and much more.</p>
<p>And with the built-in text expansion feature in iOS 5, you can set up some of your most frequently used Markdown properties to help you write using the syntax.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/markdownmail2.png?323f2c" alt="text apps for mac" width="580" height="435" /></p>
<p>The app includes a preview button so you can see what your email will look like before it&#8217;s sent out. And from there you can send your Markdown formatted email in either HTML—in which the recipient of the email will view the formatted text—,or in Markdown, which will send the the actual syntax you used to write the email.</p>
<p>Let us know what you think of these applications. For other text editors for the Mac, check out the <a href="http://www.google.com/url?q=http://www.makeuseof.com/tag/the-top-3-coding-text-editor-for-mac-os-x-computers/&amp;sa=U&amp;ei=qrrWTuK7JaKniQLt2ZGsCg&amp;ved=0CBAQFjAG&amp;client=internal-uds-cse&amp;usg=AFQjCNE9fXSLD-n1zhp-yuVjsnp9DuaZ2g">The Top 3 Free Coding Text Editors for Mac OS X</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/formatmatch-mou-markdownmail-awesome-text-apps-mac-ios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/24 queries in 0.070 seconds using apc
Object Caching 693/742 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 16:59:26 -->
