<?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 &#187; InDesign</title>
	<atom:link href="http://in-tools.com/wordpress/tag/indesign/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>2</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>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>20</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>
		<item>
		<title>Quick Reference Script</title>
		<link>http://in-tools.com/wordpress/indesign/scripts/quick-reference-script</link>
		<comments>http://in-tools.com/wordpress/indesign/scripts/quick-reference-script#comments</comments>
		<pubDate>Wed, 24 Feb 2010 13:22:36 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[cross reference]]></category>
		<category><![CDATA[extension manager]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=329</guid>
		<description><![CDATA[Taking the pain out of cross reference creation&#8230;
Quick Reference is a script created to simplify the process of creating cross references. Thanks to David Blatner on his helpful suggestions when we were creating this script. You can read more about Quick Reference on InDesign Secrets here.
Creating cross references in InDesign is a somewhat painful process. [...]]]></description>
			<content:encoded><![CDATA[<h2>Taking the pain out of cross reference creation&#8230;</h2>
<p>Quick Reference is a script created to simplify the process of creating cross references. Thanks to David Blatner on his helpful suggestions when we were creating this script. You can read more about Quick Reference on InDesign Secrets <a href="http://www.indesignsecrets.com/create-a-cross-reference-quickly-with-this-free-script.php" target="_blank">here.<span id="more-329"></span></a></p>
<p>Creating cross references in InDesign is a somewhat painful process. You need to find the destination, and create a destination anchor. You then need to select the source text and create the new cross reference. You can also use references to text without anchors, but that&#8217;s even more painful to create.</p>
<p>We created Quick Reference to make this process less painful. To use Quick Reference, you just select the source text, and Quick Reference will give you a list of potential destinations. You just select the correct one, and hit enter. Quick Reference will do the rest of the work for you.</p>
<h3>Installation:</h3>
<p>We are including two different files for download: a zip file of the script, and an Extension Manager &#8220;mxp&#8221; file. You can use <em>either one</em> to install the script. Please download one (or both) of the files from here: <a href="http://in-tools.com/downloads/indesign/scripts/QuickReference.mxp">Extension Manager File</a> or <a href="http://in-tools.com/downloads/indesign/scripts/QuickReference.zip">Zip File</a></p>
<p><strong>Installation using Extension Manager:<br />
</strong><br />
Installation should be as simple as a double click on the &#8220;MXP&#8221; file.</p>
<p><img class="alignnone size-full wp-image-330" title="qr_mxp" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_mxp.png" alt="qr_mxp" width="307" height="250" /></p>
<p>If you have CS3 installed, you might get an error when trying to open the file such as the one shown:</p>
<p><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="em_error" width="420" height="156" /></p>
<p>This is because Extension Manager (CS3) is trying to open the package and does not recognize CS4. If you get this error, you will need to install manually or to change the default application which opens the mxp file to Extension Manager CS4.</p>
<p>To install manually, open Extension Manager CS4 and click on the install button shown:</p>
<p><a href="http://in-tools.com/wordpress/wp-content/uploads/2010/02/em_install.png"><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="Extension Manager install" width="450" height="300" /></a></p>
<p>Once Extension Manager installs the script, you can enable and disable the script in Extension Manager:</p>
<p><a href="http://in-tools.com/wordpress/wp-content/uploads/2010/02/em_screenshot.png"><img class="alignnone size-full wp-image-339" title="em_screenshot" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/em_screenshot.png" alt="em_screenshot" width="450" height="300" /></a></p>
<p>If using Extension Manager is too much trouble, you can install the script manually.</p>
<p>To do this, <a href="http://in-tools.com/downloads/indesign/scripts/QuickReference.zip">download the zip file</a> and decompress it.</p>
<p>You&#8217;ll need to place the whole folder as-is in you main scripts folder:</p>
<p><img class="alignnone size-full wp-image-342" title="qr_script_folder" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_script_folder.png" alt="qr_script_folder" width="339" height="213" /></p>
<h3>Usage:</h3>
<p>Using Quick Reference is easy.</p>
<ol>
<li>Select Source Text:
<p><div id="attachment_344" class="wp-caption alignnone" style="width: 447px"><img class="size-full wp-image-344" title="qr_select_text" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_select_text.png" alt="qr_select_text" width="437" height="246" /><p class="wp-caption-text">Select Source Text</p></div></li>
<li>Select Create Quick Reference:<br />
<img class="alignnone size-full wp-image-351" title="qr_menu" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_menu.png" alt="qr_menu" width="580" height="247" /></li>
<li>Select the destination in the dialog:<img class="alignnone size-full wp-image-355" title="qr_single_doc" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_single_doc.png" alt="qr_single_doc" width="504" height="322" /></li>
<li>When you have the correct destination selected, hit Create, and you&#8217;re done!</li>
</ol>
<p><strong>A few tips on the use of Quick Reference:</strong></p>
<ul>
<li>You must select the correct Cross Reference Format to use for your cross reference. (You can create or change them in the cross reference panel.) The selection should be the last format used in your document</li>
<li>Quick Reference will either replace the current selection with a cross reference, or append the cross reference to the end of your selection. You should select the correct radio button.</li>
<li>Quick Reference ignores trailing punctuation and spaces. If you want punctuation and/or space between the selected text and the cross reference make sure you select the trailing punctuation and/or trailing space.</li>
<li>The listing of destinations will usually be in order within the text, so the correct destination will usually be the top one on the page.</li>
<li>If the document is part o a book and the book document is open. Quick Reference will find destinations in the entire book. When this is the case, the name of the destination document will appear in the list of destinations.<img class="alignnone size-full wp-image-353" title="qr_select_target" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/qr_select_target.png" alt="qr_select_target" width="504" height="322" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/scripts/quick-reference-script/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Fun With Text Fitting in InDesign</title>
		<link>http://in-tools.com/wordpress/indesign/scripts/fun-with-text-fitting-in-indesign</link>
		<comments>http://in-tools.com/wordpress/indesign/scripts/fun-with-text-fitting-in-indesign#comments</comments>
		<pubDate>Thu, 18 Feb 2010 11:01:41 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Text]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=316</guid>
		<description><![CDATA[One of the most tedious jobs is fitting text to the space it is supposed to take up. A little bigger, a little smaller, wait! the text is different sizes... sigh... Well, here's a few scripts to help with a couple of different situations...]]></description>
			<content:encoded><![CDATA[<p>One of the most tedious jobs is fitting text to the space it is supposed to take up. A little bigger, a little smaller, wait! the text is different sizes&#8230; sigh&#8230; Well, here&#8217;s a few scripts to help with a couple of different situations&#8230;</p>
<p><span id="more-316"></span><br />
<a href="http://in-tools.com/downloads/indesign/scripts/TextFittingScripts.zip"> Before we go on, make sure you download the scripts from here.</a></p>
<h3>Situation #1</h3>
<p>You have a headline which must fit to the margin widths. It may even be a two line heading. <strong>What to do?</strong></p>
<p><strong>&#8220;Fit Text To Frame&#8221; to the rescue!</strong></p>
<div id="attachment_317" class="wp-caption alignnone" style="width: 657px"><img class="size-full wp-image-317" title="headline_before" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/headline_before.png" alt="Before" width="647" height="213" /><p class="wp-caption-text">Before</p></div>
<div id="attachment_318" class="wp-caption alignnone" style="width: 671px"><img class="size-full wp-image-318" title="headline_after" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/headline_after.png" alt="After" width="661" height="203" /><p class="wp-caption-text">After</p></div>
<p>There&#8217;s two scripts which are used in this situation: FitTextPrefs, and FitTextToFrame.</p>
<p>FitTextPrefs allows you to set some simple preferences for the Fit Text to Frame script. When you run FitTextPrefs, you get presented with a dialog with four options:</p>
<p><img class="alignnone size-full wp-image-319" title="text_fit_prefs" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/text_fit_prefs.png" alt="text_fit_prefs" width="473" height="117" /></p>
<p>The first two options will expand the text frame down to the bottom baseline or descender respectively <em>only if necessary</em>.</p>
<p>The last two options will move the frame bottom either up or down to fit the frame bottom ensuring that the frame bottom always fits the text.</p>
<p>Once we set the preferences, a simple double-click on the FitTextToFrame script will fit the text of the current frame.</p>
<p><strong>Some quick pointers on using Fit Text to Frame:</strong></p>
<ul>
<li>Fit Text to Frame will attempt to bring any overset text back into the text frame. This might result in more than one line.</li>
<li>If there are multiple lines in the text frame, the text of the longest line will be fit to the frame. All other text will be scaled proportionally.</li>
<li>Text of different sizes will all be scaled proportionally.</li>
<li>If all the text cannot be fit, Fit Text to Frame will abort.</li>
<li>Fit Text to Frame does not adjust leading. If there are multiple lines, it usually works best if  the leading is set to &#8220;Auto&#8221;.</li>
</ul>
<h3>Situation #2</h3>
<p>You have the unlucky job of fitting a story into a predefined space. You tried to explain to the client that to properly fit text takes a lot of finesse and very often copy-editing, but they won&#8217;t hear of it. You will need to fit the text exactly to the text frame precisely 30 seconds before it goes to press. <img src='http://in-tools.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> <strong> </strong></p>
<p><strong>Fill Text Frame to the rescue!</strong></p>
<div id="attachment_320" class="wp-caption alignnone" style="width: 567px"><img class="size-full wp-image-320" title="fill_before" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/fill_before.png" alt="Before Fill" width="557" height="349" /><p class="wp-caption-text">Before Fill</p></div>
<div id="attachment_321" class="wp-caption alignnone" style="width: 564px"><img class="size-full wp-image-321" title="fill_after" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/fill_after.png" alt="After Fill" width="554" height="342" /><p class="wp-caption-text">After Fill</p></div>
<p>Fill Text Frame is really very basic. It will scale all the text currently in the frame to the maximum size that will fit in the frame without spilling out of the frame.</p>
<ul>
<li>Fill Text Frame will not bring back any text which is overset.</li>
<li>Fill Text Frame scales all the text proportionally.</li>
<li>Fill Text Frame does not adjust leading. It usually works best if the leading is set to &#8220;Auto&#8221;.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/scripts/fun-with-text-fitting-in-indesign/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Scale Graphics Script</title>
		<link>http://in-tools.com/wordpress/indesign/scripts/scale-graphics-script</link>
		<comments>http://in-tools.com/wordpress/indesign/scripts/scale-graphics-script#comments</comments>
		<pubDate>Wed, 17 Feb 2010 11:22:42 +0000</pubDate>
		<dc:creator>Harbs</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://in-tools.com/wordpress/?p=308</guid>
		<description><![CDATA[The issue has come up quite a few times that users of InDesign need to scale placed graphics en-mass. We've written quite a few script-lets over the years, but we finally decided to create a UI which gives all the options generally needed in an easy-to-use format.]]></description>
			<content:encoded><![CDATA[<p>The issue has come up quite a few times that users of InDesign need to scale placed graphics en-mass. We&#8217;ve written quite a few script-lets over the years, but we finally decided to create a UI which gives all the options generally needed in an easy-to-use format.</p>
<p><span id="more-308"></span></p>
<p><a title="Scale Graphics" href="http://in-tools.com/downloads/indesign/scripts/ScaleGraphics.zip">The script can be downloaded from here</a>, and it supports InDesign CS3 and CS4.</p>
<p><img class="alignnone size-full wp-image-309" title="scale_graphics" src="http://in-tools.com/wordpress/wp-content/uploads/2010/02/scale_graphics.png" alt="scale_graphics" width="405" height="312" /></p>
<h3>The options are pretty straight-forward:</h3>
<ol>
<li><strong>Scaling:</strong> You can select the horizontal and vertical scale, that you would like to make the images.
<ul>
<li>Next to the horizontal and vertical scaling fields, there is a check-mark labeled &#8220;Relative&#8221;. If this check-mark is checked, the images will be scaled to a percentage <strong>of their current size</strong>. If the check-mark is not checked, the scaling will be done to absolute values.</li>
</ul>
</li>
<li><strong>Image Offset:</strong> You can set an offset for the images. <em>Please note:</em> The images will be offset &#8212; not the graphic frame which contains them. This might change the way an image is cropped.</li>
<li><strong>Location:</strong> Images can be scaled/moved on the current page, spread, or the entire document.</li>
<li><strong>Relative Location:</strong> The graphics can first be centered before they are scaled. If &#8220;Centered&#8221; is selected, the graphics will be centered within their frames.</li>
<li><strong>Fitting:</strong> There are 6 fitting options, which besides for &#8220;None&#8221; correspond to the fitting options available in the Object menu.</li>
<li><strong>Limit to Images:</strong> If this check-mark is checked, only raster images will be scaled or moved.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://in-tools.com/wordpress/indesign/scripts/scale-graphics-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
