<?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; Tips and Tricks</title>
	<atom:link href="http://internet-retards.com/wpmu/photoshop/category/tips-and-tricks/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>Use any photoshop brush as eraser</title>
		<link>http://internet-retards.com/wpmu/photoshop/use-any-photoshop-brush-as-eraser/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/use-any-photoshop-brush-as-eraser/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 15:38:49 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Blending Modes]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=462</guid>
		<description><![CDATA[Here&#8217;s a little quickie that many people don&#8217;t think about. If you like to use your current brush and erase with it, it&#8217;s annoying to have to switch to the eraser and then pick the same brush from the brushes palette, or create duplicate of all your brushes set to erase. Just switch your brush [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little quickie that many people don&#8217;t think about.</p>
<p>If you like to use your current brush and erase with it, it&#8217;s annoying to have to switch to the eraser and then pick the same brush from the brushes palette, or create duplicate of all your brushes set to erase.<span id="more-462"></span></p>
<p>Just switch your brush blending mode to &#8220;Clear&#8221; and voila, now you&#8217;r erasing with your current brush. A quick shortcut to change brush blending mode to clear is control+shift+r and then control+shift+n to go back to normal mode.  You can also flip through the blending modes with control+shift and then use plus and minus keys to scroll through the modes. This works with layer blend modes to, just make sure you have to move tool selected. (v)</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/use-any-photoshop-brush-as-eraser/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photoshop CS4 Brush resize on the fly for photoshop CS3</title>
		<link>http://internet-retards.com/wpmu/photoshop/photoshop-cs4-brush-resize-on-the-fly-for-photoshop-cs3/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/photoshop-cs4-brush-resize-on-the-fly-for-photoshop-cs3/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 11:30:28 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Painting And Drawing]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=452</guid>
		<description><![CDATA[Hey hey, more Autohotkey goodness for CS3 users, brush resize on the fly, CS4 style! First download a free copy of Autohotkey Save a textfile called &#8220;cs3resize.ahk&#8221; and copy and paste the code below into that file and save it. Then doubleclick it to run the script. By default the script uses the M key [...]]]></description>
			<content:encoded><![CDATA[<p>Hey hey, more Autohotkey goodness for CS3 users, brush resize on the fly, CS4 style!</p>
<p>First download a free copy of <a href="http://www.autohotkey.com/download/">Autohotkey</a><span id="more-452"></span></p>
<p>Save a textfile called &#8220;cs3resize.ahk&#8221; and copy and paste the code below into that file and save it. Then doubleclick it to run the script.</p>
<p>By default the script uses the M key to trigger, you can change that by looking at the comments in the code below.</p>
<p>Select the brush tool, then hit M and move your mouse or pen up and down (NOT left and right) on the screen and watch your brush resized on the fly. Hit M again to return to normal drawing mode.</p>
<p>The script simply sends out the left and right bracket keys when the mouse/pen is moved up and down. You can easily make copies and this script and bind other hotkeys for brush hardness or anything else in photoshop that has increasing and decreasing values.</p>
<p><code><br />
;CS3 Brush Resize on the fly<br />
#ifWinActive ahk_class Photoshop<br />
{</p>
<p>;Mess with this if moving the pen takes to much CPU<br />
setbatchlines, 500ms </p>
<p>;Bad things will happen if you change this.<br />
#MaxThreadsPerHotkey 2</p>
<p>bbrake=1 </p>
<p>Coordmode, mouse, Screen </p>
<p>;This is the shortcut (m) you use to activate, look in AHK Help for keycodes.<br />
;Make sure this is not bound to any function in photoshop.<br />
m::<br />
    MouseGetPos,, old_mousey </p>
<p>    if bbrake<br />
    {<br />
        bbrake=0<br />
    }<br />
    else if !bbrake<br />
    {<br />
        bbrake=1<br />
        return<br />
    } </p>
<p>    loop<br />
    {<br />
        MouseGetPos,, mousey </p>
<p>        if ((mousey=old_mousey) and (bbrake != 1))<br />
            continue<br />
        else if bbrake=1<br />
            break </p>
<p>        if (mousey &gt; old_mousey)<br />
        {<br />
;Mouse move up. Change to a key you have set in photoshop cs3 to increase something.<br />
            send, {[}<br />
            old_mousey:=mousey<br />
        }<br />
        else if (mousey &lt; old_mousey)<br />
        {<br />
;Mouse move down. Change to a key you have set in photoshop cs3 to decrease something.<br />
            send, {]}<br />
            old_mousey:=mousey<br />
        }<br />
    } </p>
<p>return</p>
<p>}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/photoshop-cs4-brush-resize-on-the-fly-for-photoshop-cs3/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>Draw perfect lines and ellipsis with mouse trails</title>
		<link>http://internet-retards.com/wpmu/photoshop/draw-perfect-lines-and-ellipsis-with-mouse-trails/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/draw-perfect-lines-and-ellipsis-with-mouse-trails/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 14:51:03 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=436</guid>
		<description><![CDATA[Here&#8217;s a little trick I came up with that&#8217;s so simple I smacked my forehead when it occurred to me.. Go to your mouse control panel and turn on mouse trails. Adjust the trail length to the maximum. Now to back to your drawing program and without actually pressing the draw button (With a pen [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little trick I came up with that&#8217;s so simple I smacked my forehead when it occurred to me..</p>
<p>Go to your mouse control panel and turn on mouse trails. Adjust the trail length to the maximum.</p>
<p>Now to back to your drawing program and without actually pressing the draw button (With a pen just hover above the canvas) and use the mouse trails to previsualize your strokes.</p>
<p>For example to draw an elipse just practice it and look at the trails, as soon as you have the major and minor axis&#8217;s down, gently press to draw.</p>
<p>Need to draw a perfect line to connect 2 points? Draw your fantom line in the air and press to draw when you have visualized it using the mouse trail.</p>
<p>My hit percentage went way up using this technique. It&#8217;s not cheating in my opinion because you do the same with pen and paper, it&#8217;s just that with a tablet your are disconnected from your drawing surface because you draw on the table/tablet instead of directly on the screen so you can&#8217;t do this as well. With mouse trails turned on you can.</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/draw-perfect-lines-and-ellipsis-with-mouse-trails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing photoshop hardcoded shortcut keys</title>
		<link>http://internet-retards.com/wpmu/photoshop/changing-photoshop-hardcoded-shortcut-keys/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/changing-photoshop-hardcoded-shortcut-keys/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 07:51:56 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=427</guid>
		<description><![CDATA[Tired of the hardcoded shortcut keys in photoshop? Want to change the TAB key into something else? And what the hell is up with not being able to bind stuff to single letter shortcuts? No matter. Go download the program Autohotkeys, it&#8217;s free and awesome. Autohotkey allows you to trap keys before a program gets [...]]]></description>
			<content:encoded><![CDATA[<p>Tired of the hardcoded shortcut keys in photoshop? Want to change the TAB key into something else? And what the hell is up with not being able to bind stuff to single letter shortcuts?</p>
<p>No matter. Go download the program <a href="http://www.autohotkey.com/">Autohotkeys</a>, it&#8217;s free and awesome.<br />
Autohotkey allows you to trap keys before a program gets control and send some other keycode intirely and throw away the trapped keycode.<span id="more-427"></span></p>
<p>This means that you can now just bind commands in photoshop to whatever random keycode and then setup autohotkey to watch for say &#8220;w&#8221; and translate that into the keycode photoshop expects.</p>
<p>Not clear enough yet? Ok here&#8217;s a sequence of what would happen. In this example want the curves dialog shortcut to just be &#8220;c&#8221; which photoshop won&#8217;t allow.</p>
<p>Autohotkey is watching for the key C to be pressed.<br />
I press C.<br />
Autohotkey catches that I pressed C and discards that, so photoshop doensn&#8217;t know C has been pressed.<br />
Autohotkey sends control+m<br />
Photoshop brings up the curves dialog because it sees control+m.</p>
<p>Here&#8217;s a simple code snippet you can change around to map out shortcut keys in photoshop.</p>
<p>#ifWinActive ahk_class Photoshop<br />
{<br />
   NumLock::<br />
   {<br />
        Send {F11}<br />
        Sleep, 100<br />
        return<br />
   }<br />
}</p>
<p>Let&#8217;s look at what&#8217;s going on here:</p>
<p><strong>#ifWinActive ahk_class Photoshop</strong></p>
<p>This is a section; So this only gets triggered when photoshop has the focus.</p>
<p><strong>NumLock::</strong></p>
<p>We watch for and catch the numlock key. Look in AHK helpfile for a table of keycodes.</p>
<p>We enter another section that only gets triggered when AHK sees that numlock has been pressed.</p>
<p><strong>Send {F11}</strong></p>
<p>AHK sends out the F11 key that you bind to whatever you want to happen in photoshop when you press the numlock key.</p>
<p>Sleep, 100</p>
<p>AHK pauses for 100ms just to give the program some time to react and returns.</p>
<p><strong>Holding down keys</strong></p>
<p>Say you want to simulate that you hold down alt+shift+m. This is done by by putting the keys you want to press and hold within brackets using the <em>Send</em> command.</p>
<p>Here&#8217;s a Send command that presses and holds down control+shift while pressing the M key:</p>
<p>Send {Control down}{Shift down}m{Shift up}{Control up}</p>
<p>The {Keycode up}{Keycode down} trick works for all keys.</p>
<p><strong>Creating toggle dialogs (you will love this)</strong></p>
<p>A toggle dialog is a popup window like the curves dialog where the same key that brings up the dialog will also close the dialog. Using a toggle dialog speeds up your workflow a lot. So say you bind the C key to bring up curves, adjust the curves and hit C again to accept the changes and close the curves dialog. So instead of pressing control+m, adjust, press enter you just to &#8220;C, adjust curves, C&#8221; done. MUCH faster.</p>
<p>First create a watch for whatever key you want and bind it to a command that brings up a dialog window.</p>
<p>Now look at this dialog window and notice the titlebar text. For example the curves dialog will say simply &#8220;Curves&#8221;</p>
<p>Here&#8217;s the code to handle a dialog toggle. Just change the &#8220;#IfWinActive, Curves&#8221; to whatever the dialog titlebar says. And also change the &#8220;c::&#8221; part to the same key that brings up the dialog.</p>
<p>#IfWinActive, Curves<br />
{<br />
   c::<br />
   {<br />
      Send, {ENTER}<br />
      Sleep, 100<br />
      return<br />
   }<br />
}</p>
<p>What&#8217;s going on here then? Since the curves dialog is now on top of photoshop, it no longer has the focus, so the watch that brings up curves won&#8217;t trigger, because these are all inside &#8220;#ifWinActive ahk_class Photoshop&#8221; sections that only triggers when photoshop has the front focus. So now the &#8220;#IfWinActive, Curves&#8221; section will trigger instead; see that you pressed C, and send ENTER instead which will close the curves dialog window.</p>
<p><strong>Holding down a mouse button while pressing keys</strong></p>
<p>Special shortcuts in programs like photoshop or corel painter allows you to hold down a key combination and click and drag to rotate the canvas or resize your brushes. </p>
<p>Let&#8217;s see how we can emulate this and even make it better:</p>
<p>#ifWinActive ahk_class Photoshop<br />
{<br />
<strong>s</strong>::<br />
{<br />
send {alt down}<br />
mouseclick, right,,, 1, 0, d<br />
Loop<br />
{<br />
sleep, 10<br />
GetKeyState, state, <strong>s</strong>, p<br />
if state = u<br />
break<br />
}<br />
mouseclick, right,,, 1, 0, U<br />
send {alt up}<br />
return<br />
}<br />
}</p>
<p>This script presses the ALT key while holding down the right mouse button so all you need to do is press the shortcut key (S) and move the mouse, no need to click and drag.</p>
<p>To change the shortcut that is watched, simply change the key (S in this example) and also change the S in the line that says &#8220;GetKeyState, state, <strong>s</strong>, p &#8221;</p>
<p>You can add other modifiers, for example press control+alt, just change the 2 <em>Send</em> lines or chage the right mouse key to the left mouse key as in the example below that presses control+alt while holding down the right mousebutton:</p>
<p>#ifWinActive ahk_class Photoshop<br />
{<br />
<strong>w</strong>::<br />
{<br />
send {alt down}+{Control down}<br />
mouseclick, left,,, 1, 0, d<br />
Loop<br />
{<br />
sleep, 10<br />
GetKeyState, state, <strong>w</strong>, p<br />
if state = u<br />
break<br />
}<br />
mouseclick, left,,, 1, 0, U<br />
send {Control up}+{alt up}<br />
return<br />
}<br />
}</p>
<p><em>See also: <a href="http://internet-retards.com/wpmu/photoshop/photoshop-and-autohotkey-the-perfect-pair/">Photoshop and AutoHotKey the Perfect Pair</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/changing-photoshop-hardcoded-shortcut-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better freehand drawing of straight lines, ellipsis and circles with wacom tablet</title>
		<link>http://internet-retards.com/wpmu/photoshop/better-freehand-drawing-of-straight-lines-elipses-and-circles-with-wacom-tablet/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/better-freehand-drawing-of-straight-lines-elipses-and-circles-with-wacom-tablet/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 16:58:57 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Drawing]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=419</guid>
		<description><![CDATA[I can draw straight lines and ellipsis quite well on paper. When I got my wacom tablet I practiced a lot but could never get straight lines and good ellipsis using the wacom tablet. Until one day a light-bulb went of&#8230; That plastic surface on the tablet that you rest your palm on is not [...]]]></description>
			<content:encoded><![CDATA[<p>I can draw straight lines and ellipsis quite well on paper. When I got my wacom tablet I practiced a lot but could never get straight lines and good ellipsis using the wacom tablet.</p>
<p>Until one day a light-bulb went of&#8230; That plastic surface on the tablet that you rest your palm on is not paper. Paper is nice and slippery and absorbs the moisture from your hands. When your hands get just a little bit sweaty the plastic surface on the tablet will cause increased and random friction and that is what messes up your nice precise lines ellipsis and circles so they look all wrinkly and horrible.</p>
<p>Go out and buy a stack of those thin cotton gloves for ladies, silk is even better if you can afford them. Cut of the fingers and never mind looking like MJ hehe. You can try out the difference right now by getting a piece of paper and resting your palm on it, then slide around on the tablet surface. It will be quite easy to feel the difference.</p>
<p>Now your palm will slide with no friction on the tablet plastic and you can draw straight lines WAY better. For me it was like night and day so try it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/better-freehand-drawing-of-straight-lines-elipses-and-circles-with-wacom-tablet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a perspective grid in photoshop</title>
		<link>http://internet-retards.com/wpmu/photoshop/creating-a-perspective-grid-in-photoshop/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/creating-a-perspective-grid-in-photoshop/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 09:02:32 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=412</guid>
		<description><![CDATA[If you want to draw in perspective in photoshop you need to draw perspective grid lines to establish your view. You can draw your own lines sure, but what if you want to tweak the view after you&#8217;r done drawing all those lines? Then you have to start all over.. what a drag! Let&#8217;s make [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to draw in perspective in photoshop you need to draw perspective grid lines to establish your view. You can draw your own lines sure, but what if you want to tweak the view after you&#8217;r done drawing all those lines? Then you have to start all over.. what a drag!<span id="more-412"></span></p>
<p>Let&#8217;s make that process a little bit easier until the day photoshop gets some proper perspective tools built in (No, vanishing point isn&#8217;t an option.)</p>
<p>First create a new document. Depending on what format you work in the dimensions will vary for you but let&#8217;s start out with 100&#215;100 pixels, background should be set to white.</p>
<p>Now go to stroke and select black for the stroke color.</p>
<p>Now we got a white square stroked with black at the edges. Hit control+a to select all and then go to Edit/Define Pattern and OK after giving your pattern a name, go with &#8220;100&#215;100 grid&#8221; or something like that so it&#8217;s easy to locate if you create other sizes for larger or smaller documents.</p>
<p>Now create a new layer and hit D to reset your colors. Select the paint bucket tool and set the options drop down that by default will say &#8220;Foreground&#8221; and set it to pattern. Select the pattern you just create and click on the layer.</p>
<p>Voila, there&#8217;s a grid. It&#8217;s not in perspective yet though. Hit control+t and select distort by context clicking inside the transformation rectangle, yes&#8230; distort, perspective won&#8217;t work.</p>
<p>Now drag the corners handles and watch as your flat grid becomes a perspective grid. You can drag the corners around or the middle handles and model the grid into any perspective you need.</p>
<p>Here&#8217;s an example:</p>
<p><a href="http://internet-retards.com/wpmu/photoshop/creating-a-perspective-grid-in-photoshop/perspective-grid/" rel="attachment wp-att-414"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/08/perspective-grid.jpg" alt="perspective-grid" width="838" height="366" class="alignnone size-full wp-image-414" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/creating-a-perspective-grid-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stroke Path with dynamic brush strokes</title>
		<link>http://internet-retards.com/wpmu/photoshop/stroke-path-with-dynamic-brush-strokes/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/stroke-path-with-dynamic-brush-strokes/#comments</comments>
		<pubDate>Mon, 27 Jul 2009 07:54:57 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=392</guid>
		<description><![CDATA[In Photoshop you can create a path with the pen tool and then go to the paths palette and select Stroke Path to hit the path with whatever tool is selected. By default this just strokes the path with a shitty little 1 pixel harsh pen. To enable dynamic brush strokes, click on the stroke [...]]]></description>
			<content:encoded><![CDATA[<p>In Photoshop you can create a path with the pen tool and then go to the paths palette and select Stroke Path to hit the path with whatever tool is selected.</p>
<p>By default this just strokes the path with a shitty little 1 pixel harsh pen.<span id="more-392"></span></p>
<p>To enable dynamic brush strokes, click on the stroke path icon while holding down the ALT key. This allows you to select the tool to stroke the path with, but more importantly &#8211; allows you to put a checkmark in the <em>Simulate Pressure</em> checkbox.</p>
<p>Now when you stroke the path the brush settings such as the bush tip shape and other brush dynamics will be simulated according to the direction of the path and your path will now be painted with dynamic brush stokes.</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/stroke-path-with-dynamic-brush-strokes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Control photoshop with mouse gestures</title>
		<link>http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:17:16 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=233</guid>
		<description><![CDATA[When I show people something in photoshop, the thing they are most amazed by is not whatever technique I show them. It&#8217;s that I don&#8217;t use a keyboard to control photoshop, I use my wacom pen to issue mouse gestures almost exclusively, only touching the keyboard for the most obscure and rarely used commands. Peaked [...]]]></description>
			<content:encoded><![CDATA[<p>When I show people something in photoshop, the thing they are most amazed by is not whatever technique I show them. It&#8217;s that I don&#8217;t use a keyboard to control photoshop, I use my wacom pen to issue mouse gestures almost exclusively, only touching the keyboard for the most obscure and rarely used commands.</p>
<p>Peaked your interest? Think about your hands never leaving the photo to press shortcuts, never going to menus or toolbars, mouse gestures control everything.</p>
<p>Want to try it?<span id="more-233"></span></p>
<p>First you need the free program called <a href="http://www.tcbmi.com/strokeit/">StrokeIt</a></p>
<p><a href="http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/strokeit-1/" rel="attachment wp-att-235"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/07/strokeit-1.jpg" alt="strokeit-1" width="489" height="443" class="alignnone size-full wp-image-235" /></a></p>
<p>After you install StrokeIt you need to define the application:</p>
<p><a href="http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/strokeit-2/" rel="attachment wp-att-238"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/07/strokeit-2.jpg" alt="strokeit-2" width="490" height="443" class="alignnone size-full wp-image-238" /></a></p>
<p>Then you add an action:</p>
<p><a href="http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/strokeit-3/" rel="attachment wp-att-239"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/07/strokeit-3.jpg" alt="strokeit-3" width="490" height="443" class="alignnone size-full wp-image-239" /></a></p>
<p>And finally the command:</p>
<p><a href="http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/strokeit-4/" rel="attachment wp-att-240"><img src="http://internet-retards.com/wpmu/photoshop/files/2009/07/strokeit-4.jpg" alt="strokeit-4" width="490" height="443" class="alignnone size-full wp-image-240" /></a></p>
<p>The way I do it is that I define the actions to be the letter of the shortcut for toolbar things, like B for brush, O for dodge and burn, P for the pen and so on.</p>
<p>I also use up/left, down/left, Down/left, Down/right, Up, Down for brush sizing, undo/redo. Finally I have things like Curves, calculations, screen modes (F) and toggle pallettes (TAB) on whatever feels right.</p>
<p>I recommend starting out with a few commands and slowly working your way up until you have everything you use in your workflow on mouse gestures.</p>
<p>It took me about a month to become totally proficient without misfires, some gestures are harder but now I never get misfires at all and it&#8217;s total bliss to be able to control photoshop completely with mouse gestures.</p>
<p>Notice that I use a pen for this, don&#8217;t try this with the mouse because it&#8217;s not precise enough and you will get constant misfires. I started out trying to use a mouse and got the impression that mouse gestures was never going to work. Then I switched to a wacom intuous3 pen and it was like night and day.</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/control-photoshop-with-mouse-gestures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photoshop Shortcuts you MUST learn</title>
		<link>http://internet-retards.com/wpmu/photoshop/photoshop-shortcuts-you-must-learn/</link>
		<comments>http://internet-retards.com/wpmu/photoshop/photoshop-shortcuts-you-must-learn/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 09:50:35 +0000</pubDate>
		<dc:creator>Ken</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://internet-retards.com/wpmu/photoshop/?p=196</guid>
		<description><![CDATA[I love shortcuts, you could say I was fanatical about them. The only thing I use my Mouse/pen for in Photoshop for is editing, everything else is keyboard shortcuts and I know them all like the back of my hand. Not everyone likes to use shortcuts, in fact some hate them, tis ok, everyone&#8217;s different. [...]]]></description>
			<content:encoded><![CDATA[<p>I love shortcuts, you could say I was fanatical about them. The only thing I use my Mouse/pen for in Photoshop for is editing, everything else is keyboard shortcuts and I know them all like the back of my hand.</p>
<p>Not everyone likes to use shortcuts, in fact some hate them, tis ok, everyone&#8217;s different.</p>
<p>But there&#8217;s a few shortcuts that are just flat out <em>stupid</em> not to learn.<span id="more-196"></span></p>
<p>Brush resizing. How can you stand constantly moving your cursor to bring up a pop up, then drag a goddamn slider, just to size your brush?</p>
<p>Hit the left and right bracket keys and voila. Same for brush hardness, just throw in shift+left/right bracket to change the brush hardness.</p>
<p>Just these 2 shortcuts will save you so much time it&#8217;s not even funny.</p>
<p>Change brush opacity. Couldn&#8217;t be easier, hit the keys on your numerical keyboard. Hit 1 to set the opacity to 10, hit 0, then 5 quickly to set the opacity to 05, hit 0 to reset opacity back to 100%</p>
<p>Again this saves endless amount of time.</p>
<p>Hold down ALT while clicking add new layer and up comes the dialog to name the layer and other options. Why would you want to add the layer, then doubleclick on it just to rename it? Waste of time.</p>
<p>Hold down control while adding a new layer to add the layer below the current layer, why add it first, THEN drag it down?</p>
<p>Want to add a mask that reveals all? Hold down ALT and click add new layer mask.</p>
<p>Want to add a new layer that contains all the current visible layers? Hit control+alt+shift+e</p>
<p>Want to check your r, g, and b channels? Hit control+1/2/3, hit tilde to go back to the RGB composite view, that&#8217;s called channel walking btw. If you have alpha channels you can even get to them just by using control and numbers from 4-9. Hey, while we are at it.. want to select the pixels in the channel you just selected with control+number? Just hold down alt+control+number, no more need to even use the channels palette most of the time.</p>
<p>Want to draw a straight line with any brush tool? Click once, hold down shift, then click at the endpoint of the line you want to draw, voila, straight line.</p>
<p>Hit F 2 times, now your canvas is not constrained to the current window, hold down spacebar and drag it anywhere. Hit F a couple times more to get back to normal view.</p>
<p>Ok, lets get out of &#8220;I just got photoshop&#8221; territory and into some real goodies&#8230;</p>
<p>I work in full screen mode allmost all the time and it&#8217;s a pain to hit TAB to get your palletes back just to work with layers so here&#8217;s a few that will help you out if you work like that.</p>
<p>ALT+Left/Right brackets will select next/previous layers.<br />
Control+Left/Right brackets will move the currently selected layer.<br />
Control+Shift+Left/Right bracket will throw the currently selected layer to the top or the bottom of all layers.</p>
<p>Some selection magic..</p>
<p>Make a selection don&#8217;t let of of the mouse, now hold down spacebar and you can move the selection, release space while keeping the mouse button down and you can continue to resize.</p>
<p>Make a selection, now hold down shift and draw another selection intersecting the previous, let go of the mouse and you add to the selection. Hold down ALT to subtract from the selection instead. </p>
<p>Hold down ALT+Shift and you will intersect from the selection, meaning that everything in the selection that you draw over the existing selection will be intersected, try it out and it becomes much clearer to understand. Remember that when adding, substracting or intersecting a selection you can still press space to move the selection you are currently drawing, so you can hold down control+shift+spacebar or control+alt+spacebar. Practice this because it comes in realy handy once you got it down.</p>
]]></content:encoded>
			<wfw:commentRss>http://internet-retards.com/wpmu/photoshop/photoshop-shortcuts-you-must-learn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

