<?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>Kens Photoshop Blog &#187; Software</title>
	<atom:link href="http://internet-retards.com/wpmu/photoshop/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://internet-retards.com/wpmu/photoshop</link>
	<description>Plugins can't replace skill</description>
	<lastBuildDate>Thu, 15 Oct 2009 15:38:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Photoshop Colorpicker flash panel &#8211; a non-modal colorpicker for photoshop cs4</title>
		<link>http://internet-retards.com/wpmu/photoshop/photoshop-colorpicker-flash-panel-a-non-modal-colorpicker-for-photoshop-cs4/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/photoshop-colorpicker-flash-panel-a-non-modal-colorpicker-for-photoshop-cs4/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 13:26:12 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=456</guid>
		<description><![CDATA[Wouldn&#8217;t it be nice not to have to constantly open the photoshop color picker or use that dinky small color slider palette or *shudder* swatches? Well now you can just use this awesome flash panel colorpicker for photoshop made by Anastasiy. It just floats anywhere you want like any other photoshop panel and can be [...]]]></description>
			<content:encoded><![CDATA[<p>Wouldn&#8217;t it be nice not to have to constantly open the photoshop color picker or use that dinky small color slider palette or *shudder* swatches?</p>
<p>Well now you can just use this awesome flash panel colorpicker for photoshop made by Anastasiy.</p>
<p>It just floats anywhere you want like any other photoshop panel and can be rezised so you get a huge colorpicker. Works pretty much like the standard colorpicker.</p>
<div id="attachment_457" class="wp-caption alignnone" style="width: 499px"><a href="http://internet-retards.com/wpmu/photoshop/photoshop-colorpicker-flash-panel-a-non-modal-colorpicker-for-photoshop-cs4/photoshop-colorpicker/" rel="attachment wp-att-457"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/10/photoshop-colorpicker.jpg" alt="photoshop colorpicker" width="489" height="333" class="size-full wp-image-457" /></a><p class="wp-caption-text">photoshop colorpicker</p></div>
<p><a href="http://anastasiy.com/">Download photoshop colorpicker</a></p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/photoshop-colorpicker-flash-panel-a-non-modal-colorpicker-for-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop and AutoHotKey the perfect pair</title>
		<link>http://internet-retards.com/wpmu/photoshop/photoshop-and-autohotkey-the-perfect-pair/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/photoshop-and-autohotkey-the-perfect-pair/#comments</comments>
		<pubDate>Sun, 04 Oct 2009 13:34:28 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=441</guid>
		<description><![CDATA[Ever wanted to create hotkeys in photoshop but you couldn&#8217;t because photoshop didn&#8217;t allow that hotkey combination? Or wanted to use the TAB key for something else? There&#8217;s a free program that allows you to use keys such as TAB, numlock, scrolllock, printscreen or the break key and map it to something usefull. That program [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to create hotkeys in photoshop but you couldn&#8217;t because photoshop didn&#8217;t allow that hotkey combination? Or wanted to use the TAB key for something else?</p>
<p>There&#8217;s a free program that allows you to use keys such as TAB, numlock, scrolllock, printscreen or the break key and map it to something usefull. That program is called AutohotKey. You can download it for free and unleash all that power here: <a href="http://www.autohotkey.com/download/">Download Autohotkey</a><span id="more-441"></span></p>
<p>For example here&#8217;s how you would map the numlock key to send out F11 which you could map to whatever in photoshop. I like everything on my numerical keyboard so I can just keep my hand there and have everything I need in reach.</p>
<p><code>#ifWinActive ahk_class Photoshop<br />
{<br />
   NumLock::<br />
   {<br />
        Send {F11}<br />
	Sleep, 100<br />
        return<br />
   }<br />
}</code></p>
<p>If you look at your numerical keyboard and place your hand there, look at how many usefull keys are in reach of your fingers without mocing your hand.</p>
<p>Numpad minus<br />
Numpad plus<br />
Numpad divide<br />
Numpad multiply<br />
Numpad comma<br />
Numlock<br />
Printscreen<br />
Scrolllock<br />
Break key<br />
page up<br />
page down<br />
home<br />
end<br />
insert<br />
delete</p>
<p>All those keys are sitting there useless when you could bind them to all the stuff you use all the time and never have to move your hand.</p>
<p>That&#8217;s not all, you can also bind the mouse buttons to something usefull. Here a couple of scripts I use:</p>
<p>Bind your pen up button to W and now you can rotate the canvas by dragging the pen around.<br />
<code>#ifWinActive ahk_class Photoshop<br />
{<br />
w::<br />
{<br />
send {r down}<br />
Loop<br />
{<br />
sleep, 10<br />
GetKeyState, state, w, p<br />
if state = u<br />
break<br />
}<br />
send {b}<br />
return<br />
}<br />
}</code></p>
<p>Bind your pen down button to S and resize the brush on the fly by dragging left and right.<br />
<code>#ifWinActive ahk_class Photoshop<br />
{<br />
s::<br />
{<br />
send {alt down}<br />
mouseclick, right,,, 1, 0, d<br />
Loop<br />
{<br />
sleep, 10<br />
GetKeyState, state, s, p<br />
if state = u<br />
break<br />
}<br />
mouseclick, right,,, 1, 0, U<br />
send {alt up}<br />
return<br />
}<br />
}</code></p>
<p>Here&#8217;s an example of using the insert key to send out control+shift+n, use the photoshop keyboard editor to bind that to something you need. You can modify this script and make copies of it to match Numlock, printscreen or any other key.<br />
<code>#ifWinActive ahk_class Photoshop<br />
{<br />
   insert::<br />
   {<br />
      send {Control down} {Shift down} n {Shift up} {Control up}<br />
      return<br />
   } </p>
<p>}</code></p>
<p>Here&#8217;s some examples for numlock and printscreen:</p>
<p><code><br />
#ifWinActive ahk_class Photoshop<br />
{<br />
   PrintScreen::<br />
   {<br />
        Send {Control down}{Alt down}{LShift down}h{LShift up}{Alt up}{Control up}<br />
	Sleep, 100<br />
        return<br />
   }<br />
}</p>
<p>#ifWinActive ahk_class Photoshop<br />
{<br />
   NumLock::<br />
   {<br />
        Send {F11}<br />
	Sleep, 100<br />
        return<br />
   }<br />
}</code></p>
<p>But that&#8217;s not all, this one is going to blow your mind baby so don&#8217;t skip it!</p>
<p>Since I like everything around the numerical keyboard I want to be able to bind as much stuff to those keys. AutoHotKey also allows you to create your own modifier keys.</p>
<p>A modifier key is a key that while held down modifies any other key, like ALT+S, while ALT is held down S works differently.</p>
<p>How about we make numpad divide a modifier key looking for another press of numpad multiply?</p>
<p><code>#ifWinActive ahk_class Photoshop<br />
{<br />
   NumpadDiv &amp; NumPadMult::<br />
   {<br />
        Send, {control down}{F8}{control up}<br />
        Sleep, 100<br />
        return<br />
   } </p>
<p>}</code></p>
<p>The only drawback is that the first key (The modifier) looses its normal function unless you make another script to handle that.</p>
<p>In the example above, in photoshop the numpad divide key would lose its ability to work, so we write a new script to catch that.</p>
<p>#ifWinActive ahk_class Photoshop<br />
{<br />
   NumpadDiv::<br />
   {<br />
        Send, {control down}{F5}{control up}<br />
	Sleep, 100<br />
        return<br />
   } </p>
<p>}</p>
<p>Now AutoHotKey knows that if you press and then release the divide key then it catches that key, if you press divide and multiply then it knows that it has to catch that instead.</p>
<p>If you sit and let all this sink in for a while, imagine all the combinations of keys you can bind to the numerical keyboard, you can operate every single thing in photoshop without moving your hand of the numerical keyboard.</p>
<p>The only keys on the numerical side of the keyboard you should leave alone is the numbers 0-9 as they are used to control transparency of the brush and layers. That doesn&#8217;t stop you from making modifier combos out of them. Just catch numpad1 &amp; numpad2, then make sure you also create a section for numpad1 and send out numpad1 so that when you only press and release numpad1 it works like normal.</p>
<p>You could be sneaky and make your arrow keys your modifiers, so that when you press arrow left + numpad1 it&#8217;s one thing, when you press arrow up + numpad1 it&#8217;s another and so on, that&#8217;s 104 combos worth of keys right at your fingertips.</p>
<p><em>Se also: <a href="http://internet-retards.com/wpmu/photoshop/changing-photoshop-hardcoded-shortcut-keys/">Changing Photoshop Hardcoded Shotcut Keys</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/photoshop-and-autohotkey-the-perfect-pair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Painter Style Brush resize and canvas rotation in Photoshop CS4</title>
		<link>http://internet-retards.com/wpmu/photoshop/painter-style-brush-resize-and-canvas-rotation-in-photoshop-cs4/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/painter-style-brush-resize-and-canvas-rotation-in-photoshop-cs4/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 12:31:02 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=394</guid>
		<description><![CDATA[I used painter for a little while to check it out and see if I liked it better than photoshop for artistic stuff. The brush engine is quite nice but I can recreate everything with photoshops brush engine, vastly superior blending modes and layer styles and painter was just to slow and clunky for my [...]]]></description>
			<content:encoded><![CDATA[<p>I used painter for a little while to check it out and see if I liked it better than photoshop for artistic stuff. The brush engine is quite nice but I can recreate everything with photoshops brush engine, vastly superior blending modes and layer styles and painter was just to slow and clunky for my taste and the lack of photoshops masking abillities is a total showstopper.</p>
<p>I did however LOVE the way you can bind keys so you can resize the brushes and rotate the canvas with the mouse/pen; something that&#8217;s impossible to setup in photoshop.<span id="more-394"></span></p>
<p>Well, where there&#8217;s a will there&#8217;s a way; in the form of a couple neat Autohotkey Scripts that I have attached to this post. You will need to download AutopHotKey first, it&#8217;s free and contains no spyware so <a href="http://www.autohotkey.com/download/">go ahead and download Autohotkey first</a>.</p>
<p>Now download the 2 scripts below, they are simple text files, so be my guest and review them before running them, it&#8217;s not a smart idea to just download and run shit from some dude on the internet.</p>
<p><a href='http://internet-retards.com/wpmu/photoshop/painter-style-brush-resize-and-canvas-rotation-in-photoshop-cs4/cs4resize/' rel='attachment wp-att-397'>cs4resize</a><br />
<a href='http://internet-retards.com/wpmu/photoshop/painter-style-brush-resize-and-canvas-rotation-in-photoshop-cs4/cs4rotate/' rel='attachment wp-att-398'>cs4rotate</a></p>
<p>Ok, now that the scripts are running you will se 2 green icons in your taskbar, that means they are ready and looking for something to react to.</p>
<p>First, make sure nothing is bound to the W and S keys in photoshop, otherwize remap that to something else, I promise you will LOVE what you get in return.</p>
<p>Now map a couple keys on your mouse (Or Wacom pen as I use. I mapped the side button Up/Down click to W and S) to W and S.</p>
<p>Select your brush tool and press the mouse/pen button you bound to the S key, drag the pen/mouse left/right and you will resize your brush. If you do a normal click while doing this you will pick up the underlying color with the eyedropper color picker, so it&#8217;s 2 tools in one.</p>
<p>Now press the button you mapped to W and drag left/right on the canvas in photoshop and you will rotate the canvas. This button is also multifunctional. Just tapping it will switch to your brush tool.</p>
<p>Have fun <img src='http://internet-retards.com/wpmu/photoshop/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/painter-style-brush-resize-and-canvas-rotation-in-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lightroom &#8211; don&#8217;t show images in subfolders</title>
		<link>http://internet-retards.com/wpmu/photoshop/lightroom-dont-show-images-in-subfolders/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/lightroom-dont-show-images-in-subfolders/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:28:33 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=175</guid>
		<description><![CDATA[By default Lightroom will show you images in subfolders even when you have selected the top folder in a hierachy. This wreaks havoc if you like me, like to import a bunch of photos from a flashcard, then organize them into subfolders. I do this because I sometimes want to browse images outside Lightroom, then [...]]]></description>
			<content:encoded><![CDATA[<p>By default Lightroom will show you images in subfolders even when you have selected the top folder in a hierachy. This wreaks havoc if you like me, like to import a bunch of photos from a flashcard, then organize them into subfolders. I do this because I sometimes want to browse images outside Lightroom, then having a nice hierachy comes in handy.</p>
<p>When Lightroom then shows all images in subfolders it becomes impossible to know what photos has allready been moved when locating them from the top folder, which shows you all the photos in the subfolders.. arghhh.</p>
<p>Finally found a way around this, it&#8217;s a bit hidden and I personally think this should be done from Lightrooms preferences dialog somewhere, not hidden in some submenu. Anyways&#8230;</p>
<p>Go to File/Library filters, then uncheck &#8220;Include photos from subfolders&#8221;</p>
<p>Tadaaaa!</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/lightroom-dont-show-images-in-subfolders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

