<?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>Programmer Palace &#187; graphic design</title>
	<atom:link href="http://www.programmerpalace.com/tag/graphic-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.programmerpalace.com</link>
	<description>Programming Information</description>
	<lastBuildDate>Fri, 27 Nov 2009 15:32:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>InDesign Scripting &#8211; Finding And Changing&#160;Text</title>
		<link>http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/</link>
		<comments>http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/#comments</comments>
		<pubDate>Sat, 07 Nov 2009 11:07:11 +0000</pubDate>
		<dc:creator>Christopher Mason</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[computer software]]></category>
		<category><![CDATA[computers and the internet]]></category>
		<category><![CDATA[desktop publishing]]></category>
		<category><![CDATA[dtp]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[InDesign training]]></category>
		<category><![CDATA[page layout]]></category>

		<guid isPermaLink="false">http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/</guid>
		<description><![CDATA[Adobe has long offered users the option of automating InDesign workflows through scripting. Although scripts may be writing in AppleScript (Macintosh only) or VBScript (Windows only), the most satisfactory scripting language is the cross-platform, and very widely used, JavaScript. One of the simplest and yet most useful operations that can be accomplished using scripting is the automation of Find/Change. InDesign's Find/Change feature is one of the program's most powerful features and it is one of those features which can be fully automated by scripting. In fact, you can achieve a lot more through scripting than you can by manually performing a Find/Change operation.<p><a href="http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/">InDesign Scripting &#8211; Finding And Changing&nbsp;Text</a> is a post from: <a href="http://www.programmerpalace.com">Programmer Palace</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Adobe has long offered users the option of automating InDesign workflows through scripting. Although scripts may be writing in AppleScript (Macintosh only) or VBScript (Windows only), the most satisfactory scripting language is the cross-platform, and very widely used, JavaScript. One of the simplest and yet most useful operations that can be accomplished using scripting is the automation of Find/Change. InDesign&#8217;s Find/Change feature is one of the program&#8217;s most powerful features and it is one of those features which can be fully automated by scripting. In fact, you can achieve a lot more through scripting than you can by manually performing a Find/Change operation.</p>
<p>There are three main commands available in scripting for performing Find/Change operations: findText(), findGrep() and findGlyph(). A good deal can be accomplished using the straightforward findText() command. However, if you need to make fairly complex changes, and if you have the time and patience to find the right regular expression, you can use the findGrep() command which is designed for performing searches for regular expressions.</p>
<p>Before performing a Find/Change operation, you need to set up the preferences that will be used. Firstly, you set the properties of the findChangeTextOptions object: parameters include caseSensitive, wholeWord, ignoreHiddenLayers and ignoreMasterPages. Next, you set up your findTextPreferences and changeTextPreferences parameters, the most important of which are findWhat and changeTo, respectively. It is also usually a good idea to clear out any preferences that may still be in play from a previous search. This is done by setting both the findTextPreferences and changeTextPreferences objects to nothing, using the commands: app.findTextPreferences = NothingEnum.nothing and app.changeTextPreferences = NothingEnum.nothing.</p>
<p>As well as this, the findTextPreferences and changeTextPreferences objects offer all of the formatting parameters normally available with text objects.</p>
<p>One of the practical exercises which we give to students attending our InDesign scripting courses is to create a script which searches for the name of a company within a document, changes the format of the text to look like a regular web hyperlink (blue, bold, underlined) and then makes it a hyperlink. To change the format of the text, we simply use the appropriate properties of the changeTextPreferences object, such as fillColor, fontStyle and underline.</p>
<p>The writer of this article is a developer and trainer with a UK IT training company offering <a href="http://www.macresource.co.uk/courses/indesign4.htm">Adobe InDesign Classes</a> as well as <a href="http://www.macresource.co.uk/courses/photoshop-scripting.htm">Photoshop training</a> at their central London training centre.</p>
<p><a href="http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/">InDesign Scripting &#8211; Finding And Changing&nbsp;Text</a> is a post from: <a href="http://www.programmerpalace.com">Programmer Palace</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.programmerpalace.com/2009/11/07/indesign-scripting-finding-and-changing-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Popular Graphic Effects Using Adobe&#160;Software</title>
		<link>http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/</link>
		<comments>http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 14:59:40 +0000</pubDate>
		<dc:creator>Amy Nutt</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[adobe photoshop]]></category>
		<category><![CDATA[adobe software]]></category>
		<category><![CDATA[design software]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[graphic designers]]></category>

		<guid isPermaLink="false">http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/</guid>
		<description><![CDATA[As an industry-standard, quality graphic design skills are a necessity for every graphic designer. Professional graphic effects are an essential part of graphic design. Professional graphic designers now utilize Adobe software to meet the high quality industry standards regarding graphic design effects.<p><a href="http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/">Creating Popular Graphic Effects Using Adobe&nbsp;Software</a> is a post from: <a href="http://www.programmerpalace.com">Programmer Palace</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style='font-style:italic' class='byline'>by Amy Nutt</div>
<p>As an industry-standard, quality graphic design skills are a necessity for every graphic designer. Professional graphic effects are an essential part of graphic design. Professional graphic designers now utilize Adobe software to meet the high quality industry standards regarding graphic design effects.</p>
<p>Adobe software features allow graphic designers to create popular graphic effects. The following outlines the many features of the various Adobe graphic design software as reported on Adobe.com:</p>
<p>1. Adobe software allows graphic designers to create spectacular motion graphics and visual effects. There are specific tools and features for wide ranging fields such as video, science, architecture, and much more. For instance, when one uses Adobe After Effects CS4 software, one will be able to create motion graphics and visual effects that will amaze viewers.</p>
<p>2. Adobe software provides the essential tools for professional photo editing, graphic design, and digital imaging. Graphic designers can use the software for such tasks as creating art design for such projects as flyer, brochures, magazines, posters, billboard &#8230;etc, creating corporate image and brands, creating CD or DVD covers, creating book and e-book covers, creating Graphic User Interfaces, creating online advertisements, film production, image restoration for improved quality or improving old or damaged images, professional portrait retouching, commercial advertising design or marketing, and much more. As well, the designer can automate tasks and increase production using such tools as batch processing, actions, scripts, and more.</p>
<p>3. Adobe design software such as Adobe Photoshop CS4 provides an innovative canvas rotation tool, finer screen drawing, and improved zooming. Another beneficial feature in Photoshop CS4 is the content-aware scaling which allows one to identify detailed areas of images and scale them while leaving the other areas of the image unaffected.</p>
<p>4. Adobe Creative Suite 4 Design Premium is excellent software for creating striking digital images and vector graphics, producing precise page layouts, refining typography, and developing high quality and impressive web pages that will catch the eye of all visitors.</p>
<p>5. Software such as Adobe Photoshop CS4 Extended allows for innovative 3D painting. Other beneficial functions of Adobe Photoshop include: gradients, frames, patterns, adding depth to layers and text scripts, textures, actions, converting gradient maps to 3D objects, and much more.</p>
<p>6. Adobe graphic design software provides designers with the Common Library containing a large repository of graphic symbols, form elements, text symbols, and animations. Graphic designers have the ability to expand the graphic design collection in the repository with their own custom created symbols and styles.</p>
<p>7. Web prototyping and image editing with such software as Adobe Fireworks CS4 allows one to design web pages in an innovative graphic environment.</p>
<p>8. Adobe?s Live Preflight will warn users of possible production problems in real time so one can quickly go to the problem, fix it entirely in layout, and continue working on the project.</p>
<p>Professional graphic design software is a must-have for every professional designer. The creative and innovative features of Adobe software make it a vital tool for every graphic designer.</p>
<div class='resource'>
<div style='font-style:italic' class='about'>About the Author:</div>
<div class='links'>Worrying about huge cost of professional software? Searching for <a href="http://www.softwareking.com/adobe.html">cheap Adobe software</a> or <a href="http://www.softwareking.com/microsoft.html">cheap Microsoft software</a> online? We offer various software of the best deal for you! We guarantee that all our software is 100% genuine at the lowest possible price.</div>
</div>
<p><a href="http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/">Creating Popular Graphic Effects Using Adobe&nbsp;Software</a> is a post from: <a href="http://www.programmerpalace.com">Programmer Palace</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.programmerpalace.com/2009/10/02/creating-popular-graphic-effects-using-adobe-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

