<?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>Interactive Llama :: Interactive media tutorials and tips &#187; Photoshop</title>
	<atom:link href="http://www.interactivellama.com/blog/archives/category/photoshop/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.interactivellama.com/blog</link>
	<description>Interactive media tutorials and tips</description>
	<lastBuildDate>Thu, 05 Aug 2010 18:54:15 +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>CSSsprite: Photoshop script combines two images for CSS hover</title>
		<link>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/</link>
		<comments>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 20:48:41 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actions]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[automation]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sprite]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://www.smjdesign.com/designwell/?p=132</guid>
		<description><![CDATA[

The need

Professional web developers have been aware of CSS sprites or CSS rollovers/hovers since 2004 (The rollover term is taken JavaScript and hover term is taken from CSS).  They are the background graphics that change position based on mouse hover thus eliminating the need for JavaScript image swaps and image caching since the &#8220;mouse [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-135" title="csssprites_before" src="http://www.smjdesign.com/designwell/wp-content/uploads/2008/11/csssprites_before-300x123.jpg" alt="" width="300" height="123" /></p>
<p><img class="alignnone size-medium wp-image-136" title="csssprites_after" src="http://www.smjdesign.com/designwell/wp-content/uploads/2008/11/csssprites_after-300x132.jpg" alt="" width="300" height="132" /></p>
<p><strong>The need<br />
</strong></p>
<p>Professional web developers have been aware of <a href="http://www.alistapart.com/articles/sprites/">CSS sprites</a> or CSS rollovers/hovers since 2004 (The rollover term is taken JavaScript and hover term is taken from CSS).  They are the background graphics that change position based on mouse hover thus eliminating the need for JavaScript image swaps and image caching since the &#8220;mouse on&#8221; and &#8220;mouse off&#8221; are one image. I have been using sprites for years. It is a more tedious process than clicking Swap image on a DreamWeaver drop down menu, but it produces more accessible and more clean code. The most tedious part of creating CSS sprites for menu navigation is aligning the static (in-active) and hover (active) images. This script solves this problem by taking two images and merging them into one. I hope this increases your productivity and creates a more standards-compliant web.</p>
<p><span id="more-132"></span></p>
<p>There are <a href="http://spritegen.website-performance.org/">online CSS sprite generators</a> out there. My Photoshop script is not as remarkable as these 20 image sprites, but itâ€™s much simpler, and you can assign a keyboard shortcut to it. Also, all my sites are designed in Illustrator which is a slightly different work flow than most. I find that Photoshop is an awful layout program.</p>
<p><a href="http://www.smjdesign.com/designwell/wp-content/uploads/2008/11/CSSsprite.jsx">Download CSSsprite.jsx</a></p>
<p><strong>Installation<br />
</strong></p>
<p>A JSX script is similar to a Photoshop plugin or an action, but are commands in Photoshop&#8217;s JavaScript based script interface. Download and copy this script within the Presets&gt;&gt;Scripts folder of your Photoshop application folder:</p>
<ul>
<li>OS-X: Macintosh HD/Applications/Adobe Photoshop CS3/Presets/Scripts/</li>
<li>Windows: Program Files/Photoshop CS/Presets/Scripts</li>
</ul>
<p>The Script will appear under File&gt;&gt;Scripts&gt;&gt;CSSsprite on the menu. You can assign a keyboard shortcut to this script. I prefer Control+Command+S. This shortcut fits well with the Save for Web shortcut, Command+Alt+Shift+S.</p>
<p><strong>Usage<br />
</strong></p>
<p>Open two files (and <em>only</em> two files) with the same height and width (if they are different sizes, the offset of your hover button state will not be half of the height). Select the non-hover background image, making it active&#8211;thus making the hover background image de-active. Run the script from the Scripts menu mentioned above. This will place the hover background image on the bottom of the sprite. This script does not support adding a third state to the sprite, but you could add a third <em>and</em> fourth state. To do this, first combine the third and fourth state, and then combine that image with the normal/hover sprite.</p>
<p><strong>For your information: States for this script</strong></p>
<p>The following is a list of Photoshop commands that are executed in this script:</p>
<ul>
<li>Convert Image Mode to RGB</li>
<li>Make horizontal guide at 100% of canvas height</li>
<li>Switch to inactive document (-1 in document array)</li>
<li>&#8220;Duplicate Layer. . .&#8221; Layer Menu via right click</li>
<li>Switch back to inactive document (+1 in document array)</li>
<li>Double canvas size vertically</li>
<li>Transform/Move top layer down (50% of canvas size)</li>
<li>Zoom In (twice)</li>
</ul>
<p><strong>Result<br />
</strong>This gives you a two-layered Photoshop file with second layer the CSS hover layer. Save the file as GIF, PNG, or JPEG using File&gt;&gt;Save for Web.</p>
<p><strong>Notes<br />
</strong>Adobe Photoshop JavaScript is the only cross-platform scripting language for Photoshop. <em>This script was only tested Photoshop CS3 Extended (Mac)</em>. Our firm does not use Photoshop for web layout&#8211;only for image manipulation. We use Illustrator for layout.</p>
<p>I would like to thank the creators of <a href="http://blogs.adobe.com/crawlspace/2006/05/installing_and_1.html">ScriptingListenerJS</a> and <a href="http://ps-scripts.cvs.sourceforge.net/viewvc/ps-scripts/xtools/xapps/">ActionToJavaScript</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/photoshop-script-combine-two-images-css-hover-css-sprite/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Graphic web design and cascading style sheets</title>
		<link>http://www.interactivellama.com/blog/archives/graphic-web-design-and-cascading-style-sheets/</link>
		<comments>http://www.interactivellama.com/blog/archives/graphic-web-design-and-cascading-style-sheets/#comments</comments>
		<pubDate>Sun, 10 Feb 2008 21:46:48 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox_extensions]]></category>
		<category><![CDATA[internet_explorer]]></category>
		<category><![CDATA[style sheet]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://www.smjdesign.com/designwell/archives/graphic-web-design-and-cascading-style-sheets/</guid>
		<description><![CDATA[On Saturday, February 9 at 11:30 am, I spoke at BarcampIndy 2008 on Graphic Web Design and Cascading Style Sheets. All presentations were broadcast on BlipTV. You can view a video of this presentation on BlipTV.
The premise of my presentation was to show an overview of the process between layout in Illustrator and PhotoShop to [...]]]></description>
			<content:encoded><![CDATA[<p>On Saturday, February 9 at 11:30 am, I spoke at <a href="http://barcamp.org/barcampindy">BarcampIndy 2008</a> on Graphic Web Design and Cascading Style Sheets. All presentations were broadcast on BlipTV. You can view a <a href="http://blip.tv/file/658349">video of this presentation on BlipTV</a>.</p>
<p>The premise of my presentation was to show an overview of the process between layout in Illustrator and PhotoShop to coding in HTML and CSS. I find that web design is often segmented between the coders and graphic designers. I propose that the best outcome can come from bridging that gap. I do this in my daily workplace and try to show tips and techniques for others to bridge that gap. The time slot was only a half hour, so I could not go into coding detail, but only point to tutorials via links.<span id="more-118"></span></p>
<p>You can view the <a href="http://www.smjdesign.com/public/presentations/barcampindy2008/graphic_web_design-and-css-smjdesign.ppt">Graphic Web Design and Cascading Style Sheets PowerPoint</a> (431KB) or view the <a href="http://www.smjdesign.com/public/presentations/barcampindy2008/graphic_web_design-and-css-smjdesign.htm">presentation in HTML</a>. Some <a href="http://www.smjdesign.com/public/presentations/barcampindy2008/support-images/">support images</a> and <a href="http://del.icio.us/smjdesign/barcampindy2008">all sites discussed can be found on Delicious</a> (theses are notated by &#8220;{link}&#8221; within the presentation).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/graphic-web-design-and-cascading-style-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six plus hours uninstalling and re-installing Adobe Creative Suite 3 (OS-X)</title>
		<link>http://www.interactivellama.com/blog/archives/six-plus-hours-uninstalling-and-re-installing-adobe-creative-suite-3-os-x/</link>
		<comments>http://www.interactivellama.com/blog/archives/six-plus-hours-uninstalling-and-re-installing-adobe-creative-suite-3-os-x/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 17:47:47 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Illustrator]]></category>
		<category><![CDATA[OS-X]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Printing]]></category>
		<category><![CDATA[adobe_creative_suite]]></category>
		<category><![CDATA[adobe_illustrator]]></category>
		<category><![CDATA[adobe_support]]></category>
		<category><![CDATA[cs3]]></category>
		<category><![CDATA[epson_stylus_photo_r220]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[uninstall]]></category>
		<category><![CDATA[unix_shell_script]]></category>

		<guid isPermaLink="false">http://www.smjdesign.com/designwell/archives/six-plus-hours-uninstalling-and-re-installing-adobe-creative-suite-3-os-x/</guid>
		<description><![CDATA[Adobe Illustrator CS3 crashed every time I tried to print to a CD on my Epson Stylus Photo R220. I decided to re-install Adobe Illustrator CS3. I did an uninstall with the uninstaller found in /Applications/Utilites/Adobe Installers. I then tried to re-install Adobe Illustrator CS3 with the installation DVD. Twenty minutes into the installation, it [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe Illustrator CS3 crashed every time I tried to print to a CD on my Epson Stylus Photo R220. I decided to re-install Adobe Illustrator CS3. I did an uninstall with the uninstaller found in /Applications/Utilites/Adobe Installers. I then tried to re-install Adobe Illustrator CS3 with the installation DVD. Twenty minutes into the installation, it said<br />
&#8220;Please insert Adobe ExtendScript Toolkit 2 to continue installation&#8221; I googled the error and found this Adobe support page, <a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=kb402343">Message &#8220;Please insert Adobe ExtendScript Toolkit 2 to continue installation&#8221; when you install, reinstall or repair a CS3 Suite or CS3 application (Mac OS)</a> I could not find a &#8220;Add or Remove Adobe ExtendScript Toolkit 2 alias&#8221; in /Applications/Utilites/Adobe Installers, so I decided to re-install the whole suite!</p>
<p>One of my co-workers warned that I needed to completely remove CS3 preferences, plists, and all those other files that OS-X applications install but never remove!!! I finally found this Adobe Support page, <a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401574">Remove CS3 prerelease software (Creative Suite and individual applications)</a>. I figured that it would remove release software, too. I believe that it does, but be sure you know what you doing when you use it. This script runs from the terminal, so it mainly a UNIX shell script that deletes folders and files.</p>
<p>I am now back to Illustrator 13.0.0 instead of 13.0.2, but only after more than six hours of uninstalling and re-installing Adobe Creative Suite !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/six-plus-hours-uninstalling-and-re-installing-adobe-creative-suite-3-os-x/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Saving large Photoshop documents (PSD)</title>
		<link>http://www.interactivellama.com/blog/archives/saving-large-photoshop-documents-psd/</link>
		<comments>http://www.interactivellama.com/blog/archives/saving-large-photoshop-documents-psd/#comments</comments>
		<pubDate>Tue, 25 Oct 2005 15:15:00 +0000</pubDate>
		<dc:creator>Stephen James</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Productivity & Workflow]]></category>

		<guid isPermaLink="false">http://smjdesign.com/designwell/?p=40</guid>
		<description><![CDATA[Most other applications and older versions of Photoshop cannot support documents with file sizes larger than 2 GB. There is new Large Document Format (PSB) that is supported in Photoshop CS and CS2. All Photoshop features, such as layers, effects, and filters, are supported by the PSB format. Other applications and older versions of Photoshop [...]]]></description>
			<content:encoded><![CDATA[<p>Most other applications and older versions of Photoshop cannot support documents with file sizes larger than 2 GB. There is new Large Document Format (PSB) that is supported in Photoshop CS and CS2. All Photoshop features, such as layers, effects, and filters, are supported by the PSB format. Other applications and older versions of Photoshop cannot open documents saved in PSB format.</p>
<p>There are three steps that Photoshop takes in saving a file: Generating Full Resolution Composite, Preparing to Save, and Writing Photoshop Format. When dealing with files approaching the 2GB limit, you can quicken the ?¢‚Ç¨?ìGenerating Full Resolution Composite?¢‚Ç¨¬ù and the ?¢‚Ç¨?ìPreparing to Save?¢‚Ç¨¬ù step by hiding all the layers (Alt+click one layer?¢‚Ç¨‚Ñ¢s visibility icon will hide all other layers on the PC). The documents will still take a few minutes to save, but some time will be shaved off the beginning of the save.</p>
<p>If there is one layer or more (adjustment, bitmap, vector, or text) and the &#8220;Maximize Compatibility&#8221; feature is turned on, Photoshop saves two copies of the same image. One is flattened (Full Resolution Composite) and the other is in layers. If you deselect the ?¢‚Ç¨?ìMaximize Compatibility?¢‚Ç¨¬ù feature, this might even reduce your file size by half, and eliminates the reason to hide all the layers for ?¢‚Ç¨?ìFull Resolution Composite.?¢‚Ç¨¬ù</p>
<p>&#8211;Stephen M. James<br />
<a href="http://www.smjdesign.com/">www.smjdesign.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.interactivellama.com/blog/archives/saving-large-photoshop-documents-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
