<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Find/Change Objects and Attributes in InDesign CS3</title>
	<atom:link href="http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/feed" rel="self" type="application/rss+xml" />
	<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php</link>
	<description>InDesignSecrets Blog and Podcast</description>
	<lastBuildDate>Wed, 23 May 2012 23:34:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Aimee</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-491683</link>
		<dc:creator>Aimee</dc:creator>
		<pubDate>Mon, 18 Jul 2011 18:22:53 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-491683</guid>
		<description>Oleg, Thank  you! I will pass this along to my IT guy and see if we can get this to work.</description>
		<content:encoded><![CDATA[<p>Oleg, Thank  you! I will pass this along to my IT guy and see if we can get this to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oleg</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-491650</link>
		<dc:creator>Oleg</dc:creator>
		<pubDate>Thu, 14 Jul 2011 11:53:17 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-491650</guid>
		<description>Aimee, I don&#039;t think there&#039;s a way to formulate a search that specifically excludes a certain character. And that seems exatly what you need to do in your lookaheads/lookbehinds... I can see only one workaround to address this: make up explicit lists of characters that don&#039;t have what you don&#039;t need. For example, the following lookahead search will find all occurences of ëë that are followed by:
1. Any lowercase letter OR
2. A space OR
3. Any digit
Any number of times
AND THEN by another ëë

ëë(?=[\l&#124; &#124;\d]+ëë)

Because your íí is not in the list of alternatives in square brackets, you will only find the orphaned ëë&#039;s not followed by íí before another ëë comes around.

But you must pay attention to really include all characters that can possibly go between your opening and closing quotes in that list of alternatives — alphabet in both cases, spaces, dashes, digits, etc. — my list is just an example and I know nothing about Indian scripts. And you can&#039;t use too generic wildcards like .+ as they will likely include your íí and that will ruin the idea.

When you&#039;re done, it&#039;s best to implement this as a GREP style so your orphaned quotes are painted red for you automatically.</description>
		<content:encoded><![CDATA[<p>Aimee, I don&#8217;t think there&#8217;s a way to formulate a search that specifically excludes a certain character. And that seems exatly what you need to do in your lookaheads/lookbehinds&#8230; I can see only one workaround to address this: make up explicit lists of characters that don&#8217;t have what you don&#8217;t need. For example, the following lookahead search will find all occurences of ëë that are followed by:<br />
1. Any lowercase letter OR<br />
2. A space OR<br />
3. Any digit<br />
Any number of times<br />
AND THEN by another ëë</p>
<p>ëë(?=[\l| |\d]+ëë)</p>
<p>Because your íí is not in the list of alternatives in square brackets, you will only find the orphaned ëë&#8217;s not followed by íí before another ëë comes around.</p>
<p>But you must pay attention to really include all characters that can possibly go between your opening and closing quotes in that list of alternatives — alphabet in both cases, spaces, dashes, digits, etc. — my list is just an example and I know nothing about Indian scripts. And you can&#8217;t use too generic wildcards like .+ as they will likely include your íí and that will ruin the idea.</p>
<p>When you&#8217;re done, it&#8217;s best to implement this as a GREP style so your orphaned quotes are painted red for you automatically.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aimee</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-491617</link>
		<dc:creator>Aimee</dc:creator>
		<pubDate>Mon, 11 Jul 2011 18:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-491617</guid>
		<description>I work with six different Indian languages and when we receive the translated material, I am responsible for formatting the material. Often times with quotes, our Indian keyboarders will forget to add the corresponding opening or closing quotation marks. Currently I have to run a search for opening quotation marks and then visually scan the text to make sure the corresponding closing quotation mark is there and then vice versa for closing quotation marks. I know there MUST be a way to do this using the GREP search but neither myself or our company computer tech has been able to figure it out.

In the Kannada Indian language, an opening quotation mark would be ëë or a double e-umlaut. (Obviously I am using a Kannada font called Chandana and in that font, it shows as a double opening quotation mark. But in an English font such as Times New Roman, it show as the double e-umlaut.) The closing double quotation mark in the Kannada font is íí or a double acute i.

How do I search ëë that is not followed by íí before the next ëë and have InDesign highlight that in red? And how do I do the opposite of searching for íí that is not preceeded by ëë?

If I could figure this out, it would save myself and our proofreader a TREMENDOUS amount of time! And thanks in advance for ANY help.
Aimee</description>
		<content:encoded><![CDATA[<p>I work with six different Indian languages and when we receive the translated material, I am responsible for formatting the material. Often times with quotes, our Indian keyboarders will forget to add the corresponding opening or closing quotation marks. Currently I have to run a search for opening quotation marks and then visually scan the text to make sure the corresponding closing quotation mark is there and then vice versa for closing quotation marks. I know there MUST be a way to do this using the GREP search but neither myself or our company computer tech has been able to figure it out.</p>
<p>In the Kannada Indian language, an opening quotation mark would be ëë or a double e-umlaut. (Obviously I am using a Kannada font called Chandana and in that font, it shows as a double opening quotation mark. But in an English font such as Times New Roman, it show as the double e-umlaut.) The closing double quotation mark in the Kannada font is íí or a double acute i.</p>
<p>How do I search ëë that is not followed by íí before the next ëë and have InDesign highlight that in red? And how do I do the opposite of searching for íí that is not preceeded by ëë?</p>
<p>If I could figure this out, it would save myself and our proofreader a TREMENDOUS amount of time! And thanks in advance for ANY help.<br />
Aimee</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adobe InDesign Tips I Wish I&#8217;d Known When Starting Out &#171; Web Design News</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-490153</link>
		<dc:creator>Adobe InDesign Tips I Wish I&#8217;d Known When Starting Out &#171; Web Design News</dc:creator>
		<pubDate>Fri, 01 Apr 2011 17:20:50 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-490153</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adobe InDesign Tips I Wish I&#8217;d Known When Starting Out &#124; Remake Wordpress Theme</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-489860</link>
		<dc:creator>Adobe InDesign Tips I Wish I&#8217;d Known When Starting Out &#124; Remake Wordpress Theme</dc:creator>
		<pubDate>Fri, 18 Mar 2011 19:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-489860</guid>
		<description>[...] Find and Change Objects and Attributes in InDesign CS3, InDesignSecrets; [...]</description>
		<content:encoded><![CDATA[<p>[...] Find and Change Objects and Attributes in InDesign CS3, InDesignSecrets; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Blatner</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-471467</link>
		<dc:creator>David Blatner</dc:creator>
		<pubDate>Tue, 23 Dec 2008 13:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-471467</guid>
		<description>@Beth: Wow. That is pretty odd. Might be time to rebuild the ol&#039; preferences file!</description>
		<content:encoded><![CDATA[<p>@Beth: Wow. That is pretty odd. Might be time to rebuild the ol&#8217; preferences file!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Beth Thomas</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-471435</link>
		<dc:creator>Beth Thomas</dc:creator>
		<pubDate>Mon, 22 Dec 2008 11:24:48 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-471435</guid>
		<description>Often, when I go into the Find/Change dialogue box and try to type in the &quot;Find what&quot; field it doesn&#039;t let me and the cursor actually flicks back to the document and types there instead.  So if you searching for &quot;ink&quot; you&#039;ll see the first few letter appear in the Find/Change box and then disappear and appear in the document instead.

Has anyone ever had this problem?  And if so, how is it fixed/avoided?</description>
		<content:encoded><![CDATA[<p>Often, when I go into the Find/Change dialogue box and try to type in the &#8220;Find what&#8221; field it doesn&#8217;t let me and the cursor actually flicks back to the document and types there instead.  So if you searching for &#8220;ink&#8221; you&#8217;ll see the first few letter appear in the Find/Change box and then disappear and appear in the document instead.</p>
<p>Has anyone ever had this problem?  And if so, how is it fixed/avoided?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick Gordon</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-471362</link>
		<dc:creator>Rick Gordon</dc:creator>
		<pubDate>Fri, 19 Dec 2008 09:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-471362</guid>
		<description>Yes, Trish. In AppleScript, write something like the following, using the strings that are currently in the GREP dialog (or Find Text dialog):

tell application &quot;Adobe InDesign CS3&quot;
&#160;&#160;tell active document
&#160;&#160;set tableList to tables of stories
&#160;&#160;&#160;&#160;repeat with eachItem in tableList
&#160;&#160;&#160;&#160;&#160;&#160;tell eachItem
&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;change grep --for GREP, OR
&#160;&#160;&#160;&#160;&#160;&#160;&#160;--change text --for text
&#160;&#160;&#160;&#160;&#160;&#160;end tell
&#160;&#160;&#160;&#160;end repeat
&#160;&#160;end tell
end tell</description>
		<content:encoded><![CDATA[<p>Yes, Trish. In AppleScript, write something like the following, using the strings that are currently in the GREP dialog (or Find Text dialog):</p>
<p>tell application &#8220;Adobe InDesign CS3&#8243;<br />
&nbsp;&nbsp;tell active document<br />
&nbsp;&nbsp;set tableList to tables of stories<br />
&nbsp;&nbsp;&nbsp;&nbsp;repeat with eachItem in tableList<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;tell eachItem<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;change grep &#8211;for GREP, OR<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8211;change text &#8211;for text<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;end tell<br />
&nbsp;&nbsp;&nbsp;&nbsp;end repeat<br />
&nbsp;&nbsp;end tell<br />
end tell</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trish</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-471359</link>
		<dc:creator>Trish</dc:creator>
		<pubDate>Fri, 19 Dec 2008 05:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-471359</guid>
		<description>Does anyone know if it&#039;s possible to search for texts in tables only?</description>
		<content:encoded><![CDATA[<p>Does anyone know if it&#8217;s possible to search for texts in tables only?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa Lee</title>
		<link>http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php/comment-page-1#comment-470753</link>
		<dc:creator>Lisa Lee</dc:creator>
		<pubDate>Mon, 01 Dec 2008 15:40:54 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/findchange-objects-and-attributes-in-indesign-cs3.php#comment-470753</guid>
		<description>Could anyone help! With the current reduction in VAT I need to amend a 40pp brochure to accommodate these price changes is there a quick way to amend all prices from 17.5% to 15% in Adobe Indesign CS3</description>
		<content:encoded><![CDATA[<p>Could anyone help! With the current reduction in VAT I need to amend a 40pp brochure to accommodate these price changes is there a quick way to amend all prices from 17.5% to 15% in Adobe Indesign CS3</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching using disk

Served from: indesignsecrets.com @ 2012-05-23 23:50:55 -->
