<?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>FrameAutomation.com</title>
	<atom:link href="http://frameautomation.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frameautomation.com</link>
	<description>Making FrameMaker faster and more efficient</description>
	<lastBuildDate>Fri, 27 Jan 2012 15:20:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using a regular expression to convert an image name to a path</title>
		<link>http://frameautomation.com/2011/07/01/using-a-regular-expression-to-convert-an-image-name-to-a-path/</link>
		<comments>http://frameautomation.com/2011/07/01/using-a-regular-expression-to-convert-an-image-name-to-a-path/#comments</comments>
		<pubDate>Fri, 01 Jul 2011 20:26:50 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[ExtendScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=175</guid>
		<description><![CDATA[Mike and I started an interesting discussion about using ExtendScript to import images from a base file name that the user enters. One of the key tasks is to figure out how to take a base file name that uses their syntax and derive a full path from it. Based on Mike&#8217;s examples, I came [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Mike and I started an interesting discussion about using <a href="http://frameautomation.com/?p=162">ExtendScript to import images from a base file name</a> that the user enters. One of the key tasks is to figure out how to take a base file name that uses their syntax and derive a full path from it. Based on Mike&#8217;s examples, I came up with the following ExtendScript function:</p>
<pre>alert (getImagePath ("MSP4321"));

function getImagePath (imageName) {

  var regex = /([A-Z]{3})((\d)\d)(\d\d)/;
  var path = "\\\\server\\Graphics\\$1\\$1$3000-$3999\\$1$200-$299\\$1$2$4.pdf";

  if (imageName.search(regex) !== -1) {
    return imageName.replace (regex, path);
  } else {
    return null;
  }
}</pre>
<p>This function illustrates the power of regular expressions. The basic regular expression is this:</p>
<p>Find 3 uppercase letters: [A-Z]{3}</p>
<p>followed by four digits: \d\d\d\d</p>
<p>The parentheses &#8220;capture&#8221; parts of the match and put them into special variables in the form of $#, where # is a number from 1 to 9. To figure out what number goes with what set of parentheses, you start counting from the left. So, in our regular expression</p>
<p>([A-Z]{3}) will be $1. In our example, this will be MSP.</p>
<p>((\d)\d) will be $2. In our example, this will be 43.</p>
<p>(\d) nested in $2 will be $3. In our example, this will be 4.</p>
<p>and (\d\d) will be $4. In our example, this will be 21.</p>
<p>We can use these variables to build up our path. Notice the $# variables in the replacement string (color-coded for clarity):</p>
<pre>"\\\\server\\Graphics\\<span style="color: #ff0000;">$1</span>\\<span style="color: #ff0000;">$1</span><span style="color: #3366ff;">$3</span>000-<span style="color: #3366ff;">$3</span>999\\<span style="color: #ff0000;">$1</span><span style="color: #339966;">$2</span>00-<span style="color: #339966;">$2</span>99\\<span style="color: #ff0000;">$1</span><span style="color: #339966;">$2</span><span style="color: #993366;">$4</span>.pdf"</pre>
<p>This will become</p>
<pre>"\\\\server\\Graphics\\<span style="color: #ff0000;">MSP</span>\\<span style="color: #ff0000;">MSP</span><span style="color: #3366ff;">4</span>000-<span style="color: #3366ff;">4</span>999\\<span style="color: #ff0000;">MSP</span><span style="color: #339966;">43</span>00-<span style="color: #339966;">43</span>99\\<span style="color: #ff0000;">MSP</span><span style="color: #339966;">43</span><span style="color: #993366;">21</span>.pdf"</pre>
<p>The backslash in JavaScript is an escape character, so to get the literal backslash character, we have to use 2 where we want 1.</p>
<p>Copy the function into the ExtendScript Toolkit and try a few filenames that use this format, and you will get the correct path every time. Regular expressions are a deep topic, but as you can see, they are very powerful for parsing tasks like this.</p>
<p style="text-align: right;">-Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2011/07/01/using-a-regular-expression-to-convert-an-image-name-to-a-path/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FrameMaker 10 ExtendScript: The Object Model</title>
		<link>http://frameautomation.com/2011/06/30/framemaker-10-extendscript-the-object-model/</link>
		<comments>http://frameautomation.com/2011/06/30/framemaker-10-extendscript-the-object-model/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 18:30:33 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[ExtendScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=170</guid>
		<description><![CDATA[Thank you to all that attended this webinar. I will post the link to the recording as soon as it is available. In the meantime, here is a link to the FrameMaker Object Model chm file and webinar slides: http://www.rickquatro.com/resources/FM10_ObjectReference.zip Here is a link to the FrameMaker 10 FDK: http://www.adobe.com/devnet/framemaker.html After you install it, the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Thank you to all that attended this webinar. I will post the link to the recording as soon as it is available. In the meantime, here is a link to the FrameMaker Object Model chm file and webinar slides:</p>
<p><a title="Object Reference chm" href="http://www.rickquatro.com/resources/FM10_ObjectReference.zip">http://www.rickquatro.com/resources/FM10_ObjectReference.zip</a></p>
<p>Here is a link to the FrameMaker 10 FDK:</p>
<p><a title="Frame 10 FDK" href="http://www.adobe.com/devnet/framemaker.html" target="_blank">http://www.adobe.com/devnet/framemaker.html</a></p>
<p>After you install it, the documentation will be in the docs folder.</p>
<p>Arnis asked about dumping a list of properties for an object. In FrameScript it is easy:</p>
<pre>Set oDoc = ActiveDoc;
// Write the properties to the Console.
Write Console oDoc.Properties;</pre>
<p>With ExtendScript, you can use a function; in this case, I am writing to the JavaScript Console instead of the FrameMaker Console:</p>
<pre>var doc = app.ActiveDoc;
writePropsToConsole (doc);

function writePropsToConsole (object) {

  for (var name in object) {
    // Write the properties to the JavaScript Console.
    $.writeln (name + ": " + object[name]);
  }
}</pre>
<p>Please let me know if you have suggestions for future webinars. Thanks again for all your support.</p>
<p style="text-align: right;">-Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2011/06/30/framemaker-10-extendscript-the-object-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ExtendScript Webinars: What Do You Want to Learn?</title>
		<link>http://frameautomation.com/2011/06/16/extendscript-webinars-what-do-you-want-to-learn/</link>
		<comments>http://frameautomation.com/2011/06/16/extendscript-webinars-what-do-you-want-to-learn/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 19:32:30 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[ExtendScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=162</guid>
		<description><![CDATA[I just finished my second FrameMaker 10 ExtendScript webinar, which I enjoyed immensely. The first one was done in conjunction with Adobe, the second was sponsored by Carmen Publishing Inc. I would like to do more ExtendScript webinars and want to know what topics people are interested in. Please leave comments with suggestions for ExtendScript [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I just finished my second FrameMaker 10 ExtendScript webinar, which I enjoyed immensely. The first one was done in conjunction with Adobe, the second was sponsored by Carmen Publishing Inc. I would like to do more ExtendScript webinars and want to know what topics people are interested in. Please leave comments with suggestions for ExtendScript topics. Thank you very much.</p>
<p style="text-align: right;">-Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2011/06/16/extendscript-webinars-what-do-you-want-to-learn/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>In Memory of Bruce Foster</title>
		<link>http://frameautomation.com/2011/06/15/in-memory-of-bruce-foster/</link>
		<comments>http://frameautomation.com/2011/06/15/in-memory-of-bruce-foster/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 14:15:53 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[ExtendScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=150</guid>
		<description><![CDATA[Bruce Foster, creator of many fine FrameMaker plugins, passed away suddenly on Saturday, June 11, 2011. Although Bruce had been diagnosed with multiple myeloma in September 2010, his death still came earlier than was expected. Bruce&#8217;s plugins for FrameMaker were BookInfo, ImpGraph, MifSave, MifToFM, RtfSave, and his most famous, Archive. Bruce&#8217;s website is now offline [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Bruce Foster, creator of many fine FrameMaker plugins, passed away suddenly on Saturday, June 11, 2011. Although Bruce had been diagnosed with multiple myeloma in September 2010, his death still came earlier than was expected. Bruce&#8217;s plugins for FrameMaker were BookInfo, ImpGraph, MifSave, MifToFM, RtfSave, and his most famous, Archive.</p>
<p>Bruce&#8217;s website is now offline and, as far as I know, his plugins are no longer available  for sale.</p>
<p><strong></strong>Adobe Engineering has just released a free ExtendScript script for archiving FrameMaker 10 books:</p>
<p class="MsoPlainText"><a title="Adobe's archive script" href="http://blogs.adobe.com/techcomm/2011/07/create-a-book-packager-using-extendscript.html" target="_blank">http://blogs.adobe.com/techcomm/2011/07/create-a-book-packager-using-extendscript.html</a></p>
<p class="MsoPlainText">I haven&#8217;t tested the script yet, so I can&#8217;t necessarily recommend it, but it is certainly worth looking at.</p>
<p>- Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2011/06/15/in-memory-of-bruce-foster/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>FrameMaker 10 and ExtendScript Automation Slides and Samples</title>
		<link>http://frameautomation.com/2011/05/31/framemaker-10-extendscript-slides/</link>
		<comments>http://frameautomation.com/2011/05/31/framemaker-10-extendscript-slides/#comments</comments>
		<pubDate>Tue, 31 May 2011 13:13:55 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[ExtendScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=140</guid>
		<description><![CDATA[Last week&#8217;s FrameMaker 10 and ExtendScript Automation eSeminar went well in spite of a few glitches. Thank you to Adobe and Tom Aldous for graciously hosting and promoting the seminar. Thank you especially to all that attended and submitted questions. As promised, we are making the slides and sample scripts available for download. You can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Last week&#8217;s FrameMaker 10 and ExtendScript Automation eSeminar went well in spite of a few glitches. Thank you to Adobe and Tom Aldous for graciously hosting and promoting the seminar. Thank you especially to all that attended and submitted questions.</p>
<p>As promised, we are making the slides and sample scripts available for download. You can download the slides from:</p>
<p><a title="Seminar Slides" href="http://www.rickquatro.com/resources/ExtendScriptSeminar.pdf" target="_blank">http://www.rickquatro.com/resources/ExtendScriptSeminar.pdf</a></p>
<p>The samples are at:</p>
<p><a title="ExtendScript samples" href="http://www.rickquatro.com/resources/SampleScripts.zip">http://www.rickquatro.com/resources/SampleScripts.zip</a></p>
<p>The sample scripts may not meet your current requirements, but there are portions of each script that you can reuse in your own scripts. You can also use them to learn good scripting practices and how to approach similar problems. In future posts, we will dissect one of the scripts so you can learn solid techniques for writing your own.</p>
<p>Here is a link to the eSeminar recording:</p>
<p><a href="https://www.adobe.com/cfusion/event/index.cfm?event=register%5Fno%5Fsession&amp;loc=en%5Fus&amp;id=1808717">https://www.adobe.com/cfusion/event/index.cfm?event=register%5Fno%5Fsession&amp;loc=en%5Fus&amp;id=1808717</a></p>
<p style="text-align: right;">-Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2011/05/31/framemaker-10-extendscript-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autonumber Problems</title>
		<link>http://frameautomation.com/2010/09/30/autonumber-problems/</link>
		<comments>http://frameautomation.com/2010/09/30/autonumber-problems/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 13:48:03 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[FrameScript]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=125</guid>
		<description><![CDATA[Here is part of a recent post on the Framers list: Single-file doc with four Sections. Sections and sub-sections numbered 1, 1.1, 1.1.1 etc. Pgf numbering formats: Heading1 S:&#60;n+&#62;.&#60; =0&#62;&#60; =0&#62;&#60; =0&#62; Heading2 S:&#60;n&#62;.&#60;n+&#62;&#60; =0&#62;&#60; =0&#62; Heading3 S:&#60;n&#62;.&#60;n&#62;.&#60;n+&#62;&#60; =0&#62; But I&#8217;m getting Sections 1 and 2 (with subsections), then 5 and 6 (which should be [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Here is part of a recent post on the Framers list:</p>
<blockquote><p>Single-file doc with four Sections. Sections and sub-sections numbered 1, 1.1, 1.1.1 etc.</p>
<p>Pgf numbering formats:</p>
<p>Heading1 S:&lt;n+&gt;.&lt; =0&gt;&lt; =0&gt;&lt; =0&gt;<br />
Heading2 S:&lt;n&gt;.&lt;n+&gt;&lt; =0&gt;&lt; =0&gt;<br />
Heading3 S:&lt;n&gt;.&lt;n&gt;.&lt;n+&gt;&lt; =0&gt;</p>
<p>But I&#8217;m getting Sections 1 and 2 (with subsections), then 5 and 6 (which should be 3 and 4)&#8230;.Pix and tables are numbered with F:&lt;n+&gt; and T:&lt;n+&gt; respectively so shouldn&#8217;t be affecting anything.</p></blockquote>
<p>Autonumbering in FrameMaker is one feature that is rock-solid. So these problems are always caused by intervening paragraphs that have unintended autonumber counters. The trick is finding the offending paragraphs. I use a FrameScript script to make an &#8220;autonumber report&#8221; of a document or book. With this report, the cause of autonumber problems can be quickly found.</p>
<p>The author of the Framers post sent me the problem document and in seconds I generated the following spreadsheet (click the image to see it full size):</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/autonumberreport3.png" target="_blank"><img class="alignnone size-full wp-image-135" title="autonumberreport" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/autonumberreport3.png" alt="" width="642" height="491" /></a></p>
<p>It&#8217;s pretty easy to see the problem paragraphs, which I have highlighted. The key to finding them is to look for the last good number, which is in row 13. Next, look for the first bad number, which is in row 20. Now we know that the problem paragraph or paragraphs is between these two rows in the spreadsheet. At this point, it&#8217;s best to scan the Autonumber String column, and look for the S: series label, which brings us to rows 15 and 17.</p>
<p>As it turns out, in this document the two offending paragraphs were very small and at the top of the page, which is why they were difficult to find. But like many other tasks, FrameScript makes it easy. If you are interested in purchasing this script, please let me know. Thank you very much.</p>
<p style="text-align: right;">- Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2010/09/30/autonumber-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lining up a Table Across Columns</title>
		<link>http://frameautomation.com/2010/09/14/lining-up-a-table-across-columns/</link>
		<comments>http://frameautomation.com/2010/09/14/lining-up-a-table-across-columns/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 16:36:12 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=105</guid>
		<description><![CDATA[This question comes up from time-to-time on the FrameMaker lists, so I will illustrate the problem and solution with four screenshots. You have a single table anchored in a paragraph in the left column. As the table flows from column-to-column, the top of the table in the first column does not line up with the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This question comes up from time-to-time on the FrameMaker lists, so I will illustrate the problem and solution with four screenshots. You have a single table anchored in a paragraph in the left column. As the table flows from column-to-column, the top of the table in the first column does not line up with the top of the table in the rest of the columns.</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableTops2.png"><img class="alignnone size-full wp-image-116" title="TableTops" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableTops2.png" alt="" width="600" height="300" /></a></p>
<p>To remedy this, you need to change settings in two dialog boxes. First, click in the anchor paragraph and bring up the Paragraph Designer. Change the Line Spacing to 0 points and the Space below to -2 points and click Update All. Go to the Default Font area of the Paragraph Designer, set the Font Size to 2 points, and click Update All (not shown in the screenshot). You won&#8217;t see a change until you do the next step.</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableAnchorPgfFmt1.png"><img class="alignnone size-full wp-image-118" title="TableAnchorPgfFmt" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableAnchorPgfFmt1.png" alt="" width="600" height="300" /></a></p>
<p>Click in the table and open the Table Designer. Change the Space Above to -2 points and click Update All.</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableDesigner1.png"><img class="alignnone size-full wp-image-119" title="TableDesigner" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableDesigner1.png" alt="" width="600" height="300" /></a></p>
<p>The table tops in all of the columns will now line up with each other.</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableTops22.png"><img class="alignnone size-full wp-image-121" title="TableTops2" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/TableTops22.png" alt="" width="600" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2010/09/14/lining-up-a-table-across-columns/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Setting Acrobat Bookmarks for a Book</title>
		<link>http://frameautomation.com/2010/09/09/setting-acrobat-bookmarks-for-a-book/</link>
		<comments>http://frameautomation.com/2010/09/09/setting-acrobat-bookmarks-for-a-book/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 18:38:16 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[Free Scripts]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=88</guid>
		<description><![CDATA[When you save a FrameMaker book to PDF, you are presented with the PDF Setup dialog box, where you can set which paragraphs (or elements) you want to appear as bookmarks in the PDF. Often, you will set the Include formats and levels just how you want them, but when you make the PDF, one [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>When you save a FrameMaker book to PDF, you are presented with the PDF Setup dialog box, where you can set which paragraphs (or elements) you want to appear as bookmarks in the PDF. Often, you will set the Include formats and levels just how you want them, but when you make the PDF, one or more paragraphs will be included that you didn&#8217;t specify. In fact, these paragraphs won&#8217;t show up in the Include/Don&#8217;t Include lists in the PDF Setup dialog box. Scott Prentice, in a recent framemaker-dita@yahoogroups.com post, gives the reason behind this:</p>
<blockquote><p>In my testing, I believe that the key factors are that the first file in the book needs to have definitions for all of the para styles in the book, and you have to set the include/exclude values on that file. If it&#8217;s a binary file, these settings would be made there &#8230; if it&#8217;s structured, you&#8217;d need to make those settings in the template that&#8217;s applied to that component.<span id="more-88"></span></p></blockquote>
<p>Let me make this clearer with a couple of screenshots. First, here is the PDF Setup dialog box after I selected all of the files in the book and chose Format &gt; Documents &gt; PDF Setup.</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/SaveBookAsPDF1.png"><img class="size-full wp-image-92 alignnone" title="PDF Setup Dialog" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/SaveBookAsPDF1.png" alt="PDF Setup Dialog" width="475" height="436" /></a></p>
<p>So far so good. But when I create the PDF file, I get bookmarks to some paragraphs in the TOC. When I look for the paragraphs in the PDF Setup dialog box for the book, they don&#8217;t appear in either of the Include/Don&#8217;t Include lists.</p>
<p>If I select the TOC component in the book and choose Format &gt; Documents &gt; PDF Setup, I discover the source of the problem, as illustrated in the following screenshot:</p>
<p><a href="http://frameautomation.com/blog/wp-content/uploads/2010/09/PDFSetupForTOC.png"><img class="alignnone size-full wp-image-94" title="PDF Setup for TOC" src="http://frameautomation.com/blog/wp-content/uploads/2010/09/PDFSetupForTOC.png" alt="PDF Setup of TOC" width="475" height="436" /></a></p>
<p>You can see that there are two extra paragraph formats in my Include list: title.0TOC and title.0.frontmatterTOC. Because these formats don&#8217;t exist in the first component in the book, they don&#8217;t show up in the Include/Don&#8217;t Include lists when I display the PDF Setup dialog box for the book.</p>
<p>There are three possible solutions to the problem:</p>
<ol>
<li>Make sure all of the paragraph formats from all of your book&#8217;s components exist in the first component of the book. Then they will all be available in the book&#8217;s PDF Setup dialog box so you can move them to the appropriate Include/Don&#8217;t Include list.</li>
<li>Check each book components PDF Setup dialog box individually and make sure the Include list only contains the formats you want. In the above example, I moved the two TOC paragraphs to the Don&#8217;t Include list, and everything worked fine. However, I was fortunate because only the TOC contained the extra formats. For  some books, you may have to check more of the components.</li>
<li>Use FrameScript or the FDK to quickly set up the bookmarks for each of the book&#8217;s components.</li>
</ol>
<p>I have a free FrameScript script for doing this. It uses an INI file to determine which paragraph formats to include for bookmarks; here is an example:<br />
<code><br />
[BookmarkLevels]<br />
; paragraph format name=bookmark level<br />
ctoc.appendix.number=1<br />
ctoc.chapter.number=1<br />
title.0=2<br />
title.0.frontmatter=2<br />
title.1=3<br />
title.2=4<br />
title.3=5<br />
title.4=6<br />
title.a=2<br />
</code><br />
Any paragraph format not specified will have its bookmark level set to 0 (zero), and will not appear in the PDF. Since the script processes all of the components in the book, you don&#8217;t have to worry about having all of the formats in the book&#8217;s first component. You can <a href="http://frameautomation.com/SetBookmarkLevels.zip">download the script here</a>. Please let me know if you have any questions or comments.</p>
<p style="text-align: right;">&#8211;Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2010/09/09/setting-acrobat-bookmarks-for-a-book/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fun with Acrobat Forms</title>
		<link>http://frameautomation.com/2010/06/07/fun-with-acrobat-forms/</link>
		<comments>http://frameautomation.com/2010/06/07/fun-with-acrobat-forms/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 13:15:39 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[Forms]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=80</guid>
		<description><![CDATA[I have created a great workflow for developing Acrobat forms, using FrameMaker, FrameScript, and TimeSavers from MicroType (http://www.microtype.com). Using this workflow makes it practical to use FrameMaker to develop PDF forms. FrameMaker&#8217;s graphic and table features can be used to layout great looking forms, while TimeSavers eliminates nearly all of the required Acrobat post-processing. A [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have created a great workflow for developing Acrobat forms, using FrameMaker, FrameScript, and TimeSavers from MicroType (<a href="http://www.microtype.com">http://www.microtype.com</a>). Using this workflow makes it practical to use FrameMaker to develop PDF forms. FrameMaker&#8217;s graphic and table features can be used to layout great looking forms, while TimeSavers eliminates nearly all of the required Acrobat post-processing. A set of FrameScript scripts streamlines the insertion of the TimeSavers markers in the FrameMaker documents.</p>
<p>If you have a need for Acrobat forms, or are interested in the process, please let me know. I will be glad to provide a demonstration of the process. Also, I am soliciting a few more forms to do for free that I can use for demonstration purposes. If you have a forms that you would like converted to Acrobat forms, please let me know. In the meantime, take a look at some of the forms I have developed using FrameMaker, FrameScript, and TimeSavers:</p>
<p><a href="http://www.rickquatro.com/forms/ClientQuestionnaire.pdf">http://www.rickquatro.com/forms/ClientQuestionnaire.pdf</a><br />
<a href="http://www.rickquatro.com/forms/LosersAreWinners_Men2.pdf">http://www.rickquatro.com/forms/LosersAreWinners_Men2.pdf</a><br />
<a href="http://www.rickquatro.com/forms/LosersAreWinners_Women2.pdf">http://www.rickquatro.com/forms/LosersAreWinners_Women2.pdf</a></p>
<p style="text-align: right;">-Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2010/06/07/fun-with-acrobat-forms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Renaming DITA Map Topics</title>
		<link>http://frameautomation.com/2010/03/24/renaming-dita-map-topics/</link>
		<comments>http://frameautomation.com/2010/03/24/renaming-dita-map-topics/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 13:52:54 +0000</pubDate>
		<dc:creator>Rick Quatro</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://frameautomation.com/?p=61</guid>
		<description><![CDATA[I have a client using MIF2Go to generate DITA from unstructured FrameMaker documents. They are very happy with the entire process with one exception: They want an easy way to rename the href values in the DITA map, and the corresponding topics on disk. I have proposed a set of FrameScript scripts that will automate [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have a client using <a href="http://www.omsys.com">MIF2Go</a> to generate DITA from unstructured FrameMaker documents. They are very happy with the entire process with one exception: They want an easy way to rename the href values in the DITA map, and the corresponding topics on disk. I have proposed a set of FrameScript scripts that will automate the process. The script proposes new topic names, based on the topicref&#8217;s navtitle value. You can have the script automatically use the new names, or you can use a &#8220;semi-automatic mode&#8221; where the old names and proposed new names are written to and Excel file. Then you can use Excel to fine-tune the new names. A second script quickly applies the spreadsheet names to the DITA map and corresponding topic files.</p>
<p>You can take a look at the <a href="http://www.rickquatro.com/ManageTopicRefNames.pdf">documentation here</a>. The cost for the set of scripts is $95 US. To purchase the scripts, please contact <a title="Send mail to rick@frameexpert.com" href="mailto:rick@frameexpert.com">rick@frameexpert.com</a>.</p>
<p style="text-align: right;">&#8211;Rick</p>
]]></content:encoded>
			<wfw:commentRss>http://frameautomation.com/2010/03/24/renaming-dita-map-topics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

