<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>rarenakal&#039;s blog</title>
	<atom:link href="http://n354.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://n354.wordpress.com</link>
	<description>.::no regret life::.</description>
	<lastBuildDate>Tue, 09 Nov 2010 03:06:33 +0000</lastBuildDate>
	<language>id</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='n354.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/6fac894aed4e5e4c57e33778ebde2412?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>rarenakal&#039;s blog</title>
		<link>http://n354.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://n354.wordpress.com/osd.xml" title="rarenakal&#039;s blog" />
	<atom:link rel='hub' href='http://n354.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Centralized Authentication for Hotspot user</title>
		<link>http://n354.wordpress.com/2010/09/24/centralized-authentication-for-hotspot-user/</link>
		<comments>http://n354.wordpress.com/2010/09/24/centralized-authentication-for-hotspot-user/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 09:46:15 +0000</pubDate>
		<dc:creator>wayan nesa</dc:creator>
				<category><![CDATA[Computer & Networking]]></category>

		<guid isPermaLink="false">http://n354.wordpress.com/?p=410</guid>
		<description><![CDATA[Generally we are using external Radius servers for user authentication as MikroTik is not Radius server. But here in this example we use the MikroTik User Manager which works as a Radius server and does authentication and control of your Hotspot users. Requirements Central location: MikroTik OS with User Manager (suggested License is L6). Hotspot: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=410&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Generally we are using external Radius servers for user  authentication as MikroTik is not Radius server. But here in this  example we use the MikroTik User Manager which works as a Radius server  and does authentication and control of your Hotspot users.</p>
<p><a name="Requirements"></a></p>
<h4>Requirements</h4>
<p><strong>Central location:</strong> MikroTik OS with User Manager (<a title="http://www.mikrotik.com/pricelist.php?sect=1#product10" rel="nofollow" href="http://www.mikrotik.com/pricelist.php?sect=1#product10">suggested License is L6</a>).</p>
<p><strong>Hotspot:</strong> Mikrotik Routerboard with at least a L4 License</p>
<p><strong>Network</strong> 192.168.1.0/24</p>
<p><a title="Image:usermanager.jpg" href="http://wiki.mikrotik.com/wiki/File:Usermanager.jpg"><img src="http://wiki.mikrotik.com/images/f/f3/Usermanager.jpg" border="0" alt="Image:usermanager.jpg" width="475" height="352" /></a></p>
<pre><span id="more-410"></span>R1-Hotspot Master
WAN IP- &lt;Connected to Internet&gt;
LAN IP – 192.168.1.1/24

R2-Hotspot IT Dept
WAN IP – 192.168.1.2/24
LAN IP – 10.10.10.1/24

R3-Hotspot Account Dept.
WAN IP – 192.168.1.3/24
LAN IP – 20.20.20.1/24

R4- Hotspot Purchase Dept
WAN IP – 192.168.1.4/24
LAN IP – 30.30.30.1/24

R5- Hotspot Sales Dept.
WAN IP – 192.168.1.5/24
LAN IP – 40.40.40.1/24</pre>
<p>We assume that all the setup is ready and the hotspot is configured on R2, R3, R4, and R5 with local authentication.</p>
<p>First, we will configure R2, R3, R4 &amp; R5 to use MikroTik user manager as a Radius server.</p>
<pre>/ip hotspot profile
use-radius=yes

/radius add
service=hotspot address=192.168.1.1 secret=123456

This configuration will apply to all the Hotspot router.</pre>
<p>Now, we will configure R1-Hotspot Master.</p>
<pre>/tool user-manager customer add
subscriber=mikrotik login="mikrotik" password="ashish" time-zone=+05:30
permissions=owner parent=mikrotik

/tool user-manager router add
subscriber=mikrotik name="R2" ip-address=192.168.1.2 
shared-secret="123456"

subscriber=mikrotik name="R3" ip-address=192.168.1.3 
shared-secret="123456"

subscriber=mikrotik name="R4" ip-address=192.168.1.4 
shared-secret="123456"

subscriber=mikrotik name="R5" ip-address=192.168.1.5 
shared-secret="123456"</pre>
<p>and finally add the user on R1</p>
<pre>/tool user-manager user add
username=ashish password=ashishpatel subscriber=mikrotik</pre>
<p>The user name and password will work for all the remote hotspot  router…a user can login from any department of the company with same ID  and password and we can have all the user data centrally.</p>
<p>Now you can log into the User Manager web interface on the address <a title="http://192.168.1.1/userman" rel="nofollow" href="http://192.168.1.1/userman">http://192.168.1.1/userman</a> and start setting up your user accounts.</p>
<p>(ref:http://wiki.mikrotik.com)</p>
<br />Filed under: <a href='http://n354.wordpress.com/category/computer-networking/'>Computer &amp; Networking</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n354.wordpress.com/410/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n354.wordpress.com/410/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n354.wordpress.com/410/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=410&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://n354.wordpress.com/2010/09/24/centralized-authentication-for-hotspot-user/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-8.771751 115.177789</georss:point>
		<geo:lat>-8.771751</geo:lat>
		<geo:long>115.177789</geo:long>
		<media:content url="http://1.gravatar.com/avatar/1f1ef5bf099cfd972b76a1bfd3d94334?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">n354</media:title>
		</media:content>

		<media:content url="http://wiki.mikrotik.com/images/f/f3/Usermanager.jpg" medium="image">
			<media:title type="html">Image:usermanager.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Photoshop Tutorials: Colorful Light Burst Text</title>
		<link>http://n354.wordpress.com/2010/09/14/photoshop-tutorials-colorful-light-burst-text/</link>
		<comments>http://n354.wordpress.com/2010/09/14/photoshop-tutorials-colorful-light-burst-text/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 06:05:40 +0000</pubDate>
		<dc:creator>wayan nesa</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://n354.wordpress.com/?p=395</guid>
		<description><![CDATA[In this Adobe Photoshop tutorial, we&#8217;re going to see how to engulf text in an explosion of light and color. There&#8217;s quite a few steps involved in this text effect, and we&#8217;ll be using a couple of filters that are not used very often in everyday Photoshop work, but creating the text effect is quite [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=395&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this <strong>Adobe Photoshop tutorial</strong>, we&#8217;re going to see how to engulf text in an explosion of light and color.</p>
<p>There&#8217;s quite a few steps involved in this text effect, and we&#8217;ll be using a couple of filters that are not used very often in everyday <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> work, but creating the text effect is quite simple and the end result is definitely worth the effort.</p>
<p>Here&#8217;s the text effect we&#8217;re going for:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/final-result.jpg" alt="Adobe Photoshop Text Effects: The final effect" width="424" height="319" /></p>
<p>Let&#8217;s get started.<span id="more-395"></span></p>
<p><a href="http://www.photoshopessentials.com/ebooks/"><img src="http://www.photoshopessentials.com/images/pdficon_large.gif" alt="" /></a><a href="http://www.photoshopessentials.com/ebooks/">Need A Printable Version Of This Tutorial? Get Unlimited Access To Our Print-Ready PDF eBooks!</a></p>
<h3>Step 1: Open A New Photoshop Document</h3>
<p>Open a new document in Photoshop by going up to the File menu and choosing New&#8230;, or by using the keyboard shortcut, Ctrl+N (Win) / Command+N (<a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/#" target="_blank">Mac<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>). You can choose your own width and height for your document, but if you want to follow along, I chose the 640&#215;480 size from the list of available presets to keep things simple. I&#8217;ve also left my Resolution value set to its default of 72 pixels/inch. Since I&#8217;m creating this text effect for the web, it makes no difference what I set the resolution value to, so the default value is fine:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/new-document.jpg" alt="Photoshop Text Effects: Creating a new document in Photoshop" width="439" height="243" /></p>
<div>Photoshop Tutorials: Create a new document in Photoshop. To follow along, use the &#8220;640&#215;480&#8243; preset size.</div>
<h3>Step 2: Add Your Text</h3>
<p>With your new blank document open, grab the Type tool from the Tools palette or by pressing T on your keyboard. Make sure black is selected as your foreground color. If it isn&#8217;t, just press D on your keyboard to reset it to black. Choose your font in the Options Bar at the top of the screen. Thick, heavy <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/#" target="_blank">fonts<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> work best for this effect. Then, go ahead and enter your text. I&#8217;m going to use &#8220;Impact&#8221;, and I&#8217;ll type the words &#8220;LIGHT BURST&#8221;:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/enter-text.jpg" alt="Photoshop Text Effects: Enter your text" width="472" height="381" /></p>
<div>Photoshop Tutorials: Choose a thick, heavy font, and with black as your foreground color, enter your text.</div>
<h3>Step 3: Resize Your Text With Free Transform</h3>
<p>With your text layer selected in the Layers palette, use the keyboard shortcut Ctrl+T (Win) / Command+T (Mac) to bring up the Free Transform box and handles around your text. Hold down Shift+Alt (Win) / Shift+Option (Mac) and drag out any of the corner handles to make your text larger and fill up more of the document area. Holding Shift constrains the text proportions, and holding Alt/Option resizes the text from the center:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/free-transform.jpg" alt="Adobe Photoshop Text Effects: Resize the text with Free Transform" width="437" height="348" /></p>
<div>Photoshop Tutorials: Resize the text with Photoshop&#8217;s &#8220;Free Transform&#8221; command.</div>
<p>Make sure to still leave plenty of room around the text for our light burst effect. Press <strong>Enter</strong> (Win) / <strong>Return</strong> (Mac) when you&#8217;re done to accept the transformation.</p>
<h3>Step 4: Rasterize Your Text</h3>
<p>We&#8217;re going to be applying several filters to our text, but <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-2.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> doesn&#8217;t allow us to do that without first rasterizing it, which simply means to convert it into pixels. So again with the text layer selected, go up to the <strong>Layer menu</strong> at the top of the screen, choose <strong>Rasterize</strong>, and then choose <strong>Type</strong>. This will convert our text into pixels. It will still look the same in the document window, but in the Layers palette, the Type layer will now be a regular layer:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/rasterize-text.jpg" alt="Photoshop Text Effects: Rasterize the text" /></p>
<div>Photoshop Tutorials: After rasterizing the text, the Type layer in the Layers palette becomes a normal layer.</div>
<h3>Step 5: Add A Selection Around Your Text And Save It</h3>
<p><strong>Ctrl-click</strong> (Win) / <strong>Command-click</strong> (<a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-2.php#" target="_blank">Mac<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>) directly on the thumbnail preview area of the text layer in the Layers palette to quickly load a selection around your text:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/ctrl-click.jpg" alt="Photoshop Text Effects: Ctrl-click (Win) or Command-click (Mac) directly on the tex thumbnail in the Layers palette" /></p>
<div>Photoshop Tutorials: &#8220;Ctrl-click&#8221; (Win) / &#8220;Command-click&#8221; (Mac) directly on the text thumbnail in the Layers palette.</div>
<p>Your text will now have a selection around it:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/text-selected.jpg" alt="Photoshop Text Effects: The text is now selected" width="447" height="356" /></p>
<div>Photoshop Tutorials: The text is now selected.</div>
<p>With the text selected, go up to the <strong>Select menu</strong> at the top of the screen and choose <strong>Save Selection</strong>. When the <strong>Save Selection</strong> dialog box appears, just click <strong>OK</strong>. There&#8217;s no need to name it or make any changes to the options.</p>
<p>Once you&#8217;ve saved your selection, press <strong>Ctrl+D</strong> (Win) / <strong>Command+D</strong> (Mac) to deselect your text.</p>
<p>Switch over to your <strong>Channels palette</strong> for a moment (it&#8217;s grouped in beside the Layers palette) and you&#8217;ll see your selection saved as a new channel named &#8220;Alpha 1&#8243; at the very bottom. We&#8217;ll be coming back here a bit later to load our selection again:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/alpha-1.jpg" alt="Photoshop Text Effects: The selection saved as a new channel in Photoshop's Channels palette" /></p>
<div>Photoshop Tutorials: The selection is now saved as a new channel, &#8220;Alpha 1&#8243;, in Photoshop&#8217;s Channels palette.</div>
<div>
<h3>Step 6: Use &#8220;Fill&#8221; To Fill Your Text Layer With White And Set The Blend Mode To &#8220;Multiply&#8221;</h3>
<p>Switch back to your Layers palette once again, and with the text layer selected, go up to the <strong>Edit menu</strong> at the top of the screen and choose <strong>Fill</strong>, or press <strong>Shift+F5</strong> on your keyboard to quickly bring up Photoshop&#8217;s <strong>Fill</strong> dialog box. When the dialog box appears, set the <strong>Contents</strong> to <strong>White</strong> and change the <strong>Blending Mode</strong> to <strong>Multiply</strong>:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/fill-dialog-box.jpg" alt="Photoshop Text Effects: Photoshop's Fill dialog box" /></p>
<div><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-3.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> Tutorials: Photoshop&#8217;s &#8220;Fill&#8221; dialog box&#8221;.</div>
<p>Click OK when you&#8217;re done. Nothing will seem to have happened in your document window, but if you look at your text layer&#8217;s thumbnail in the Layers palette, you&#8217;ll see that all of the empty space around the text has now been filled with white, while leaving the text black thanks to that &#8220;Multiply&#8221; mode.</p>
<h3>Step 7: Apply The Gaussian Blur Filter To The Text</h3>
<p>Go up to the <strong>Filter menu</strong> at the top of the screen, choose <strong>Blur</strong>, and then choose <strong>Gaussian Blur</strong>. When the Gaussian Blur dialog box appears, enter a <strong>Radius</strong> value of about <strong>4 pixels</strong> and click OK to apply a slight blurring to the text:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/gaussian-blur.jpg" alt="Photoshop Text Effects: Photoshop's Gaussian Blur filter dialog box" /></p>
<div>Photoshop Tutorials: Apply the Gaussian Blur filter to the text.</div>
<p>Here&#8217;s the text after applying Gaussian Blur:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/blurred-text.jpg" alt="Photoshop Text Effects: The text is now slightly blurred" width="417" height="331" /></p>
<div>Photoshop Tutorials: The text is now blurred slightly.</div>
<h3>Step 8: Apply The &#8220;Solarize&#8221; Filter To The Text</h3>
<p>With the text layer still selected, go back up to the <strong>Filter menu</strong> and this time choose <strong>Stylize</strong>, and then choose <strong>Solarize</strong>. This will turn the document black, and your text will appear as a white stroke:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/solarized-text.jpg" alt="Photoshop Text Effects: The text after applying the Solarize filter" width="428" height="340" /></p>
<div>Photoshop Tutorials: The image after applying the Solarize filter.</div>
<h3>Step 9: Lighten The Text With Levels</h3>
<p>The text is looking a little dark, so let&#8217;s lighten it. Use the keyboard shortcut <strong>Ctrl+L</strong> (Win) / <strong>Command+L</strong> (Mac) to bring up Photoshop&#8217;s <strong>Levels</strong> command, and drag the white point slider on the right in towards the left until you reach the right edge of the histogram:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/levels.jpg" alt="Photoshop Text Effects: Photoshop's Levels dialog box" /></p>
<div>Photoshop Tutorials: With the Levels dialog box open, grab the white point slider on the right and drag it to the right edge of the histogram to brighten the text.</div>
<p>Click OK. The text will now appear much brighter:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/text-brighter.jpg" alt="Photoshop Text Effects: The text is now much brighter" width="450" height="358" /></p>
<div>Photoshop Tutorials: The text is now much brighter after applying Levels.</div>
<h3>Step 10: Make A Copy Of The Text Layer</h3>
<p>We need to make a copy of the text layer at this point, so to do that, with the text layer selected, use the keyboard shortcut <strong>Ctrl+J</strong> (Win) / <strong>Command+J</strong> (<a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-3.php#" target="_blank">Mac<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>), which will add a copy of the layer above it in the Layers palette:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/copy-layer.jpg" alt="Photoshop Text Effects: Copy the text layer" /></p>
<div>Photoshop Tutorials: The Layers palette now showing both the text layer and the copy above it.</div>
<p>Make sure the copy of the text layer is selected because all of these next steps are to be done on the copy. We won&#8217;t be touching the original again until near the end.</p>
<h3>Step 11: Apply The &#8220;Polar Coordinates&#8221; Filter To The Text</h3>
<p>Go back up to the <strong>Filter menu</strong>, and this time choose <strong>Distort</strong>, and then <strong>Polar Coordinates</strong>. We&#8217;re going to send our text to the North Pole. Alright, no we&#8217;re not. What we <em>are</em> going to do is make it look very strange. When the Polar Coordinates dialog box appears, select the <strong>Polar To Rectangular</strong> option at the very bottom and then click OK:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/polar-coordinates.jpg" alt="Photoshop Text Effects: Photoshop's Polar Coordinates dialog box" /></p>
<div><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-4.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> Tutorials: Photoshop&#8217;s &#8220;Polar Coordinates&#8221; dialog box.</div>
<p>Your text will now look very strange indeed:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/text-after-polar.jpg" alt="Photoshop Text Effects: The text after applying Polar Coordinates" width="424" height="338" /></p>
<div>Photoshop Tutorials: The text after applying the &#8220;Polar Coordinates&#8221; filter.</div>
<h3>Step 12: Rotate The Canvas 90 Degrees Clockwise</h3>
<p>Go up to the <strong>Image menu</strong> at the top of the screen, select <strong>Rotate Canvas</strong>, and then choose <strong>90° CW</strong> to rotate the canvas 90 degrees clockwise:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/rotate-90.jpg" alt="Photoshop Text Effects: Rotate the canvas 90 degrees clockwise" /></p>
<div>Photoshop Tutorials: Rotate the canvas 90 degrees clockwise.</div>
<h3>Step 13: Invert The Image</h3>
<p>Use the keyboard shortcut <strong>Ctrl+I</strong> (Win) / <strong>Command+I</strong> (<a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-4.php#" target="_blank">Mac<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>) to invert the image, so black becomes white and white becomes black:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/invert-image.jpg" alt="Photoshop Text Effects: Invert the image" /></p>
<div>Photoshop Tutorials: Invert the image with &#8220;Ctrl+I&#8221; (Win) / &#8220;Command+I&#8221; (Mac).</div>
<div>
<h3>Step 14: Apply The &#8220;Wind&#8221; Filter Three Times</h3>
<p>Go back up to the <strong>Filter menu</strong> once again, choose <strong>Stylize</strong>, and then choose <strong>Wind</strong>. When the Wind filter&#8217;s dialog box appears, make sure <strong>Method</strong> is set to <strong>Wind</strong> and <strong>Direction</strong> is set to <strong>From the Right</strong>:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/wind-filter.jpg" alt="Photoshop Text Effects: Photoshop's Wind filter" /></p>
<div>Photoshop Tutorials: Photoshop&#8217;s &#8220;Wind&#8221; filter.</div>
<p>Click OK to apply the Wind filter once. Then press the keyboard shortcut <strong>Ctrl+F</strong> (Win) / <strong>Command+F</strong> (<a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-5.php#" target="_blank">Mac<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a>) twice to apply the same filter two more times.</p>
<h3>Step 15: Invert The Image Again</h3>
<p>Press <strong>Ctrl+I</strong> (Win) / <strong>Command+I</strong> (Mac) to invert the image once again:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/invert-again.jpg" alt="Photoshop Text Effects: Invert the image once again" /></p>
<div><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-5.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> Tutorials: Invert the image once again using &#8220;Ctrl+I&#8221; (Win) / &#8220;Command+I&#8221; (Mac).</div>
<h3>Step 16: Apply The &#8220;Wind&#8221; Filter Three More Times</h3>
<p>With the image inverted, press the keyboard shortcut <strong>Ctrl+F</strong> (Win) / <strong>Command+F</strong> (Mac) three more times to apply the filter to the image three more times:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/three-more-times.jpg" alt="Photoshop Text Effects: Apply the Wind filter three more times" /></p>
<div>Photoshop Tutorials: Apply the &#8220;Wind&#8221; filter to the image three more times.</div>
<h3>Step 17: Brighten The Image Again With Levels</h3>
<p>We need to brighten the image again using Levels, but this time, we&#8217;ll let Photoshop do the work for us by using <strong>Auto Levels</strong>. To do that, press <strong>Shift+Ctrl+L</strong> (Win) / <strong>Shift+Command+L</strong> (Mac) to apply the Auto Levels command to the image, which will brighten it up:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/auto-levels.jpg" alt="Photoshop Text Effects: Apply Auto Levels to the image to brighten it" /></p>
<div>Photoshop Tutorials: Apply the &#8220;Auto Levels&#8221; command to brighten the image.</div>
<h3>Step 18: Rotate The Canvas 90 Degrees Counterclockwise</h3>
<p>Go back up to the <strong>Image menu</strong> at this point, choose <strong>Rotate Canvas</strong> once again, and this time choose <strong>90° CCW</strong> to rotate the canvas back to the way it was originally:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/rotate-90ccw.jpg" alt="Photoshop Text Effects: Rotate the canvas back to the way it was originally" width="400" height="318" /></p>
<div>Photoshop Tutorials: Rotate the canvas 90° CCW.</div>
</div>
<div>
<h3>Step 19: Apply The &#8220;Polar Coordinates&#8221; Filter Again</h3>
<p>Go back up to the <strong>Filter menu</strong> again, choose <strong>Distort</strong>, and then choose <strong>Polar Coordinates</strong>. This time choose the <strong>Rectangular to Polar</strong> option and click OK:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/polar-coordinates-2.jpg" alt="Photoshop Text Effects: Apply the Polar Coordinates filter again" /></p>
<div><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-6.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> Tutorials: Apply &#8220;Polar Coordinates&#8221; again, this time choosing &#8220;Rectangular to Polar&#8221;.</div>
<p>Your image should now look something like this:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/image-after-pc2.jpg" alt="Photoshop Text Effects: The image after applying the Polar Coordinates filter a second time" width="443" height="353" /></p>
<div>Photoshop Tutorials: The image after applying the &#8220;Polar Coordinates&#8221; filter a second time.</div>
<h3>Step 20: Set The Layer Blend Mode To &#8220;Screen&#8221;</h3>
<p>Go up to the blend mode options in the top left of the Layers palette and change the blend mode of the text copy layer from &#8220;Normal&#8221; to <strong>Screen</strong> by clicking on the down-pointing arrow and selecting &#8220;Screen&#8221; from the list:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/change-to-screen.jpg" alt="Photoshop Text Effects: Changing the blend mode to Screen" /></p>
<div>Photoshop Tutorials: Change the blend mode of the text copy layer to Screen.</div>
<p>This reveals the original text layer beneath it:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/screen.jpg" alt="Photoshop Text Effects: The original text layer is now visible" width="433" height="344" /></p>
<div>Photoshop Tutorials: The original text layer is now visible as well.</div>
<div>
<h3>Step 21: Apply A Gradient Fill Layer To Add Color</h3>
<p>Click on the <strong>New Fill Or Adjustment Layer</strong> icon at the bottom of the Layers palette:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/new-fill-layer-icon.jpg" alt="Photoshop Text Effects: Click the New Fill Or Adjustment Layer icon" /></p>
<div><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/page-7.php#" target="_blank">Photoshop<img src="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" alt="" /></a> Tutorials: Click the &#8220;New Fill Or Adjustment Layer icon.</div>
<p>And select &#8220;Gradient&#8221; from the list:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/select-gradient.jpg" alt="Photoshop Text Effects: Select the Gradient fill layer option" /></p>
<div>Photoshop Tutorials: Select a Gradient fill layer.</div>
<p>When the <strong>Gradient Fill</strong> dialog box pops up, click inside the gradient preview area at the top:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/gradient-fill.jpg" alt="Photoshop Text Effects: Click inside the gradient preview area" /></p>
<div>Photoshop Tutorials: Click inside the gradient preview area.</div>
<p>This will bring up the <strong>Gradient Editor</strong> dialog box. Click on the gradient swatch in the top left, the <strong>black to white</strong> gradient first, and this will make sure that both colors on either side of the gradient have their opacity set to 100%:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/choosing-colors.jpg" alt="Photoshop Text Effects: Select the black to white gradient in the top left" /></p>
<div>Photoshop Tutorials: Select the black to white gradient swatch in the top left to make sure both colors are set to 100% opacity first.</div>
<p>Then set your gradient colors to whatever you like. I&#8217;ve set the color on the left to a reddish-orange, and the color on the right to a yellowish-orange:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/choosing-colors2.jpg" alt="Photoshop Text Effects: Set your gradient colors." /></p>
<div>Photoshop Tutorials: Set your gradient colors.</div>
<p>Exit out of the gradient dialog boxes once you&#8217;ve chosen your colors.</p>
<h3>Step 22: Change The Blend Mode Of The Gradient Fill Layer To &#8220;Color&#8221;</h3>
<p>With the Gradient fill layer selected, go back to the blend mode options in the top left of the Layers palette and change the layer&#8217;s blend mode to <strong>Color</strong>:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/change-to-color.jpg" alt="Photoshop Text Effects: Change the blend mode to Color" /></p>
<div>Photoshop Tutorials: Change the blend mode of the Gradient fill layer to &#8220;Color&#8221;.</div>
<p>The image is now colorized with the colors from the gradient:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/colorized.jpg" alt="Photoshop Text Effects: The image is now colorized" width="441" height="350" /></p>
<div>Photoshop Tutorials: The gradient colors are now applied to the image.</div>
<div>
<h3>Step 23: Apply A Radial Blur To The Original Text Layer</h3>
<p>We&#8217;re done with the text copy layer at this point. We&#8217;re going to finish off the last few steps by working on the original text layer, so click on it in the Layers palette to select it. Then go up to the <strong>Filter menu</strong>, choose <strong>Blur</strong>, and then choose <strong>Radial Blur</strong>:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/radial-blur-dialog-box.jpg" alt="Photoshop Text Effects: Photoshop's Radial Blur dialog box" /></p>
<div>Photoshop Tutorials: Photoshop&#8217;s &#8220;Radial Blur&#8221; dialog box.</div>
<p>Set the <strong>Amount</strong> to about <strong>65 pixels</strong>, the <strong>Blur Method</strong> to <strong>Zoom</strong>, and the <strong>Quality</strong> to <strong>Best</strong>, as circled above, and then click OK to apply the filter to the original text:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/radial-blur.jpg" alt="Photoshop Text Effects: The Radial Blur applied to the image" width="418" height="333" /></p>
<div>Photoshop Tutorials: The Radial Blur applied to the image.</div>
<h3>Step 24: Load The Saved Text Selection</h3>
<p>Only a couple of things left to do. First, switch over to your <strong>Channels palette</strong> again like we did earlier. We&#8217;re going to reload that selection we saved. To do that, simply <strong>right-click</strong> (Win) / <strong>Control-click</strong> (Mac) anywhere on the <strong>Alpha 1</strong> channel at the very bottom, which will load the selection back into the document window:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/channels-2.jpg" alt="Photoshop Text Effects: Load the saved selection" /></p>
<div>Photoshop Tutorials: Right-click (Win) / Control-click (Mac) anywhere on the &#8220;Alpha 1&#8243; channel to load the saved text selection.</div>
<p>Switch back to the Layers palette when you&#8217;re done. The selection is now loaded in the image:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/selection-loaded.jpg" alt="Photoshop Text Effects: The selected=" width="441" height="351" /></p>
<div>Photoshop Tutorials: The selection now loaded into the image.</div>
<p>One thing left to do&#8230;</p>
<h3>Step 25: Fill The Selection With Black</h3>
<p>With the original text layer selected in the Layers palette and black still as your foreground color, press <strong>Alt+Backspace</strong> (Win) / <strong>Option-Delete</strong> (Mac) to fill the selection with black and finish the effect.</p>
<p>Press <strong>Ctrl+D</strong> (Win) / <strong>Command+D</strong> (Mac) to remove the selection, and you&#8217;re done!</p>
<p>After all that, here&#8217;s the final &#8220;light burst&#8221; text effect:</p>
<p><img src="http://www.photoshopessentials.com/images/type/effects/light-burst/final-result.jpg" alt="Photoshop Text Effects: The final effect" width="420" height="316" /></p>
<div>Photoshop Tutorials: The final &#8220;Light Burst&#8221; effect.</div>
<p>And there we have it!</p>
<p>(ref: http://www.photoshopessentials.com)</p>
</div>
</div>
</div>
</div>
<br />Filed under: <a href='http://n354.wordpress.com/category/belajar-ilmu-grafis/photoshop/'>Photoshop</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n354.wordpress.com/395/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n354.wordpress.com/395/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n354.wordpress.com/395/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=395&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://n354.wordpress.com/2010/09/14/photoshop-tutorials-colorful-light-burst-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1f1ef5bf099cfd972b76a1bfd3d94334?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">n354</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/final-result.jpg" medium="image">
			<media:title type="html">Adobe Photoshop Text Effects: The final effect</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/pdficon_large.gif" medium="image" />

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/new-document.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Creating a new document in Photoshop</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/enter-text.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Enter your text</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/free-transform.jpg" medium="image">
			<media:title type="html">Adobe Photoshop Text Effects: Resize the text with Free Transform</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/rasterize-text.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Rasterize the text</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/ctrl-click.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Ctrl-click (Win) or Command-click (Mac) directly on the tex thumbnail in the Layers palette</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/text-selected.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The text is now selected</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/alpha-1.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The selection saved as a new channel in Photoshop&#039;s Channels palette</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/fill-dialog-box.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Fill dialog box</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/gaussian-blur.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Gaussian Blur filter dialog box</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/blurred-text.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The text is now slightly blurred</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/solarized-text.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The text after applying the Solarize filter</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/levels.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Levels dialog box</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/text-brighter.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The text is now much brighter</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/copy-layer.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Copy the text layer</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/polar-coordinates.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Polar Coordinates dialog box</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/text-after-polar.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The text after applying Polar Coordinates</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/rotate-90.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Rotate the canvas 90 degrees clockwise</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/invert-image.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Invert the image</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/wind-filter.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Wind filter</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/invert-again.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Invert the image once again</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/three-more-times.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Apply the Wind filter three more times</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/auto-levels.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Apply Auto Levels to the image to brighten it</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/rotate-90ccw.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Rotate the canvas back to the way it was originally</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/polar-coordinates-2.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Apply the Polar Coordinates filter again</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/image-after-pc2.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The image after applying the Polar Coordinates filter a second time</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/change-to-screen.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Changing the blend mode to Screen</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/screen.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The original text layer is now visible</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/new-fill-layer-icon.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Click the New Fill Or Adjustment Layer icon</media:title>
		</media:content>

		<media:content url="http://images.intellitxt.com/ast/adTypes/mag-glass_10x10.gif" medium="image" />

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/select-gradient.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Select the Gradient fill layer option</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/gradient-fill.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Click inside the gradient preview area</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/choosing-colors.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Select the black to white gradient in the top left</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/choosing-colors2.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Set your gradient colors.</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/change-to-color.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Change the blend mode to Color</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/colorized.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The image is now colorized</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/radial-blur-dialog-box.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Photoshop&#039;s Radial Blur dialog box</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/radial-blur.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The Radial Blur applied to the image</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/channels-2.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: Load the saved selection</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/selection-loaded.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The selected=</media:title>
		</media:content>

		<media:content url="http://www.photoshopessentials.com/images/type/effects/light-burst/final-result.jpg" medium="image">
			<media:title type="html">Photoshop Text Effects: The final effect</media:title>
		</media:content>
	</item>
		<item>
		<title>Daftar Plat Nomor Kendaraan Di Indonesia</title>
		<link>http://n354.wordpress.com/2010/09/13/daftar-plat-nomor-kendaraan-di-indonesia/</link>
		<comments>http://n354.wordpress.com/2010/09/13/daftar-plat-nomor-kendaraan-di-indonesia/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 09:04:22 +0000</pubDate>
		<dc:creator>wayan nesa</dc:creator>
				<category><![CDATA[Sekitar Kita >>]]></category>

		<guid isPermaLink="false">http://n354.wordpress.com/?p=389</guid>
		<description><![CDATA[Daftar Plat Nomor Kendaraan Di Indonesia: Tanda Kendaraan Bermotor A Untuk Daerah/Wilayah Banten Tanda Kendaraan Bermotor B Untuk Daerah/Wilayah DKI Jakarta Tanda Kendaraan Bermotor D Untuk Daerah/Wilayah Bandung Tanda Kendaraan Bermotor E Untuk Daerah/Wilayah Cirebon Tanda Kendaraan Bermotor F Untuk Daerah/Wilayah Bogor Tanda Kendaraan Bermotor G Untuk Daerah/Wilayah Pekalongan Tanda Kendaraan Bermotor H Untuk Daerah/Wilayah [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=389&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<div>
<h2 id="post-599"><a href="http://n354.files.wordpress.com/2010/09/plat-nomor.jpg"></a></h2>
<p style="text-align:center;"><img class="alignnone size-thumbnail wp-image-390" title="plat-nomor" src="http://n354.files.wordpress.com/2010/09/plat-nomor.jpg?w=309&#038;h=150" alt="" width="309" height="150" /></p>
<h2><a title="Permanent Link to Daftar Plat Nomor Kendaraan Di Indonesia" rel="bookmark" href="http://syadiashare.com/tanda-plat-nomor-kendaraan-indonesia.html">Daftar Plat Nomor Kendaraan Di Indonesia: </a></h2>
</div>
<p><!-- pright #end --></p>
</div>
<p><!--post_top #end -->Tanda Kendaraan Bermotor A Untuk Daerah/Wilayah Banten<br />
Tanda Kendaraan Bermotor B Untuk Daerah/Wilayah DKI Jakarta<span id="more-389"></span><br />
Tanda Kendaraan Bermotor D Untuk Daerah/Wilayah Bandung<br />
Tanda Kendaraan Bermotor E Untuk Daerah/Wilayah Cirebon<br />
Tanda Kendaraan Bermotor F Untuk Daerah/Wilayah Bogor<br />
Tanda Kendaraan Bermotor G Untuk Daerah/Wilayah Pekalongan<br />
Tanda Kendaraan Bermotor H Untuk Daerah/Wilayah Semarang<br />
Tanda Kendaraan Bermotor K Untuk Daerah/Wilayah Pati<br />
Tanda Kendaraan Bermotor L Untuk Daerah/Wilayah Surabaya<br />
Tanda Kendaraan Bermotor M Untuk Daerah/Wilayah Madura<br />
Tanda Kendaraan Bermotor N Untuk Daerah/Wilayah Malang<br />
Tanda Kendaraan Bermotor P Untuk Daerah/Wilayah Besuki<br />
Tanda Kendaraan Bermotor R Untuk Daerah/Wilayah Banyumas<br />
Tanda Kendaraan Bermotor S Untuk Daerah/Wilayah Bojonegoro .<br />
Tanda Kendaraan Bermotor T Untuk Daerah/Wilayah Kerawang<br />
Tanda Kendaraan Bermotor AA Untuk Daerah/Wilayah Kedu<br />
Tanda Kendaraan Bermotor AB Untuk Daerah/Wilayah DI Yogyakarta<br />
Tanda Kendaraan Bermotor AD Untuk Daerah/Wilayah Surakarta<br />
Tanda Kendaraan Bermotor AE Untuk Daerah/Wilayah Madiun<br />
Tanda Kendaraan Bermotor AG Untuk Daerah/Wilayah Kediri<br />
Tanda Kendaraan Bermotor BA Untuk Daerah/Wilayah Sumatra Barat<br />
Tanda Kendaraan Bermotor BB Untuk Daerah/Wilayah Sumatra Utara<br />
Tanda Kendaraan Bermotor BD Untuk Daerah/Wilayah Bengkulu<br />
Tanda Kendaraan Bermotor BE Untuk Daerah/Wilayah Lampung<br />
Tanda Kendaraan Bermotor BG Untuk Daerah/Wilayah Sumatra Selatan<br />
Tanda Kendaraan Bermotor BH Untuk Daerah/Wilayah Jambi<br />
Tanda Kendaraan Bermotor BK Untuk Daerah/Wilayah Sumatra Timur<br />
Tanda Kendaraan Bermotor BL Untuk Daerah/Wilayah DI Aceh<br />
Tanda Kendaraan Bermotor BM Untuk Daerah/Wilayah Riau<br />
Tanda Kendaraan Bermotor BN Untuk Daerah/Wilayah Bangka<br />
Tanda Kendaraan Bermotor CC Untuk Daerah/Wilayah Korps Konsul<br />
Tanda Kendaraan Bermotor CD Untuk Daerah/Wilayah Korps Diplomatik<br />
Tanda Kendaraan Bermotor DA Untuk Daerah/Wilayah Kalimantan Selatan<br />
Tanda Kendaraan Bermotor DB Untuk Daerah/Wilayah Minahasa<br />
Tanda Kendaraan Bermotor DD Untuk Daerah/Wilayah Sulawesi Selatan<br />
Tanda Kendaraan Bermotor DE Untuk Daerah/Wilayah Maluku Selatan<br />
Tanda Kendaraan Bermotor DG Untuk Daerah/Wilayah Maluku Utara<br />
Tanda Kendaraan Bermotor DH Untuk Daerah/Wilayah Maluku Timur<br />
Tanda Kendaraan Bermotor DK Untuk Daerah/Wilayah Bali<br />
Tanda Kendaraan Bermotor DL Untuk Daerah/Wilayah Sangihe/Talaud<br />
Tanda Kendaraan Bermotor DM Untuk Daerah/Wilayah Sulawesi Utara<br />
Tanda Kendaraan Bermotor DN Untuk Daerah/Wilayah Sulawesi Tengah<br />
Tanda Kendaraan Bermotor DR Untuk Daerah/Wilayah Lombok<br />
Tanda Kendaraan Bermotor DS Untuk Daerah/Wilayah Papua<br />
Tanda Kendaraan Bermotor EA Untuk Daerah/Wilayah Sumbawa<br />
Tanda Kendaraan Bermotor EB Untuk Daerah/Wilayah Flores<br />
Tanda Kendaraan Bermotor ED Untuk Daerah/Wilayah Sumba<br />
Tanda Kendaraan Bermotor KB Untuk Daerah/Wilayah Kalimantan Barat<br />
Tanda Kendaraan Bermotor KT Untuk Daerah/Wilayah Kalimantan Timur<br />
Tanda Kendaraan Bermotor W Untuk Daerah/Wilayah Sidoarjo (Jatim)<br />
Tanda Kendaraan Bermotor Z Untuk Daerah/Wilayah Sumedang (Jabar)</p>
<p>Tanda Kendaraan Bermotor KH Untuk Daerah/Wilayah KALTENG</p>
<p>&#8230;.klu ada yang kurang ato salah mohon dikomen ya&#8230;.trims&#8230;</p>
<p>(ref : http://syadiashare.com)</p>
<br />Filed under: <a href='http://n354.wordpress.com/category/sekitar-kita/'>Sekitar Kita &gt;&gt;</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/n354.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/n354.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/n354.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=n354.wordpress.com&amp;blog=5398524&amp;post=389&amp;subd=n354&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://n354.wordpress.com/2010/09/13/daftar-plat-nomor-kendaraan-di-indonesia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1f1ef5bf099cfd972b76a1bfd3d94334?s=96&#38;d=wavatar" medium="image">
			<media:title type="html">n354</media:title>
		</media:content>

		<media:content url="http://n354.files.wordpress.com/2010/09/plat-nomor.jpg?w=127" medium="image">
			<media:title type="html">plat-nomor</media:title>
		</media:content>
	</item>
	</channel>
</rss>
