<?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>In-Tools</title>
	<atom:link href="http://in-tools.com/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://in-tools.com/wordpress</link>
	<description>Innovations in Automation</description>
	<lastBuildDate>Sun, 29 Aug 2010 05:49:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What&#8217;s a Plugin?</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/whats-a-plugin</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/whats-a-plugin#comments</comments>
		<pubDate>Tue, 27 Jul 2010 11:17:06 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[CS SDK]]></category>
		<category><![CDATA[Extension Builder]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=564</guid>
		<description><![CDATA[As a software user, you might hear a lot of different terms: plugin, script, extension, add-on, etc. It might be confusing as to what is what, and which is better. What you need, etc. In this article, we will try to make some sense out of all the options.

How to Define a Plug-in
Wikipedia defines a [...]]]></description>
			<content:encoded><![CDATA[<p>As a software user, you might hear a lot of different terms: plugin, script, extension, add-on, etc. It might be confusing as to what is what, and which is better. What you need, etc. In this article, we will try to make some sense out of all the options.</p>
<p><span id="more-564"></span></p>
<h3>How to Define a Plug-in</h3>
<p><a href="http://en.wikipedia.org/wiki/Plugin">Wikipedia</a> defines a plugin as &#8220;a set of software components that adds specific capabilities to a larger software application&#8221;. Not a bad definition.</p>
<p>Most software applications have very specific ways of adding functionality to the application, and this definition pretty much covers it. In InDesign, things get much more confusing, because it&#8217;s probably one of the most extensible commercial software applications in existence!</p>
<p>In the beginning of time (a few years back when InDesign was created), there were &#8220;plugins&#8221; and &#8220;scripts&#8221; &#8212; two very well defined concepts.</p>
<h3>Plugins</h3>
<p>Plugins were written in C++ using the same SDK and APIs that InDesign itself was created with. In fact, at least 90% of InDesign itself and almost all its features are implemented as plug-ins. Plug-ins are tightly integrated into the program, very efficient, and can work dynamically in the background. Plug-ins can have user interfaces which look like integral parts of the program.</p>
<h3>Scripts</h3>
<p>Scripts are implemented in one of the three supported scripting languages: ExtendScript (Adobe&#8217;s version of Javascript), Applescript (on Macintosh), or Visual Basic Script (on Windows). Scripts were classically slow, each action showed up separately in the undo list, they must be manually invoked, and they were limited to clunky, static user interfaces.</p>
<p>Although InDesign had incredible scripting support (there&#8217;s almost no native functionality that can&#8217;t be accessed through scripting &#8212; and better), there were many clear use cases where a true plug-in was the clear (and only) choice.</p>
<p>On the other hand, scripts are much quicker and inexpensive to develop, as well as easier to debug. Additionally, a buggy script is much less likely to crash InDesign than a buggy plug-in.</p>
<h3>Things Got Muddled</h3>
<p>As InDesign matured, the scripting engine became more powerful and capable. Each version of InDesign brought a quicker, more efficient scripting engine. In recent versions, except for the most demanding procedures, you can hardly tell the difference between the performance of a &#8220;native&#8221; plug-in, and an optimized script. Of course the performance of the script will highly depend on how it was written, but a veteran script writer should know how to write scripts that run efficiently.</p>
<p>On top of that was the introduction of events, and Script UI. Events allowed for scripts to run dynamically in the background and Script UI allowed for user interfaces which reacted dynamically to user input and context.</p>
<p>The division between &#8220;plug-ins&#8221; and &#8220;scripts&#8221; became very blurred. The only clear differentiating point remained the language the add-on was written in. Plug-ins are written in C++, while scripts are written in one of the higher level scripting languages.</p>
<p>The only two use cases where &#8220;plug-ins&#8221; remained the clear winner, is where functionality was needed that didn&#8217;t exist at all in InDesign, or very high performance was critical.</p>
<h3>Hybrid Plug-ins</h3>
<p>These distinctions are further blurred by the fact that an add-on does not need to be 100% &#8220;script&#8221; or 100% &#8220;plug-in&#8221;. It&#8217;s quite possible to mix C++ code with scripting code to create a seamless product (and quite a few of these products exist!) The starting point of such code can be a &#8220;script&#8221; or the whole thing can be compiled into a single plug-in. It is entirely invisible to the user whether a specific feature is implemented as a &#8220;scripting feature&#8221; or as a &#8220;plug-in feature&#8221;. In fact the implementation can be split up into a custom implementation like was done with <a href="http://www.rorohiko.com/wordpress/indesign-downloads/apid-toolassistant/">APID</a> (which we utilize in our products).</p>
<h3>Enter: &#8220;Extensions&#8221;</h3>
<p>In CS5, Adobe introduced a new concept: &#8220;Extensions&#8221;. Extensions can be written using the <a href="http://www.adobe.com/devnet/creativesuite/sdk/index.html">CS SDK</a>. They are programmed in Flex and ActionScript, and compiled as swf applications. These extensions are an entirely new class of &#8220;add-ons&#8221;. They have all the capabilities of AIR applications, and all the functionality of integrated scripts. <a href="http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite">Script Bay</a> is one example of such an extension. Mini Bridge, CS Review, and Kuler are other examples.</p>
<p>Extensions have many of the UI advantages of plug-ins, and can be contained inside native panels. There are quite a few new events in CS5 which allow even tighter integration into the program. In addition, &#8220;extensions&#8221; can work across the different programs of the Creative Suite.</p>
<h3>Conclusion</h3>
<p>The basic fact remains. There&#8217;s many ways to extend InDesign, and there is no clear &#8220;right&#8221; way to do it. Sometimes it makes sense to implement a feature as a plug-in. Other times it makes sense to do it as a script, other times, a hybrid, or custom solution is required.</p>
<p>In many situations, it is even difficult to define whether a specific add-on is a &#8220;script&#8221; a &#8220;plug-in&#8221; or something else. That fact is, that to the user, it doesn&#8217;t really matter that much what the definition of the product is. The technology used to create add-on functionality is mostly a developing consideration. From a user perspective, it&#8217;s just important that it allows the user to do what they need!</p>
<p>If you are purchasing a commercial &#8220;add-on&#8221; don&#8217;t concern yourself too much with the technology used to create it.</p>
<p>If you need a custom solution created, things are a bit different. Make sure that whoever you hire is familiar with all these technologies, or you might end up paying extra money for a product which could be created cheaper using a different technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/whats-a-plugin/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Script Bay: Script Panel Replacement for the Entire Creative Suite!</title>
		<link>http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite</link>
		<comments>http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite#comments</comments>
		<pubDate>Mon, 26 Jul 2010 00:21:22 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Script Bay]]></category>
		<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[CS5]]></category>
		<category><![CDATA[Extension Builder]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=513</guid>
		<description><![CDATA[Do you wish there was a better script panel in InDesign? Have you been waiting for the other CS applications to get one? Wait no longer!]]></description>
			<content:encoded><![CDATA[<p>We are very excited to introduce Script Bay!</p>
<p>Script Bay is a <strong>FREE</strong> script panel replacement for the entire Creative Suite CS5.<span id="more-513"></span></p>
<p>It currently works in InDesign, Photoshop and Illustrator. It is partially compatibility with Flash and Fireworks and to a lesser extent, Bridge.</p>
<p>No, Script Bay will <strong>not</strong> work in CS4 or earlier. It&#8217;s built using the new CS SDK which Adobe introduced for CS5. <em>It&#8217;s quite impossible to make it compatible with any version of the Creative Suite prior to CS5.</em> Sorry&#8230; <img src='http://in-tools.com/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Script Bay is very much a &#8220;work in progress&#8221;, but it is already far more usable than the script panel in InDesign, and without question more usable than the non-existing ones in Photoshop, Illustrator! We hope to add many exciting new features to Script Bay in the future!</p>
<p><strong>Here&#8217;s a quick overview of the current features:</strong></p>
<ul>
<li>Script Bay offers the ability to run scripts located anywhere on your hard drive.</li>
<li>Scripts can be viewed in either a list-view or tree-view.</li>
<li>The list of scripts can be dynamically filtered, and scripts can be launched via keyboard navigation.</li>
<li>Scripts can be edited directly in the built-in Script Bay script editor.</li>
<li>Multiple scripts or folders full of scripts can be run in a single command.</li>
<li>Script files can be moved, duplicated, deleted, and renamed directly within the panel.</li>
<li>Scripts run in the Script Bay panel can be undone in InDesign as a single undo.</li>
<li>Scripts can be easily &#8220;installed&#8221; into the host application.</li>
<li>Script Bay has a default &#8220;cross-application&#8221; folder, and scripts placed in this folder are automatically available to all CS applications.</li>
<li>Script Bay supports drag &amp; drop for moving around script files as well as loading scripts into the script editor.</li>
<li>Scripts can be added to Script Bay from anywhere on your hard drive by simple drag &amp; drop.</li>
</ul>
<p>We have more exciting plans for Script Bay, and we hope you enjoy Script Bay as much as we do!</p>
<h3>Installation:</h3>
<ol>
<li>Download the latest build of Script Bay <a href="http://in-tools.com/downloads/lab/ScriptBay.zxp">from here</a>.</li>
<li>Double click on the zxp file which should open Extension Manager CS5. (If you are running Windows Vista or Windows 7 with UAC active, you might need to launch Extension Manager as an administrator first.)</li>
<li>Upon launching Extension Manager and initiating the installation, you will see the following window:<br />
<a rel="attachment wp-att-518" href="http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite/attachment/install1"><img class="alignnone size-full wp-image-518" title="install1" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/install1.png" alt="" width="482" height="401" /></a><br />
Click Accept.</li>
<li>You will then see this scary window:<a rel="attachment wp-att-519" href="http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite/attachment/install2"><img class="alignnone size-full wp-image-519" title="install2" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/install2.png" alt="" width="482" height="219" /></a><br />
Click install. Don&#8217;t worry. All this means is we didn&#8217;t yet spend a few hundred dollars on a fancy electronic signature to make this scary window go away.</li>
</ol>
<h3>Use:</h3>
<p>Once installed using the Extension Manager, Script Bay will be available for use in all the supported Creative Suite applications. With the exception of InDesign, Script Bay is available via a menu item in the Extensions sub-menu under the Window menu. In InDesign and InCopy, it is available in the same sub-menu as the built-in Script panel (i.e. in the Utilities sub-menu.)</p>
<p>Using Script Bay should be very self explanatory. You can launch a script by double clicking on it, by right clicking and selecting run script, or by clicking on the Run button. If multiple scripts are selected, the run button will run them all.</p>
<p>For a script to be edited in Script Bay&#8217;s script editor, the script editor must be visible. You can reveal the script editor by clicking on the code button: <a rel="attachment wp-att-524" href="http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite/attachment/code_button"><img class="alignnone size-full wp-image-524" title="code_button" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/code_button.png" alt="" width="20" height="12" /></a></p>
<p>Once the script editor is open, you can click on the &#8220;edit&#8221; button to load the currently selected script, or just drag a script into the editor area from either the script list or tree, or from a file in you computer&#8217;s file system.</p>
<p>When you are finished editing the script, you can run it directly from the editor to test that it works correctly, or save it into the currently selected folder.</p>
<p>To quickly run a script, you can type part of the script name into the script filter, and launch the script by hitting &#8220;return&#8221;.</p>
<h3>Known Issues:</h3>
<ol>
<li>Drag and Drop does not work perfectly in all the applications. The application which apparently has the most issues is Photoshop. The problems apparently stem from some bugs in the CS SDK, and Adobe is working on solving these issues.</li>
<li>Scripts in InDesign are all run under a single persistent engine. #targetengine directives are currently ignored. We hope to deal with this issue at a later date.</li>
<li>The script editor currently supports Javascript and ExtendScript only. AppleScript and VBScript can not be run from the script editor.</li>
<li>Applescripts and VBScripts in Photoshop and Illustrator do not currently work when run from Script Bay.</li>
<li>A number of the commands do not yet work in Fireworks and Flash. These include Rename, Open, Reveal, Install, and Reveal Installed Scripts.</li>
</ol>
<h3>Here&#8217;s a few screen shots:</h3>
<div id="attachment_525" class="wp-caption alignnone" style="width: 233px"><img class="size-full wp-image-525 " title="script_bay_illy" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/script_bay_illy.png" alt="" width="223" height="372" /><p class="wp-caption-text">Script Bay Tree View</p></div>
<div id="attachment_527" class="wp-caption alignnone" style="width: 224px"><img class="size-full wp-image-527 " title="filtered_illy" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/filtered_illy1.png" alt="" width="214" height="300" /><p class="wp-caption-text">Filtered Script List</p></div>
<div id="attachment_528" class="wp-caption alignnone" style="width: 567px"><img class="size-full wp-image-528    " title="Script Bay with Editor" src="http://in-tools.com/wordpress/wp-content/uploads/2010/07/editor_open.png" alt="" width="557" height="382" /><p class="wp-caption-text">With Script Editor Open</p></div>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/script-bay/script-panel-replacement-for-the-entire-creative-suite/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>New downloads of AutoFlow Pro and Multilingual Tools</title>
		<link>http://in-tools.com/wordpress/content/new-downloads-of-autoflow-pro-and-multilingual-tools</link>
		<comments>http://in-tools.com/wordpress/content/new-downloads-of-autoflow-pro-and-multilingual-tools#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:50:33 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Content]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=505</guid>
		<description><![CDATA[The builds of AutoFlow Pro an Multilingual Tools of the most recent release were corrupted. If you downloaded either one since yesterday please download it again.
For your convenience, here are direct links:
Mutilingual Tools Macintosh
Mutilingual Tools Windows
AutoFlow Pro Mactintosh
AutoFlow Pro Windows
InSefer Macintosh
InSefer Windows
InBook Macintosh
InBook Windows
]]></description>
			<content:encoded><![CDATA[<p>The builds of AutoFlow Pro an Multilingual Tools of the most recent release were corrupted. If you downloaded either one since yesterday please download it again.</p>
<p>For your convenience, here are direct links:</p>
<p><a href="http://in-tools.com/indesign/plugins/multilingualtools_1_0_4_mac.zip">Mutilingual Tools Macintosh</a><br />
<a href="http://www.in-tools.com/indesign/plugins/multilingualtools_1_0_4_win.zip">Mutilingual Tools Windows</a><br />
<a href="http://www.in-tools.com/indesign/plugins/autoflowpro_mac_1_0_7.zip">AutoFlow Pro Mactintosh</a><br />
<a href="http://www.in-tools.com/indesign/plugins/autoflowpro_mac_1_0_7.zip">AutoFlow Pro Windows</a><br />
<a href="http://www.in-tools.com/indesign/plugins/insefer_1_0_7_mac.zip">InSefer Macintosh</a><br />
<a href="http://www.in-tools.com/indesign/plugins/insefer_1_0_7_win.zip">InSefer Windows</a><br />
<a href="http://www.in-tools.com/indesign/plugins/inbook_1_0_7_mac.zip">InBook Macintosh</a><br />
<a href="http://www.in-tools.com/indesign/plugins/inbook_1_0_7_win.zip">InBook Windows</a></p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/content/new-downloads-of-autoflow-pro-and-multilingual-tools/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Improved Column Flow</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow#comments</comments>
		<pubDate>Thu, 17 Jun 2010 21:57:15 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Column Flow]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Span Columns]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=471</guid>
		<description><![CDATA[Column Flow got some real major improvements!]]></description>
			<content:encoded><![CDATA[<p><a href="http://in-tools.com/wordpress/indesign/plugins/in-tools-plugins-now-cs5-compatible">In a recent post</a> we kind of slipped in a whole bunch of improvements. The biggest one is probably Column Flow.</p>
<p><span id="more-471"></span>The most obvious improvement is the way settings are set. In previous version of Column Flow, the column settings had to be set by changing the style names. Now column settings can be set using a much more intuitive dialog:</p>
<p><a rel="attachment wp-att-472" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/column-flow-styles-dialog"><img class="alignnone size-full wp-image-472" title="Column Flow Styles Dialog" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/Column-Flow-Styles-Dialog.png" alt="" width="496" height="372" /></a></p>
<p>But beyond that, there&#8217;s a whole pile of tricks that you can now do with Column Flow that was not possible before. Just to illustrate some of the improvements, we will show the previous configuration dialog followed by the new one:</p>
<div id="attachment_474" class="wp-caption alignnone" style="width: 492px"><a rel="attachment wp-att-474" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/columnflow_old"><img class="size-full wp-image-474  " title="columnflow old" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/columnflow_old.png" alt="" width="482" height="244" /></a><p class="wp-caption-text">Old Column Flow Settings</p></div>
<div id="attachment_473" class="wp-caption alignnone" style="width: 539px"><a rel="attachment wp-att-473" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/columnflow_settings"><img class="size-full wp-image-473 " title="New ColumnFlow Settings" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/ColumnFlow_Settings.png" alt="" width="529" height="404" /></a><p class="wp-caption-text">New Column Flow Settings</p></div>
<p><strong>However to really appreciate what Column Flow can do for you we&#8217;re going to discuss the Span Columns feature of CS5 a bit.</strong></p>
<p>When we first learned about the Span Columns feature of CS5, we had some real doubts about updating Column Flow for CS5 compatibility. Span Columns is the feature that people have been asking for years, and we developed Column Flow to fill that need. Now with Span Columns, Column Flow is no longer needed. Or so we thought&#8230;</p>
<p>After studying Span Columns however, we came to a very different conclusion. In our opinion, the Span (and Split) Columns feature is perfect for newspaper and advertisement layout. For long-document layout however, we believe it falls short of being the needed solution. Here&#8217;s why:</p>
<ul>
<li>Span Columns works dynamically.<strong> This is great, you say. Right?</strong> Well for short articles, yes it is. <strong>But for long stories? Not so much.</strong> Very long stories can have quite a few column breaks along the way. Even with the incredible job the engineers at Adobe did to optimize the code of breaking the columns, it can be very processor intensive, and editing text at the beginning of a long story can quickly become a very tedious job! Additionally, dynamically created column spanners can be very difficult to adjust. To change the spacing on specific pages would require paragraph-style overrides (if it can be done), which makes the file error prone.</li>
</ul>
<ul>
<li>Span and Split Columns gives very little control over keeps options, and very often keeps are completely ignored to prevent columns from having no text. This can make flowing text correctly extremely difficult!</li>
</ul>
<ul>
<li>Trying to use Span Columns to create a section of text which will always stay together (i.e. keep all paragraphs together) is virtually impossible. InDesign does not have the ability to leave a text column empty. To force a whole section of text to the next page would require manually resizing the text frame &#8212; which defeats the whole point of Span/Split Columns.</li>
</ul>
<ul>
<li>There&#8217;s no way to ensure that a section of text starts on the baseline grid. You need to set the paragraph style to Align to Grid. This is not a solution which will work for headings which must be aligned to grid <strong>only at the top of a column</strong>.</li>
</ul>
<ul>
<li>There&#8217;s no column-balancing functionality included in Span/Split Columns. If it balances, good. If not? Try to balance it yourself.</li>
</ul>
<ul>
<li>Span Columns only helps within a single story. There&#8217;s no way to do cross-story spanning.</li>
</ul>
<ul>
<li>Span Columns does not supply a solution for boxed sections of text.</li>
</ul>
<ul>
<li>Because Span Columns uses one text frame for all the text, transparency settings cannot be applied to headings.</li>
</ul>
<h4>Column Flow addresses all these issues:</h4>
<ul>
<li>Column Flow does not work dynamically, and we believe that for long documents this apparent disadvantage is really a plus!</li>
</ul>
<ul>
<li>Column Flow gives very precise control over keeps with three different levels of strictness to give you your preferred balance between type-fitting and adherence to keeps rules.</li>
</ul>
<ul>
<li>Column Flow gives an option to keep specific numbers of columns together as a unit, so it will not break across pages.</li>
</ul>
<ul>
<li>Column Flow gives precise control over whether text sections are snapped to the baseline grid. This ensures proper alignment of heading text which is normally not baseline aligned.</li>
</ul>
<ul>
<li>While Column Flow will not balance columns in every situation, Column Flow does performs more column balancing than Span Columns. It can even make pages one line long or short if necessary to balance the columns.</li>
</ul>
<ul>
<li>Column Flow can create spanned headings even across different stories when the Story Tools plugin is used to set up Story Strings.</li>
</ul>
<ul>
<li>Column Flow allows for boxed sections to be created with a border or background.</li>
</ul>
<ul>
<li>Because Column Flow creates a separate text frame for each section, transparency effects can be applied automatically to headings specifically.</li>
</ul>
<p><strong>Additionally:</strong></p>
<ul>
<li>When Column Flow is used in conjunction with AutoFlow Pro, master  pages can be automatically applied.</li>
</ul>
<p>Right now, Column Flow can be downloaded as part of the Layout Tools package <a href="http://in-tools.com/wordpress/indesign/plugins/in-tools-plugins-now-cs5-compatible">here</a>.</p>
<p>Full information on the plug-in may be found in the manual <a href="http://www.in-tools.com/downloads/columnflow.pdf">here</a>.</p>
<p>Here are some screen-shots displaying some of the advanced functionality of Column Flow, with and without other In-Tools plug-ins included in the <a href="http://in-tools.com/plugin.php?p=28">InBook plug-in package</a>:</p>
<div id="attachment_485" class="wp-caption alignnone" style="width: 570px"><a rel="attachment wp-att-485" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/columnflow_sample"><img class="size-full wp-image-485 " title="columnflow_sample" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/columnflow_sample.png" alt="" width="560" height="407" /></a><p class="wp-caption-text">Illustration of several InBook components working together</p></div>
<div id="attachment_492" class="wp-caption alignnone" style="width: 568px"><a rel="attachment wp-att-492" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/box_example"><img class="size-full wp-image-492" title="box_example" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/box_example.png" alt="" width="558" height="600" /></a><p class="wp-caption-text">Boxed Text Section Created by Column Flow</p></div>
<div id="attachment_494" class="wp-caption alignnone" style="width: 549px"><a rel="attachment wp-att-494" href="http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/attachment/sefer"><img class="size-full wp-image-494 " title="sefer" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/sefer.png" alt="" width="539" height="642" /></a><p class="wp-caption-text">Hebrew layout</p></div>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/column-flow/new-improved-column-flow/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert All Caps to Small Caps</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/convert-all-caps-to-small-caps</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/convert-all-caps-to-small-caps#comments</comments>
		<pubDate>Wed, 16 Jun 2010 20:56:06 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Formatting Tools]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=456</guid>
		<description><![CDATA[Convert All Caps to Small Caps with Formatting Tools version 1.0.6
Besides providing CS5 support, our newest update for Formatting Tools includes a new function.

You  can now convert all instances of All Caps in your document (or story,  selection, etc) to proper small caps.

This brings the formatting functions included in Formatting Tools up to [...]]]></description>
			<content:encoded><![CDATA[<h3>Convert All Caps to Small Caps with Formatting Tools version 1.0.6</h3>
<p>Besides providing CS5 support, our newest update for Formatting Tools includes a new function.</p>
<p><span id="more-456"></span></p>
<p>You  can now convert all instances of All Caps in your document (or story,  selection, etc) to proper small caps.</p>
<p><a rel="attachment wp-att-457" href="http://in-tools.com/wordpress/indesign/plugins/formatting-tools/convert-all-caps-to-small-caps/attachment/all_caps_to_small_caps"><img class="alignnone size-full wp-image-457" title="all_caps_to_small_caps" src="http://in-tools.com/wordpress/wp-content/uploads/2010/06/all_caps_to_small_caps.png" alt="" width="438" height="177" /></a></p>
<p>This brings the formatting functions included in Formatting Tools up to 8 very useful tools!</p>
<ol>
<li><strong>Conditional Paragraph Style Changer:</strong> changes paragraph styles based on the beginning contents of the paragraph.</li>
<li><strong>Style Between Delimiters:</strong> applies character styles to text between specified delimiters without having to break your head with GREP expressions.</li>
<li><strong>Create Multi-line Styles:</strong> applies paragraph styles to paragraphs with the specified number of lines.</li>
<li><strong>Restyle Consecutive Paragraphs:</strong> applies a different paragraph style to the first and/or last paragraph of a run of consecutive paragraphs.</li>
<li><strong>Apply Next Styles:</strong> applies the &#8220;next style&#8221; settings of the selected paragraph styles in the whole document &#8212; enabling you to quickly apply styles to massive amounts of text.</li>
<li><strong>Create Hyperlinks from URLs:</strong> Intelligently creates proper hyperlinks from URLs in your document.</li>
<li><strong>Change Case by Style:</strong> allows character case to be changed en-mass based on character or paragraph styles. It also can applys Smart Title Case.</li>
<li><strong>Convert All Caps to Small Caps:</strong> Converts all caps to small caps and optionally applies a character style.</li>
</ol>
<p>The newest version can be purchased <a href="http://in-tools.com/plugin.php?p=6">from the product page</a> and downloaded from here: <a href="http://www.in-tools.com/indesign/plugins/formattingtools_mac_1_0_6.zip">Macintosh</a> <a href="http://www.in-tools.com/indesign/plugins/formattingtools_win_1_0_6.zip">Windows</a></p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/convert-all-caps-to-small-caps/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In-Tools plugins now CS5 Compatible</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/in-tools-plugins-now-cs5-compatible</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/in-tools-plugins-now-cs5-compatible#comments</comments>
		<pubDate>Wed, 16 Jun 2010 13:52:56 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[CS5]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=449</guid>
		<description><![CDATA[All out plug-ins are now CS5 compatible!]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been hard at work on some really exciting new developments, but we&#8217;ve taken some time to make sure all our plugins were updated for CS5 compatibility.</p>
<p><span id="more-449"></span></p>
<p>There&#8217;s quite a few new features in many of the InBook/InSefer plugins. We&#8217;ll try to get some documentation up over the next few days.</p>
<p>We&#8217;ve done only basic testing so far, so these should be considered public beta.</p>
<p>For now here&#8217;s direct links to download the updated plugins:</p>
<p>For CS5 compatibility you need the newest version of APID available here:<br />
<a href="http://www.rorohiko.com/downloads/apid/APIDToolAssistant_Mac_CS5.1.0.49.2.zip">Macintosh</a> <a href="http://www.rorohiko.com/downloads/apid/APIDToolAssistant_Win_CS5.1.0.49.2.zip">Windows</a></p>
<ul>
<li><strong>InSefer: </strong> <a href="http://in-tools.com/indesign/plugins/insefer_1_0_7_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/insefer_1_0_7_win.zip">Windows</a></li>
<li><strong>InBook: </strong> <a href="http://in-tools.com/indesign/plugins/inbook_1_0_7_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/inbook_1_0_7_win.zip">Windows</a></li>
</ul>
<ul>
<li><strong>AutoFlow Pro: </strong> <a href="http://in-tools.com/indesign/plugins/autoflowpro_mac_1_0_7.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/autoflowpro_win_1_0_7.zip">Windows</a></li>
<li><strong>Drop Words:</strong> <a href="http://in-tools.com/indesign/plugins/dropwords_1_0_4_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/dropwords_1_0_4_win.zip">Windows</a></li>
<li><strong>Formatting Tools:</strong> <a href="http://in-tools.com/indesign/plugins/formattingtools_mac_1_0_6.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/formattingtools_win_1_0_6.zip">Windows</a></li>
<li><strong>Layout Tools:</strong> <a href="http://in-tools.com/indesign/plugins/layouttools_1_0_6_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/layouttools_1_0_6_win.zip">Windows</a></li>
<li><strong>Power Headers:</strong> <a href="http://in-tools.com/indesign/plugins/powerheaders_2_0_3_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/powerheaders_2_0_3_win.zip">Windows</a></li>
<li><strong>Proper VJ: </strong> <a href="http://in-tools.com/indesign/plugins/proper_vj_1_0_5_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/proper_vj_1_0_5_win.zip">Windows</a></li>
<li> <strong>Reflective Objects:</strong> <a href="http://in-tools.com/indesign/plugins/reflective_1_0_4_mac.zip">Macintosh</a> <a href="http://in-tools.com/indesign/plugins/reflective_1_0_4_win.zip">Windows</a></li>
</ul>
<p>The existing version of World Tools should work with CS5 as-is, but we will soon be releasing a new, improved version.</p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/in-tools-plugins-now-cs5-compatible/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Formatting Tools 1.0.5</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5#comments</comments>
		<pubDate>Sun, 11 Apr 2010 23:37:22 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Formatting Tools]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=433</guid>
		<description><![CDATA[Version 1.0.5 of Formatting Tools adds two new features: "Create Hyperlinks from URLs", and "Change Case by Style".

These are both very commonly requested features, and we're really happy to finally getting them added.]]></description>
			<content:encoded><![CDATA[<p>Version 1.0.5 of Formatting Tools adds two new features: &#8220;Create Hyperlinks from URLs&#8221;, and &#8220;Change Case by Style&#8221;.</p>
<p>These are both very commonly requested features, and we&#8217;re really happy to finally getting them added. This brings the total number of really useful utilities included in Formatting Tools up to seven. (&#8220;Conditional Paragraph Style Changer&#8221;, &#8220;Style Between Delimiters&#8221;, &#8220;Create One and Two Line Styles&#8221;, &#8220;Restyle Consecutive Paragraphs&#8221;, &#8220;Apply Next Styles&#8221;, &#8220;Create Hyperlinks From URLs&#8221;, and &#8220;Change Case By Style&#8221;.<span id="more-433"></span><strong></strong></p>
<p>You can download the new version of Formatting Tools from here for <a href="http://in-tools.com/indesign/Plugins/formattingtools_mac_1_0_5.zip">Macintosh</a> and here for <a href="http://in-tools.com/indesign/Plugins/formattingtools_win_1_0_5.zip">Windows</a></p>
<h3>Installation:</h3>
<p>Unzip the files, and drag the whole &#8220;Formatting Tools&#8221; folder to your plug-ins folder. If you don&#8217;t have APID installed, make sure to download it from <a href="http://in-tools.com/downloads.html#APID">here</a> and install it.</p>
<p><strong>Create Hyperlinks from URLs</strong> will automatically create hyperlinks from any text it recognizes as a valid URL. It&#8217;s very smart, and will ignore manually inserted line breaks on long URLs as well.</p>
<p><a rel="attachment wp-att-434" href="http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5/attachment/hyperlink_dialog"><img class="alignnone size-full wp-image-434" title="hyperlink_dialog" src="http://in-tools.com/wordpress/wp-content/uploads/2010/04/hyperlink_dialog.png" alt="" width="422" height="112" /></a></p>
<p>You can select the character style to apply as well as the scope of text to change (Document, Story, or Selection).</p>
<p><strong>Change Case by Style</strong> will change all text with the specified style(s) to the selected case.</p>
<p><a rel="attachment wp-att-435" href="http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5/attachment/change_case_by_style"><img class="alignnone size-full wp-image-435" title="change_case_by_style" src="http://in-tools.com/wordpress/wp-content/uploads/2010/04/change_case_by_style.png" alt="" width="438" height="177" /></a></p>
<p>There are four different options: UPPERCASE, lowercase, Smart Title Case, and Sentence case. Uppercase, lowercase, and sentence case are the same results you would get by changing the case manually. Smart Title Case, is (as the name suggests) very smart! It will automatically convert text to title case based on complex rules!</p>
<p><strong>The rules which the title case uses are as follows:</strong><br />
The first and last words are always capitalized, as well as any word following a period (full stop) or colon. Any compound word separated by a “/”, “.”, dash or m-dash will have the letter immediately following the separator capitalized. Any other word will be capitalized unless it appears in the _title_lowercase.txt file. Any word appearing in the file will be lowercase only if it is not a “starting” word. For example: In the title, “The Last of the Mohicans”, the first word “the” will be capitalized, while the second time “the” appears will not. This is because the first word is the beginning of the sentence. Similarly, in the title, “Lion: The King of the Jungle”, the first word “the” will be capitalized because it follows a colon. The lowercase word file can be edited to include any words you like. All words should be separated by a single space.</p>
<p>Any word appearing in the _title_specialcase.txt file will always be capitalized exactly as it appears in the file, regardless of position. This is useful for words like “InDesign”, “USA”, “UK”, etc., which have capitals in the middle of the word. This file can also be used to force lowercase on specific words and override the default rules. So, let’s assume you would like the word “a” to always be lowercase, even if it is the first word in your header text. You would simply put the word “a” in your special case file, and it will always be lowercase. When a word appears in both files, the special case file supersedes the lowercase one.</p>
<p>The Smart Title Case of Formatting Tools uses the same logic as the Smart Title Case of <a href="http://in-tools.com/powerheaders.html">Power Headers</a>, and you can (and should) use a single set of text files for both plug-ins. If the text files are placed anywhere within the plug-ins folder, they will work. You can also place the files somewhere on your hard disk, and create shortcuts/aliases in the plug-ins folder to the files.</p>
<p>You can select a paragraph style, a character style, or both for options of which text to convert. You can also select what scope of text to convert (Document, Story, or Selection). If neither a character style or paragraph style is selected, all the text in the selected scope will be converted.</p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/formatting-tools/formatting-tools-1-0-5/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FiddleScript: InDesign Scripting Simplified</title>
		<link>http://in-tools.com/wordpress/indesign/scripts/fiddlescript-indesign-scripting-simplified</link>
		<comments>http://in-tools.com/wordpress/indesign/scripts/fiddlescript-indesign-scripting-simplified#comments</comments>
		<pubDate>Wed, 03 Mar 2010 12:16:55 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[FiddleScript]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=394</guid>
		<description><![CDATA[Dealing with scripts can be a little daunting for a lot of users of InDesign. Once you get the hang of it, it's not that hard, but you need to create files in the correct format, name them with the correct extension, and save them in the correct place. We've created a script which we hope will make life a lot easier.

<strong>FiddleScript -- Your tool to (not have to) fiddle with scripts.</strong>]]></description>
			<content:encoded><![CDATA[<p>Dealing with scripts can be a little daunting for a lot of users of InDesign. Once you get the hang of it, it&#8217;s not that hard, but you need to create files in the correct format, name them with the correct extension, and save them in the correct place. We&#8217;ve created a script which we hope will make life a lot easier.</p>
<p><strong>FiddleScript &#8212; Your tool to fiddle with scripts (without having to fiddle too much).</strong><span id="more-394"></span></p>
<p><a href="http://in-tools.com/downloads/indesign/scripts/FiddleScript.zip">Download the script from here.</a></p>
<p><strong>If you are using CS4 or later</strong>, you can download the Extension Manager installer instead <a href="http://in-tools.com/downloads/indesign/scripts/FiddleScript.mxp">from here.</a></p>
<h3>Compatibility:</h3>
<p>FiddleScript is compatible with InDesign CS3 and higher.</p>
<h3>Manual Installation:</h3>
<ol>
<li><a href="http://in-tools.com/downloads/indesign/scripts/FiddleScript.zip">Download the zip file from here.</a></li>
<li>Unzip the file.</li>
<li>Place the resulting file (FiddleScript.jsxbin) in your Script Panel folder.</li>
</ol>
<ul>
<li>There is a Scripts Panel folder in your application folder, as well as your user data folder either one will work. If you want the script to be accessible by all users, make sure to put it in the main application folder.</li>
<li>For more information on how to locate your script folder, please read this help file <a href="http://help.adobe.com/en_US/InDesign/6.0/WS0836C26E-79F9-4c8f-8150-C36260164A87a.html">here</a>.</li>
</ul>
<h3>Extension Manager (CS4 or later) Installation:</h3>
<ol>
<li><a href="http://in-tools.com/downloads/indesign/scripts/FiddleScript.mxp">Download the .mxp file from here.</a></li>
<li>Double-click on the file, and the Extension Manager will install the script into your main Scripts Panel folder.</li>
</ol>
<ul>
<li>The mxp installer file is designed to work with Adobe Extension Manager Versions CS4 or later. If you have other versions of Creative Suite products installed there is a possibility that your operating system may associate mxp files with an earlier version of the Extension Manager and will try to use that when you double-click the file. If that happens you will see an error alert similar to the one pictured below:<br />
<img class="alignnone size-full wp-image-331" title="em_error" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/em_error.png" alt="" width="420" height="156" /><br />
If you do, make sure you use the  &#8220;open with..&#8221; option (by right clicking on the file), and open with the  correct version of Extension Manager (i.e. Extension Manager CS4).</li>
<li>Alternately, you can open the Extension Manager, and click Install as shown below.<a rel="attachment wp-att-332" href="http://in-tools.com/wordpress/indesign/scripts/quick-reference-script/attachment/em_install"><img class="alignnone size-full wp-image-332" title="Extension Manager install" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/em_install.png" alt="" width="450" height="300" /></a></li>
</ul>
<h3>Usage:</h3>
<p>To run FiddleScript, double-click on the script in your Script Panel. This will bring up a dialog like the one shown:</p>
<p><a href="http://in-tools.com/wordpress/wp-content/uploads/2010/03/FiddleScript.png"><img class="alignnone size-full wp-image-396" title="FiddleScript" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/FiddleScript.png" alt="" width="529" height="379" /></a></p>
<ol>
<li>Copy the script code from wherever you got it, and paste the code into the text area.<a href="http://in-tools.com/wordpress/wp-content/uploads/2010/03/FiddleScript_before.png"><img class="alignnone size-full wp-image-399" title="FiddleScript_before" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/FiddleScript_before.png" alt="" width="453" height="325" /></a></li>
<li>To see the results of the script, click Run Script. If you are using CS4, you will be able to undo the whole script in one step.</li>
<li>If you are happy with your script, just click Save Script, type in a name, and your script will be saved to the Scripts Panel.</li>
</ol>
<h3>Some Quick Pointers on Using FiddleScript</h3>
<ul>
<li>You can click on Load Script to populate the text area with code from a saved script. This is great for making a quick edit on an existing script without ever leaving InDesign. When you are done editing, Just click on Save Script, and you can save it back to your Scripts Panel. You can use the same name to overwrite the original script, or choose a new one.</li>
<li>After saving a new script to the Scripts Panel, you will need to refresh the Scripts Panel display for it to become visible. To refresh the Panel display you can either close it and re-open it, or switch away from InDesign to another program, and back again.</li>
<li>The current script will be saved for subsequent runs of FiddleScript. This makes it easy to check the script (or run it numerous times), without having to paste the script into the dialog each time.</li>
<li><strong>You cannot type a return or tab character into the text in FiddleScript&#8217;s dialog</strong>. If you need to type a return or tab, use the buttons at the top of the dialog.</li>
<li><strong>FiddleScript can make your saved script undoable in one step in CS4 and later.</strong> To facilitate this, it can wrap your script in a function which can be run in CS4 and later as a single step. By default, the undo Name will be &#8220;Run Script&#8221;, but you can change it to whatever you want by replacing &#8220;Run Script&#8221; at the end of the wrapper to whatever you&#8217;d like it to be called.
<p><div id="attachment_403" class="wp-caption alignnone" style="width: 463px"><a rel="attachment wp-att-403" href="http://in-tools.com/wordpress/indesign/scripts/fiddlescript-indesign-scripting-simplified/attachment/fiddlescript_wrapped"><img class="size-full wp-image-403  " title="FiddleScript_wrapped" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/FiddleScript_wrapped.png" alt="" width="453" height="325" /></a><p class="wp-caption-text">After Wrapped the Script in a Function</p></div></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/scripts/fiddlescript-indesign-scripting-simplified/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Line Numbering</title>
		<link>http://in-tools.com/wordpress/indesign/scripts/line-numbering</link>
		<comments>http://in-tools.com/wordpress/indesign/scripts/line-numbering#comments</comments>
		<pubDate>Mon, 01 Mar 2010 12:04:15 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=379</guid>
		<description><![CDATA[Did you ever wish InDesign had the ability to number your lines? Well now it does with a little script!]]></description>
			<content:encoded><![CDATA[<p>Did you ever wish InDesign had the ability to number your lines? Well now it does with a little script!<span id="more-379"></span></p>
<p>&#8220;Number Lines by Style&#8221; is a script which allows you to add line numbers to text of specific styles. I works by adding anchored text frames at the start of each line. The script will number lines on the current page only.</p>
<p>&#8220;Number Lines by Style&#8221; was written in its original form for <a href="http://korenpub.com/">Koren Publishers</a> we thank them for their consent to share it!</p>
<p><a href="http://in-tools.com/downloads/indesign/scripts/NumberLinesByStyle.zip">Please download the script from here.</a></p>
<h3>Usage</h3>
<ol>
<li>Place the script in your Scripts Panel folder</li>
<li>Make sure the correct page is active</li>
<li>Double click on the script in the Scripts Panel</li>
<li>Select the style or styles to number and click OK.</li>
</ol>
<h3>Examples of Use</h3>
<p>Here we have a shopping list of the most important things that you could possibly need. <img src='http://in-tools.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-381" title="example_1_before" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_1_before.png" alt="" width="528" height="312" /></p>
<p>We want to number the list items, so we run the script, and select the Numbered Lines paragraph style:</p>
<p><img class="alignnone size-full wp-image-382" title="example_1_dialog" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_1_dialog.png" alt="" width="375" height="251" /></p>
<p>Which numbers our items:</p>
<p><img class="alignnone size-full wp-image-383" title="example_1_after" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_1_after.png" alt="" width="534" height="315" /></p>
<p>Of course the example is kind of silly, because we can just use paragraph numbers. The one situation similar to this, where you might want to use this script, is when you&#8217;d need the numbers outside the text frame.</p>
<p>A more classic example would be a sitaution where you&#8217;d need every line numbered, and the paragraphs are more than one line long:</p>
<p><img class="alignnone size-full wp-image-384" title="example_2_before" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_2_before.png" alt="" width="429" height="554" /></p>
<p>In this case, you&#8217;d run the script and select all the styles used in the essay:</p>
<p><img class="alignnone size-full wp-image-385" title="example_2_dialog" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_2_dialog.png" alt="" width="375" height="251" /></p>
<p>Presto! numbered lines:</p>
<p><img class="alignnone size-full wp-image-386" title="example_2_after" src="http://in-tools.com/wordpress/wp-content/uploads/2010/03/example_2_after.png" alt="" width="474" height="567" /></p>
<ul>
<li>The script uses an object style for the anchored text frames, as well as a paragraph style for the numbers within the frame. You can adjust these styles to tweak the positioning and formatting of the numbers.</li>
</ul>
<p><strong>Have fun!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/scripts/line-numbering/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Power Headers 2.0.2 update</title>
		<link>http://in-tools.com/wordpress/indesign/plugins/power-headers/power-headers-2-0-2-update</link>
		<comments>http://in-tools.com/wordpress/indesign/plugins/power-headers/power-headers-2-0-2-update#comments</comments>
		<pubDate>Thu, 25 Feb 2010 13:01:44 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Power Headers]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=364</guid>
		<description><![CDATA[We've updated Power Headers to version 2.0.2!
<a href="http://in-tools.com/downloads.html#runningheaders">Get it here!</a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://in-tools.com/downloads.html#runningheaders">We&#8217;ve updated Power Headers to version 2.0.2!</a></p>
<p>This update fixes various bugs, and all users should update.</p>
<p><a href="http://in-tools.com/downloads.html#runningheaders">Please download the update from the downloads page.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/plugins/power-headers/power-headers-2-0-2-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
