<?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: Keyboard Shortcut for [None] Character Style</title>
	<atom:link href="http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/feed" rel="self" type="application/rss+xml" />
	<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php</link>
	<description>InDesignSecrets Blog and Podcast</description>
	<lastBuildDate>Thu, 24 May 2012 11:17:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ross</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-478955</link>
		<dc:creator>Ross</dc:creator>
		<pubDate>Wed, 14 Oct 2009 23:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-478955</guid>
		<description>Perfect, thank you!
Exactly what i needed - and so simple!</description>
		<content:encoded><![CDATA[<p>Perfect, thank you!<br />
Exactly what i needed &#8211; and so simple!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Kew (Vancouver InDesign User Group</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-383357</link>
		<dc:creator>Jeff Kew (Vancouver InDesign User Group</dc:creator>
		<pubDate>Mon, 28 Apr 2008 02:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-383357</guid>
		<description>Hey folks, I&#039;d like to comment on Adobe Indesign CS3 One-On-One by Deke McClelland. It&#039;s a tremendous resource for the new and experienced InDesign user. Written for the new user, it starts with the basics of the ID CS3 user interface and starting your first document. As you progress thru the project based material you are exposed to invaluable tips and tricks that will make you an ID pro in no time.

&quot;Pearl of Wisdom&quot; are insightful little bits of info found throughout the book, that are like pull out quotes, but are Deke&#039;s thoughts about some unique experience that he thinks you should know about to make the project go smoother.

The book comes with nearly 3 hrs of video training that is unique to this book (not extracted from his nearly 150hrs of training on lynda.com). It&#039;s advised that you watch each video before or after reading the accompanying chapter in the book. The process of Read, Watch, Do is one of the most effective ways of learning InDesign. As well, Deke&#039;s humorous writing style makes you think he&#039;s right next to you.

For experienced users, Deke successfully explains complex subjects such as XML tags. As well, even thru the basics chapters, experienced users can pick up productivity tips and hidden features that only Deke can find.

I recommend this book for all users.</description>
		<content:encoded><![CDATA[<p>Hey folks, I&#8217;d like to comment on Adobe Indesign CS3 One-On-One by Deke McClelland. It&#8217;s a tremendous resource for the new and experienced InDesign user. Written for the new user, it starts with the basics of the ID CS3 user interface and starting your first document. As you progress thru the project based material you are exposed to invaluable tips and tricks that will make you an ID pro in no time.</p>
<p>&#8220;Pearl of Wisdom&#8221; are insightful little bits of info found throughout the book, that are like pull out quotes, but are Deke&#8217;s thoughts about some unique experience that he thinks you should know about to make the project go smoother.</p>
<p>The book comes with nearly 3 hrs of video training that is unique to this book (not extracted from his nearly 150hrs of training on lynda.com). It&#8217;s advised that you watch each video before or after reading the accompanying chapter in the book. The process of Read, Watch, Do is one of the most effective ways of learning InDesign. As well, Deke&#8217;s humorous writing style makes you think he&#8217;s right next to you.</p>
<p>For experienced users, Deke successfully explains complex subjects such as XML tags. As well, even thru the basics chapters, experienced users can pick up productivity tips and hidden features that only Deke can find.</p>
<p>I recommend this book for all users.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne-Marie</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-264702</link>
		<dc:creator>Anne-Marie</dc:creator>
		<pubDate>Thu, 24 Jan 2008 05:43:29 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-264702</guid>
		<description>thanks Olaf!</description>
		<content:encoded><![CDATA[<p>thanks Olaf!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Olaf Stutzke</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-258049</link>
		<dc:creator>Olaf Stutzke</dc:creator>
		<pubDate>Fri, 18 Jan 2008 07:13:57 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-258049</guid>
		<description>To apply character style &quot;[None]&quot; to a selection of text I use this little JavaScript that applies the character style and clears overrides.
You can invoke the script with a keystroke:
-----------------
// noCharStyle.jsx

if ( app.selection.length &gt; 0 )
{
	switch ( app.selection[0].constructor.name )
	{     
		case &quot;InsertionPoint&quot;:     
		case &quot;Character&quot;:     
		case &quot;Word&quot;:     
		case &quot;TextStyleRange&quot;:     
		case &quot;Line&quot;:     
		case &quot;Paragraph&quot;:     
		case &quot;TextColumn&quot;:     
		case &quot;Text&quot;:     
		case &quot;TextFrame&quot;:     
			main(  app.selection[0] );     
		default :     
			exit();     
	}
}   

function main( theObject )
{
	with ( theObject )
	{
		applyCharacterStyle( app.activeDocument.characterStyles[0]);
		clearOverrides( OverrideType.characterOnly);
	}
}
-----------
Olaf</description>
		<content:encoded><![CDATA[<p>To apply character style &#8220;[None]&#8221; to a selection of text I use this little JavaScript that applies the character style and clears overrides.<br />
You can invoke the script with a keystroke:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
// noCharStyle.jsx</p>
<p>if ( app.selection.length &gt; 0 )<br />
{<br />
	switch ( app.selection[0].constructor.name )<br />
	{<br />
		case &#8220;InsertionPoint&#8221;:<br />
		case &#8220;Character&#8221;:<br />
		case &#8220;Word&#8221;:<br />
		case &#8220;TextStyleRange&#8221;:<br />
		case &#8220;Line&#8221;:<br />
		case &#8220;Paragraph&#8221;:<br />
		case &#8220;TextColumn&#8221;:<br />
		case &#8220;Text&#8221;:<br />
		case &#8220;TextFrame&#8221;:<br />
			main(  app.selection[0] );<br />
		default :<br />
			exit();<br />
	}<br />
}   </p>
<p>function main( theObject )<br />
{<br />
	with ( theObject )<br />
	{<br />
		applyCharacterStyle( app.activeDocument.characterStyles[0]);<br />
		clearOverrides( OverrideType.characterOnly);<br />
	}<br />
}<br />
&#8212;&#8212;&#8212;&#8211;<br />
Olaf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hcwang</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-256754</link>
		<dc:creator>hcwang</dc:creator>
		<pubDate>Thu, 17 Jan 2008 06:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-256754</guid>
		<description>Great tip! I&#039;m not sure if I&#039;m missing something, but my guess is that the method you&#039;ve given here would only create the fake [None] character style for the current document. I found that you can simplify the whole thing if you make sure that no document is open, then choose &#039;New Character Style...&#039; from the panel fly-out menu, rename it and choose a keyboard shortcut and then click &#039;OK&#039;. The new style will automatically be based on the [None] default, so you don&#039;t need to make any adjustments to the style attributes at all. And best of all, the new style will be available for all new documents.

In an existing document, with NO text selected and the [None] character style selected in the panel, you could do the same thing: &#039;New Character Style...&#039;, rename, keyboard shortcut, OK, and you wouldn&#039;t need to fiddle with any other settings or Reset to base.

Anyway, love your website, podcasts and everything else. Thanks for providing us with a really wonderful resource!</description>
		<content:encoded><![CDATA[<p>Great tip! I&#8217;m not sure if I&#8217;m missing something, but my guess is that the method you&#8217;ve given here would only create the fake [None] character style for the current document. I found that you can simplify the whole thing if you make sure that no document is open, then choose &#8216;New Character Style&#8230;&#8217; from the panel fly-out menu, rename it and choose a keyboard shortcut and then click &#8216;OK&#8217;. The new style will automatically be based on the [None] default, so you don&#8217;t need to make any adjustments to the style attributes at all. And best of all, the new style will be available for all new documents.</p>
<p>In an existing document, with NO text selected and the [None] character style selected in the panel, you could do the same thing: &#8216;New Character Style&#8230;&#8217;, rename, keyboard shortcut, OK, and you wouldn&#8217;t need to fiddle with any other settings or Reset to base.</p>
<p>Anyway, love your website, podcasts and everything else. Thanks for providing us with a really wonderful resource!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ph1x</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-256016</link>
		<dc:creator>ph1x</dc:creator>
		<pubDate>Wed, 16 Jan 2008 16:04:39 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-256016</guid>
		<description>I was like woow when Anne-Marie said I got a solution..and what a simple solution!! Thank you Anne-Marie! Obviously even Deke have to get his brain on a lower level sometimes to solve an obstacle :)</description>
		<content:encoded><![CDATA[<p>I was like woow when Anne-Marie said I got a solution..and what a simple solution!! Thank you Anne-Marie! Obviously even Deke have to get his brain on a lower level sometimes to solve an obstacle <img src='http://indesignsecrets.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennie</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-255923</link>
		<dc:creator>Jennie</dc:creator>
		<pubDate>Wed, 16 Jan 2008 13:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-255923</guid>
		<description>I can&#039;t guess how often I have printed out a transcript, or one of the blog tips and tossed into the &quot;cool stuff I really need to explore&quot; pile on my desk. Several days or weeks later something will come across my desk and I think &quot;aha, I remember that&quot;! I reach for my stack of cool info and there is the answer.
I guess that I fall into the read online, listen, and print category...a little like the versatility of my favorite application!
Keep it coming!</description>
		<content:encoded><![CDATA[<p>I can&#8217;t guess how often I have printed out a transcript, or one of the blog tips and tossed into the &#8220;cool stuff I really need to explore&#8221; pile on my desk. Several days or weeks later something will come across my desk and I think &#8220;aha, I remember that&#8221;! I reach for my stack of cool info and there is the answer.<br />
I guess that I fall into the read online, listen, and print category&#8230;a little like the versatility of my favorite application!<br />
Keep it coming!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Blatner</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-253471</link>
		<dc:creator>David Blatner</dc:creator>
		<pubDate>Mon, 14 Jan 2008 16:06:22 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-253471</guid>
		<description>After gerd&#039;s comment, we&#039;ve decided to never do a podcast again. No, just kidding! I know that our style isn&#039;t everyone&#039;s cup of tea. I&#039;m glad that so many folks do enjoy it, though.

Originally, we decided to do the transcripts for deaf people; but I now can see that they are very useful to many others as well. It&#039;s clearly a worthwhile expenditure.</description>
		<content:encoded><![CDATA[<p>After gerd&#8217;s comment, we&#8217;ve decided to never do a podcast again. No, just kidding! I know that our style isn&#8217;t everyone&#8217;s cup of tea. I&#8217;m glad that so many folks do enjoy it, though.</p>
<p>Originally, we decided to do the transcripts for deaf people; but I now can see that they are very useful to many others as well. It&#8217;s clearly a worthwhile expenditure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Herzog</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-253468</link>
		<dc:creator>Andrew Herzog</dc:creator>
		<pubDate>Mon, 14 Jan 2008 16:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-253468</guid>
		<description>As far as pod/videocasts. I think they are good at least the few I have listened to. A few only downloaded the first part and then nothing, and I&#039;m have a high end broadband connection.

Some thoughts:
Maybe you have a short, no graphic or video, textual version that gets right to the point.

A longer version with graphics when they need to be shown for clarity. 

An even longer videocast that shows the work in process.

Or maybe, somehow, its all packaged into one show that the various portions (Video, Graphics, etc.) can be turned off by the end user depending on their needs.

Sometimes we may get the concept by a simple text explanation, other times we may need to see a few graphics, and other times we may need to see a full blown video.

What do you think?</description>
		<content:encoded><![CDATA[<p>As far as pod/videocasts. I think they are good at least the few I have listened to. A few only downloaded the first part and then nothing, and I&#8217;m have a high end broadband connection.</p>
<p>Some thoughts:<br />
Maybe you have a short, no graphic or video, textual version that gets right to the point.</p>
<p>A longer version with graphics when they need to be shown for clarity. </p>
<p>An even longer videocast that shows the work in process.</p>
<p>Or maybe, somehow, its all packaged into one show that the various portions (Video, Graphics, etc.) can be turned off by the end user depending on their needs.</p>
<p>Sometimes we may get the concept by a simple text explanation, other times we may need to see a few graphics, and other times we may need to see a full blown video.</p>
<p>What do you think?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne-Marie</title>
		<link>http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php/comment-page-1#comment-253437</link>
		<dc:creator>Anne-Marie</dc:creator>
		<pubDate>Mon, 14 Jan 2008 15:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://indesignsecrets.com/keyboard-shortcut-for-none-character-style.php#comment-253437</guid>
		<description>I thought of another way to create the MyNone style.

Dupe any of your existing character styles, double-click it to open the Options dialog box, check to make sure the style is Based On: [None] (the default setting) and click the Reset to Base button. 

That wipes out all the specs for the style -- it&#039;s now equivalent to [None] -- so you just have to rename it and give it a keyboard shortcut.</description>
		<content:encoded><![CDATA[<p>I thought of another way to create the MyNone style.</p>
<p>Dupe any of your existing character styles, double-click it to open the Options dialog box, check to make sure the style is Based On: [None] (the default setting) and click the Reset to Base button. </p>
<p>That wipes out all the specs for the style &#8212; it&#8217;s now equivalent to [None] &#8212; so you just have to rename it and give it a keyboard shortcut.</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-24 12:18:04 -->
