<?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>Inside RogueSheep &#187; InDesign</title>
	<atom:link href="http://blog.roguesheep.com/category/indesign/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.roguesheep.com</link>
	<description>Behind the scenes with the sheep</description>
	<lastBuildDate>Thu, 15 Jul 2010 20:17:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>InDesign CS4 : Developer View</title>
		<link>http://blog.roguesheep.com/2008/11/17/indesign-cs4-developer-view/</link>
		<comments>http://blog.roguesheep.com/2008/11/17/indesign-cs4-developer-view/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 10:31:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Creative Suite]]></category>
		<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/2008/11/17/indesign-cs4-developer-view/</guid>
		<description><![CDATA[The recently released InDesign CS4 comes packed with a long bullet-list of new features. Here are a few that stand out from a Creative Suite developer&#8217;s perspective :

GREP pattern matching for styles

You can now set a style to apply to a range of text that matches a grep-style pattern. For instance you could use a [...]]]></description>
			<content:encoded><![CDATA[<p>The recently released InDesign CS4 comes packed with a long bullet-list of new features. Here are a few that stand out from a Creative Suite developer&#8217;s perspective :</p>

<h3><strong>GREP pattern matching for styles</strong></h3>

<p>You can now set a style to apply to a range of text that matches a grep-style pattern. For instance you could use a pattern like :</p>

<pre>

<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">'@/:[:space:]]+&amp;gt;@[a-zA-Z_.]+?.[a-zA-Z]{2,3}'</div></div>

</pre>

<p>to automatically apply a specific style to anything that looked like an email address. I&#8217;m not sure what the intersection is between page layout designers and grep pattern wizards, but the nerd in me loves the idea.</p>

<p>See <a href="http://blogs.adobe.com/indesignchannel/2008/10/indesign_cs4_styling_priority.html">Tim Cole&#8217;s blog entry</a> for more details.</p>

<h3><strong>Links architecture updated</strong></h3>

<p>The underlying architecture for linking to an externally placed image or text file in an InDesign document had really been neglected over the years since InDesign was first released. Almost all interesting workflow systems based on InDesign require implementing custom data link code to enable linking to images and text stored in a content or asset management system. Previously, these custom links were <em>very</em> hard to implement and introduced fragility and complexity to the final solution.</p>

<p>I&#8217;m happy to report that with CS4 they have rewritten this component and it appears they have focused on extensibility. It may be the case that many applications of custom links will now only have to provide a URL to the links manager. The new links manager makes no assumptions about a link being file system based making it easier to maintain the linked data in a database or other network resource. Its also now possible for custom links to add UI to the links panel.</p>

<p>The rewrite has also opened the door for some clever new applications for links as evidenced by the SDK example plugins, <em>ExtendedLinks</em> and <em>ExtendedLinks UI</em>. These samples show how to use the new links APIs to link a range of text to a database using an ODBC connection. The obvious application being of course to pull in variable data, such as prices for a catalog, from an external source with automatic updating in the document content when that source data is upated.</p>

<p>Once again, <a href="http://blogs.adobe.com/indesignchannel/2008/10/the_second_most_important_feat.html">Tim Cole</a> has more info at his blog.</p>

<h3><strong>Custom palettes with Flash/FLEX</strong></h3>

<p>Creating UI has been on of the consistently painful areas in developing for InDesign. Compared to the ease of development offered by modern UI frameworks such as the Cocoa APIs on the MacOS, InDesign&#8217;s widget architecture feels almost as stone age as the old MacOS toolbox or Win32 APIs. This is especially true if you have to develop custom widgets that don&#8217;t already exist in the SDK&#8217;s catalog of controls.</p>

<p>CS4 brings an interesting new development technique that shows promise of easing the burden. It is now possible to use Flash and FLEX to create UI in a custom palette or dialog box. Not only is this a path to cross-platform UI, it is also possible to use the same UI components across other CS4 applications including Photoshop and Illustrator! Adobe has an excellent example that they demo often (I hope they will open source this soon) that adds <a href="http://kuler.adobe.com/">Kuler</a> integration in both InDesign and Illustrator using a .swf for all the palette user interface.</p>

<p>Even more relevant is that you can now get your game on, right inside an InDesign palette. Here is an example of running the <em>Amoebas</em> Flash example, an Asteroids clone, in its own custom InDesign palette :</p>

<p><img src="http://blog.roguesheep.com/wp-content/uploads/2008/11/picture-3.png" border="0" alt="Picture 3.png" width="599" height="625" align="center" /></p>

<h3><strong>Live Preflight</strong></h3>

<p>One of the most high-profile user facing features in CS4 is the new Live Preflight. The premise of this feature is to provide active feedback in the document&#8217;s user interface that describes possible problems in the document that a designer would want to correct before sending the file off for print or to another stage in a workflow. The preflight engine runs in the background while the user works and checks for conditions that would indicate an error in the document. This feature can be a boon to catching common problems with transparency and overprint as soon as they happen during the creative process.</p>

<p>Of relevance to developers is that a plugin can provide custom rules to the engine. This will allow us to integrate custom business logic into the preflight feature for clients with complicated and strict output and design policies.</p>

<p>This <a href="http://xd.adobe.com/#/articles/article/65">article</a> from the Adobe interface team on their Inspire web magazine has more info from my ex-colleague Tom McDonald about the design of the UI for this new feature.</p>

<h3><strong>IDML</strong></h3>

<p>Finally we come to what might be the most interesting new feature in InDesign CS4; <strong>IDML</strong>. IDML is the third and newest iteration of InDesign file formats that leverage XML. IDML looks to overcome many of the shortcomings of the previous XML document formats in InDesign history.</p>

<p>Way back in the days before the Creative Suite, I and several of my colleagues here at RogueSheep worked on InCopy 2.0, the copy-fitting and editorial companion to InDesign built on the same code base. For this release of InCopy we took the potentially bold step of implementing the file format using XML (called <strong>INCD</strong>), reasoning that developers building workflow solutions would appreciate an open format that could be modified outside of InDesign or InCopy. We set ourselves a goal to have high performance and marginal readability and mutability when designing the format. While I think the end result had many merits, it did suffer in that it was difficult to extend for both internal and external developers.
Later, the InDesign team implemented a separate persistence of InDesign documents using XML. This format, <strong>INX</strong>, was geared towards backward compatibility. This became the mechanism for saving a document in a format compatible with an older version of the application. INX was much easier to extend than INCD, but suffered from readability and was difficult if not impossible to modify outside of the InDesign family of applications. It sometimes suffered from performance issues as well.</p>

<p>IDML is the first truly extensible file format in the InDesign family that may meet all of a developer&#8217;s requirements. Its extensible, readable and easily modified. Its entirely reasonable to create correct and usable InDesign documents and &#8216;chunks&#8217; of layout in external applications or even by hand for the GUI adverse. The InDesign team apparently strived to equal or better the performance of INX with IDML, so it may be a winner in the performance category as well. One of my favorite parts is that the IDML file is a .zip archive that has several separate XML files for different components of the document.</p>

<p>As always, our Adobe buddy Tim Cole has more on his <a href="http://blogs.adobe.com/indesignchannel/2008/10/the_most_important_new_feature.html#more">blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2008/11/17/indesign-cs4-developer-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spike Wants You&#8230;</title>
		<link>http://blog.roguesheep.com/2008/04/22/spike-wants-you/</link>
		<comments>http://blog.roguesheep.com/2008/04/22/spike-wants-you/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 01:24:45 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[RogueSheep]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.roguesheep.com/2008/04/22/spike-wants-you/</guid>
		<description><![CDATA[for the RogueSheep Army. 

Things are really starting to cook around here lately. We have a variety of new clients discussing fresh projects and long-term partners coming back with some exciting plans for the remainder of this year. We are also fully engaged in work on our own technology platform that is centered around automated [...]]]></description>
			<content:encoded><![CDATA[<p>for the RogueSheep Army. </p>

<p>Things are really starting to cook around here lately. We have a variety of new clients discussing fresh projects and long-term partners coming back with some exciting plans for the remainder of this year. We are also fully engaged in work on our own technology platform that is centered around automated publishing. It has been a busy year and I think I can still see January back there not too far down the timeline.  </p>

<p>Those of you that know me, know that I hate saying no. Having to turn down excellent opportunities and slowing down work on our internal projects one to many times has finally tipped the balance. We are ready to shepherd in a new engineer in the Seattle office in the very near future. The full details and job application form are available <a href="http://jobs.roguesheep.com">online</a>.</p>

<p>Send us your résumé if you are interested or pass the word on to anyone you know that might be a good fit. I&#8217;m really looking forward to seeing a few fresh muzzles around here. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2008/04/22/spike-wants-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Icon Contest</title>
		<link>http://blog.roguesheep.com/2007/01/28/adobe-icon-contest/</link>
		<comments>http://blog.roguesheep.com/2007/01/28/adobe-icon-contest/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 02:26:53 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[InDesign]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[RogueSheep]]></category>

		<guid isPermaLink="false">http://blogs.roguesheep.com/2007/01/28/adobe-icon-contest/</guid>
		<description><![CDATA[The recent revelation of the unified application icon redesign across Adobe&#8217;s entire product line has stirred up the expected tidal wave of internet opinion. I haven&#8217;t seen any surveys yet, but my instinct tells me the vocal consensus is leaning towards thumbs-down. 

The hullabaloo has inspired QuarkVsIndesign.com to sponsor a contest where some lucky pixel-jockey [...]]]></description>
			<content:encoded><![CDATA[<p>The recent <a href="http://blogs.adobe.com/jnack/2006/12/the_other_cs3_icons.html">revelation</a> of the unified application <a href="http://blogs.adobe.com/jnack/images/wheel-o%27-icons.html">icon</a> redesign across Adobe&#8217;s entire product line has stirred up the expected tidal wave of internet opinion. I haven&#8217;t seen any surveys yet, but my instinct tells me the vocal consensus is leaning towards thumbs-down. </p>

<p>The hullabaloo has inspired QuarkVsIndesign.com to sponsor a <a href="http://quarkvsindesign.com/sc/contests/2007/cs3iconred/">contest</a> where some lucky pixel-jockey will win a whole mess of cool publishing-related prizes for their inspiring vision of application icons for the upcoming Creative Suite 3 applications.</p>

<p>To all the internet-armchair-icon-designers, I say put your mouse where your mouth is and show us how it should have been done!</p>

<p>Personally, I&#8217;m certainly not excited by the new designs. After the initial smile inspired by the nod to the periodic table had worn off, I was left feeling a little &#8216;meh&#8217;. I can see where these designs with their large patches of possibly distinct color could be more functional than the last few iterations of CS application icons. The past versions where not particularly distinct when sitting together in the OS X Dock. Even worse (as pointed out by fellow sheep Matt) is that the same designs were used to brand the toolboxes in the CS applications. Given the general similarity of the icon designs and the toolboxes themselves, it was fairly easy to get confused. As long as your particular mix of applications are not in close proximity on the new color wheel, I think a case can be made that the new icons have improved usability. </p>

<p>Still, the new icons don&#8217;t seem particularly creative. Kind of ironic from a company producing a Creative Suite for the Creative Pro market. I guess the real challenge in interface design these days is to be creative and interesting, while at the same time functional. Its a delicate and difficult balance that honestly a majority of developers seem to struggle with. Its been my own experience that the most creative artist-types I know often fail to see the failures in the functionality their designs. At the same time some of the people I know that have the best grasp of usability and functionality fail to see the need for creativity and artistic interest in their work. It will be interesting to see if the winner of the contest for the new icons manages to please both camps with their design.  </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2007/01/28/adobe-icon-contest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RogueSheep at the InDesign Conference</title>
		<link>http://blog.roguesheep.com/2006/05/19/roguesheep-at-the-indesign-conference/</link>
		<comments>http://blog.roguesheep.com/2006/05/19/roguesheep-at-the-indesign-conference/#comments</comments>
		<pubDate>Fri, 19 May 2006 21:34:53 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[InDesign]]></category>

		<guid isPermaLink="false">http://blogs.roguesheep.com/?p=9</guid>
		<description><![CDATA[We just got back from the InDesign conference.  There were a ton of people there from all over, and everyone seemed to really enjoy the information presented at the conference.  We talked to a lot of people, gave out about 200 &#8220;squeezy sheep&#8221;, and had a great time sharing our corner with Digital [...]]]></description>
			<content:encoded><![CDATA[<p>We just got back from the <a href="http://www.theindesignconference.com/conference.php?sid=1&amp;cid=12">InDesign conference</a>.  There were a ton of people there from all over, and everyone seemed to really enjoy the information presented at the conference.  We talked to a lot of people, gave out about 200 &#8220;squeezy sheep&#8221;, and had a great time sharing our corner with <a href="http://www.digitalbootcamp.com/">Digital Bootcamp</a>.Below is a picture of our booth, as well as a view of part of the vendor floor.<a href="http://blogs.roguesheep.com/?attachment_id=10" title="RogueSheep booth" rel="attachment"><img src="http://blogs.roguesheep.com/wp-content/uploads/2006/05/SheepBooth.thumbnail.jpg" alt="RogueSheep booth" /></a><a href="http://blogs.roguesheep.com/?attachment_id=11" title="Digital Bootcamp" rel="attachment"><img src="http://blogs.roguesheep.com/wp-content/uploads/2006/05/DigBoot.thumbnail.jpg" alt="Digital Bootcamp" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.roguesheep.com/2006/05/19/roguesheep-at-the-indesign-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
