<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>emalik's blog</title>
	<atom:link href="http://emalik.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://emalik.wordpress.com</link>
	<description>sharing some of my personal work</description>
	<lastBuildDate>Tue, 18 Aug 2009 11:03:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='emalik.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8c6621189a5fd2f411dec373569444e4?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>emalik's blog</title>
		<link>http://emalik.wordpress.com</link>
	</image>
			<item>
		<title>Integration of Flash with Web Service of C#</title>
		<link>http://emalik.wordpress.com/2009/08/18/integration-of-flash-with-web-service-of-c/</link>
		<comments>http://emalik.wordpress.com/2009/08/18/integration-of-flash-with-web-service-of-c/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 11:03:24 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Action Script 2.0]]></category>
		<category><![CDATA[Adobe Flash]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Web Services]]></category>
		<category><![CDATA[Action Script]]></category>
		<category><![CDATA[Data Integration]]></category>
		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=171</guid>
		<description><![CDATA[In this article I&#8217;m going to show how to consume a Web service and some of the pros and cons of it. When you&#8217;re done reading you should have an understanding of what data binding is, how to use it in your applications, and how to achieve similar results without using it.
Unfortunately for some, Flash [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=171&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In this article I&#8217;m going to show how to consume a Web service and some of the pros and cons of it. When you&#8217;re done reading you should have an understanding of what data binding is, how to use it in your applications, and how to achieve similar results without using it.</p>
<p>Unfortunately for some, Flash Professional is required to follow along with the examples. If you haven&#8217;t upgraded Flash to the Professional version yet, taking advantage of the Web service integration and data binding might just be a good enough reason to.</p>
<p><strong><span style="text-decoration:underline;">What Are Web Services?</span></strong><span style="text-decoration:underline;"><br />
</span>A Web service is, more or less, a remote procedure call wrapped in an<strong> XML</strong> package and typically transmitted over <strong>HTTP</strong>. You make a request to the URL of the Web service, passing in any appropriate parameters, and are greeted with an XML packet containing the result of the function call. The standard XML format for Web service messages is SOAP &#8211; Simple Object Access Protocol.</p>
<p>Web services can be inspected by requesting the WSDL &#8211; Web Services Description Language &#8211; of the service. The WSDL explains how to interact with the service, what methods are available, what their parameters are, etc. The WSDL format isn&#8217;t the easiest to read. Thankfully, Flash will help us out with WSDL interpretation, which we&#8217;ll see a little later.</p>
<p><strong><span style="text-decoration:underline;">What Is Data Binding?</span></strong><span style="text-decoration:underline;"><br />
</span>Now that we have an idea what Web services are, data binding is next on the explanation hit-list. Data binding is&#8230; well, magic. Through data binding you can &#8220;glue&#8221; two separate pieces of a program together. Whenever one piece changes the other piece will automatically notice that change and update itself without any coding necessary. As an added bonus, data binding can be a one- or two-way street.</p>
<p>Data binding is remarkably simple to use and can be done without writing a single line of code. Because of this, it&#8217;s a blessing and a curse at the same time. It eliminates the need for you to program what could be complex interactions, but the &#8220;magical&#8221; aspects of data binding can make it a maintenance nightmare.</p>
<p>In the coming examples, I&#8217;ll show you how to use it, how to avoid using it, and finally make some recommendations for when data binding is appropriate.</p>
<p><strong><span style="text-decoration:underline;">How to bind a Web Service with Flash?</span></strong></p>
<p>1-  First make a simple web service that fetch data from data base like Sql Server 2005 and return data in objects like:-</p>
<blockquote><p>pro[i] = new ProDetail();<br />
pro[i].Pro_name = row[0].ToString();<br />
pro[i].Pro_type = row[1].ToString();<br />
pro[i].Pro_color = row[2].ToString();<br />
pro[i].Price = row[3].ToString();<br />
pro[i].Description = row[4].ToString();</p></blockquote>
<p><img class="alignnone size-medium wp-image-414" title="image1" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image1-300x256.jpg" alt="image1" width="300" height="256" /></p>
<p>2- Then open Flash Professional 8, and goto <span style="color:#ff0000;">Window</span> and select<span style="color:#ff0000;"> Components</span><br />
3- then click on <span style="color:#ff0000;">User interface</span> and drop <span style="color:#ff0000;">Text Area</span> onto the stage.</p>
<p><img class="alignnone size-medium wp-image-415" title="image2" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image2-300x201.jpg" alt="image2" width="300" height="201" /></p>
<p>4- Give <span style="color:#ff0000;">Instance Name</span> to the <span style="color:#ff0000;">Text Area</span> in <span style="color:#ff0000;">Properties panel.<br />
<span style="color:#000000;">5- </span></span>Now go to <span style="color:#ff0000;">Window</span> and click on <span style="color:#ff0000;">Other Panels </span>and select <span style="color:#ff0000;">Web Services</span></p>
<p><span style="color:#ff0000;"><br />
<span style="color:#000000;"><img class="alignnone size-medium wp-image-416" title="image3" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image3-300x212.jpg" alt="image3" width="300" height="212" /></span></span></p>
<p><span style="color:#ff0000;"><span style="color:#000000;">6-</span></span><span style="color:#000000;"> </span>Now click on Glob and give the WSDL address of web service which would be like this.</p>
<blockquote><p><a href="http://localhost/makensell/Service.asmx?WSDL">http://localhost/abc/Service.asmx?WSDL</a></p></blockquote>
<p><img class="alignnone size-medium wp-image-417" title="image4" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image4-300x197.jpg" alt="image4" width="300" height="197" /></p>
<p><img class="alignnone size-medium wp-image-418" title="image5" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image5-300x163.jpg" alt="image5" width="300" height="163" /></p>
<p>7- After giving WSDL address of web service to Glob, Flash will have all the methods, your web service have.</p>
<p><img class="alignnone size-medium wp-image-419" title="image6" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image6-300x194.jpg" alt="image6" width="300" height="194" /></p>
<p>8- the method you want to use just Right click on it and select <span style="color:#ff0000;">Add Method Call</span> (An instance of the Web Service Connector component would be added to the stage) as shown in fig:-</p>
<p><img class="alignnone size-medium wp-image-420" title="image7" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image7-300x208.jpg" alt="image7" width="300" height="208" /></p>
<p><img class="alignnone size-medium wp-image-421" title="image8" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image8-300x231.jpg" alt="image8" width="300" height="231" /></p>
<p><img class="alignnone size-medium wp-image-422" title="image9" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image9-300x202.jpg" alt="image9" width="300" height="202" /></p>
<p>9- Name the <span style="color:#ff0000;">Web Service Connector component</span> from the &#8220;Properties” panel.</p>
<p><strong><span style="text-decoration:underline;">Bind Web Service Result to the UI Component</span><span style="text-decoration:underline;">:</span></strong></p>
<p>10- In order to display the results returned from the web service, you need to bind the   result to  the Text Area component you placed on the stage. Go to<span style="color:#ff0000;"> Window</span> &gt; <span style="color:#ff0000;">Development Panels</span> &gt; <span style="color:#ff0000;">Component Inspector</span>. Select the <span style="color:#ff0000;">Text </span><span style="color:#ff0000;">Area</span> component on the stage  and go to <span style="color:#ff0000;">the &#8220;Bindings&#8221; tab</span> on the &#8220;Component Inspector&#8221; window. Click the<span style="color:#ff0000;"> &#8220;+&#8221; </span> Add  Binding button. Select &#8220;text : String&#8221; from the list and click the OK  button.</p>
<p>11- Now click on<span style="color:#ff0000;"> Bound To</span> in the Component Inspector, a window will open. Click on Web service Connector and at left side<span style="color:#ff0000;"> (Schema Location)</span> select the object you want to bind with Text Area component and click OK.</p>
<p>12- And set Direction <span style="color:#ff0000;">“In”</span>.</p>
<p>13- Now bind the Web Service connector and set its Direction <span style="color:#ff0000;">“out” </span>and click on<span style="color:#ff0000;"> Bound To</span> bind with Text Area in the<span style="color:#ff0000;"> Component Path</span>.</p>
<p><img class="alignnone size-medium wp-image-423" title="image10" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image10-300x190.jpg" alt="image10" width="300" height="190" /></p>
<p>14- Now create another layer and name it “Action’.</p>
<p>15- Now type the following action:-</p>
<blockquote><p>green.trigger();</p></blockquote>
<p>16- Now play your movie and see that what ever in your database, flash displays…</p>
<p><img class="alignnone size-medium wp-image-413" title="image11" src="http://www.pkpixels.com/wp-content/uploads/2009/08/image11-300x226.jpg" alt="image11" width="300" height="226" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=171&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2009/08/18/integration-of-flash-with-web-service-of-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image1-300x256.jpg" medium="image">
			<media:title type="html">image1</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image2-300x201.jpg" medium="image">
			<media:title type="html">image2</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image3-300x212.jpg" medium="image">
			<media:title type="html">image3</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image4-300x197.jpg" medium="image">
			<media:title type="html">image4</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image5-300x163.jpg" medium="image">
			<media:title type="html">image5</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image6-300x194.jpg" medium="image">
			<media:title type="html">image6</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image7-300x208.jpg" medium="image">
			<media:title type="html">image7</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image8-300x231.jpg" medium="image">
			<media:title type="html">image8</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image9-300x202.jpg" medium="image">
			<media:title type="html">image9</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image10-300x190.jpg" medium="image">
			<media:title type="html">image10</media:title>
		</media:content>

		<media:content url="http://www.pkpixels.com/wp-content/uploads/2009/08/image11-300x226.jpg" medium="image">
			<media:title type="html">image11</media:title>
		</media:content>
	</item>
		<item>
		<title>my blog transfered to domain&#8230;.</title>
		<link>http://emalik.wordpress.com/2008/10/14/my-blog-transfered-to-domain/</link>
		<comments>http://emalik.wordpress.com/2008/10/14/my-blog-transfered-to-domain/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 08:34:30 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=160</guid>
		<description><![CDATA[Hello to everybody, my blog is transfered to new domain www.pkpixels.com, so all latest posts are there please visit
PKpixels.com

Thanks
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=160&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello to everybody, my blog is transfered to new domain www.pkpixels.com, so all latest posts are there please visit<br />
<a title="PKpixels.com" href="http://www.pkpixels.com" target="_blank">PKpixels.com<br />
</a></p>
<p>Thanks</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/160/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/160/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/160/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=160&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/10/14/my-blog-transfered-to-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>
	</item>
		<item>
		<title>3DS Max hangs on loading mentalray.dlz- Solution for this problem</title>
		<link>http://emalik.wordpress.com/2008/05/14/3ds-max-hangs-on-loading-mentalraydlz-solution-for-this-problem/</link>
		<comments>http://emalik.wordpress.com/2008/05/14/3ds-max-hangs-on-loading-mentalraydlz-solution-for-this-problem/#comments</comments>
		<pubDate>Wed, 14 May 2008 06:18:41 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[3ds Max]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=158</guid>
		<description><![CDATA[Problem
3DS max hangs,closes with or without giving any error when loading the plugin mentalray.dlz
Why it Happens.. ?
It happens because some firewall or spyware remover installed on your system block TCP port 7000 that is required by the mental ray to perform some system checks.
Solution 
Disable any firewall or spyware remover permanently means it should not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=158&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>Problem</strong></p>
<p>3DS max hangs,closes with or without giving any error when loading the plugin mentalray.dlz</p>
<p><strong>Why it Happens.. ?</strong></p>
<p>It happens because some firewall or spyware remover installed on your system block TCP port 7000 that is required by the mental ray to perform some system checks.</p>
<p><strong>Solution </strong></p>
<p>Disable any firewall or spyware remover permanently means it should not automatically start on system restart, you may have to change some setting in that software when you are done restart your system, then run 3DS max again&#8230; does it work&#8230;.. sometime it works but not all the time like in my case.</p>
<p>Why it happens like that i really dont know may be some other software blocked the port ..so i did some research on that and then i installed a demo version of port explorer on my pc from</p>
<p>http://www.diamondcs.com.au/portexplorer</p>
<p>When i installed it and restarted my system, checked for port 7000 in the software it was open. So i run the 3DS max and  woooooooo it fixed my problem.</p>
<p>I really dont know if it would work or not after the demo version expires but hope it does until i enable firewall again.</p>
<p>I hope this solves your problem but if not then i really cant do anything you must contact Autodesk abt this specific issue.</p>
<p>I think (I believe it really only needs port 7000, and Max needs a few) should allow MR to use the internal ports to do control checking on the system. But what to do when no firewall is installed in the system and mental ray hangs like in my system. May be some other software like spyware remover close some ports. In such a case I installed the demo version of Port Explorer (http://www.diamondcs.com.au/portexplorer) in my system and without doing anything in the software my max loading with mental ray infact after the demo expires. Looks strange but works.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/158/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/158/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=158&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/05/14/3ds-max-hangs-on-loading-mentalraydlz-solution-for-this-problem/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating a Dotted line in Photoshop.</title>
		<link>http://emalik.wordpress.com/2008/03/06/creating-a-dotted-line-in-photoshop/</link>
		<comments>http://emalik.wordpress.com/2008/03/06/creating-a-dotted-line-in-photoshop/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 07:40:32 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Adobe Photoshop]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=155</guid>
		<description><![CDATA[Photoshop makes the CG Artists Life easier, but not all the time&#8230;. Sometime a simple task like making a dotted line in photoshop is not that much simpler as it should be.  But that does not mean its that much difficult, its easier just follow the tutorial.
Open the Photoshop document where you want to place [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=155&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Photoshop makes the CG Artists Life easier, but not all the time&#8230;. Sometime a simple task like making a dotted line in photoshop is not that much simpler as it should be.  But that does not mean its that much difficult, its easier just follow the tutorial.</p>
<p>Open the Photoshop document where you want to place the dotted line</p>
<p>Select the Brush tool, shortcut is &#8216;B&#8217;</p>
<p>Open the Brushes Palette( Window &#8211;&gt; Brushes, or F5)</p>
<p>Click the Brush Presets and select the Brush with some hard edges. You can select the Square brushes or Rounded on the bases of your need.</p>
<p><a href="http://emalik.files.wordpress.com/2008/03/1.jpg" title="1.jpg"><img src="http://emalik.files.wordpress.com/2008/03/1.jpg" alt="1.jpg" /></a></p>
<p>After you selected the brush type Click the &#8220;Brush tip shape&#8221;, Now here you can can see spacing slider, Slide it a value greater than 100%, in example i set it to 200%. You can also set the diameter and hardness of the brush here. You can see the Preview of the brush at the bottom</p>
<p><a href="http://emalik.files.wordpress.com/2008/03/2.jpg" title="2.jpg"><img src="http://emalik.files.wordpress.com/2008/03/2.jpg" alt="2.jpg" /></a></p>
<p>Now go to your document again and select the color of the line and then hold down the shift button and Click and drag to draw the dotted line. ( by holding down shift you can draw Straight lines)</p>
<p>If its not giving a desired look, Do it again and this time play with spacing, Hardness, Diameter and the shape of the brush to make a desired look..</p>
<p>There are also many other options available here under the Brushes palette..Do explore them.</p>
<p>Have a good day&#8230; <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=155&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/03/06/creating-a-dotted-line-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/03/1.jpg" medium="image">
			<media:title type="html">1.jpg</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/03/2.jpg" medium="image">
			<media:title type="html">2.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>A solution to solve blured edges problem in Photoshop.</title>
		<link>http://emalik.wordpress.com/2008/02/19/a-solution-to-solve-blured-edges-problem-in-photoshop/</link>
		<comments>http://emalik.wordpress.com/2008/02/19/a-solution-to-solve-blured-edges-problem-in-photoshop/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 14:02:19 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Adobe Photoshop]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=154</guid>
		<description><![CDATA[This is not a complete tutorial, but its just a small tip witch is extremely useful in designing process.
As most of you know photoshop is not a Vector Graphics tool, so sometime we get some weired problem like a draw a rectangle shape and its edges are not sharp as they should be.  Or you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=154&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is not a complete tutorial, but its just a small tip witch is extremely useful in designing process.</p>
<p>As most of you know photoshop is not a Vector Graphics tool, so sometime we get some weired problem like a draw a rectangle shape and its edges are not sharp as they should be.  Or you draw a shape and its got blurred edges.</p>
<p>The solution is that just do not use the shapes where they are not necessary..for example if you want to draw a rectangle as background <b>dont use shape rather use the </b><b>Marquee Tool and the fill it with the color on new layer.</b></p>
<p>Another solution is that if shapes really makes your work easier do Rasterize them in your design. A common problem could be that if made a shape by using pen toll and given a stroke to it. Some edges get distorted &#8230;.That could be solved by Just Hold down the <b>Ctrl</b> Key and <b>Click the shape layer</b>. The outer border of the shape should get selected. Now Make a <b>new layer</b> and go to <b>Select&#8212;&gt; Modify &#8212;&gt; Contrac</b>t, and do a contract it 1px. and now fill the design with the color you want.</p>
<p>In this way the shape edges are sharp rather to use it as the Vector mask.</p>
<p>Well i hope that suggestion is useful.</p>
<p>Thanks</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/154/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/154/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/154/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/154/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/154/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=154&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/02/19/a-solution-to-solve-blured-edges-problem-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>
	</item>
		<item>
		<title>CMYK to pantone color conversion in Photoshop</title>
		<link>http://emalik.wordpress.com/2008/02/07/cmyk-to-pantone-color-conversion-in-photoshop/</link>
		<comments>http://emalik.wordpress.com/2008/02/07/cmyk-to-pantone-color-conversion-in-photoshop/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 06:31:23 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Adobe Photoshop]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/?p=144</guid>
		<description><![CDATA[hi visitors some days i come across a project in which my client ask me to convert their logo in Pantone colors. So i thought why not to add a tutorial on how to do that in photoshop.
1- First open your image, if its in psd format then you should flat it.
2- Convert it to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=144&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>hi visitors some days i come across a project in which my client ask me to convert their logo in Pantone colors. So i thought why not to add a tutorial on how to do that in photoshop.</p>
<p>1- First open your image, if its in psd format then you should flat it.<br />
2- Convert it to CMYK if it is not.<br />
3- Duplicate your image and rename it, in my case its &#8220;design_pantone&#8221;<br />
4- Go to its channel palette, you should see four channels there named as Cyan, Magenta, Yellow and black there.<br />
5- Select Cyan,Magenta and yellow channel and delete them individually.There should only black channel left there.<br />
6- Now Click on the new channel button as shown in the image below , a new channel named as alpha1 should be there.<br />
<a href="http://emalik.files.wordpress.com/2008/01/11.jpg" title="11.jpg"><img src="http://emalik.files.wordpress.com/2008/01/11.jpg" alt="11.jpg" /></a></p>
<p>7- Double Click on it and a channel option dialog box should appear.<br />
8- Select the spot color from the option and Click the color to assign the new color.</p>
<p><a href="http://emalik.files.wordpress.com/2008/01/2.jpg" title="2.jpg"><img src="http://emalik.files.wordpress.com/2008/01/2.jpg" alt="2.jpg" /></a></p>
<p>Now For CMYK, we first select the Global value of Cyan color which is <font color="#000000"><b><tt>#00FFFF</tt></b></font> and then find the nearest pantone match of that color.</p>
<p>9- So enter the value <font color="#000000"><b><tt>#00FFFF </tt></b>in the dialog box</font><br />
then click the color library button to access the nearest pantone color match, Photoshop will automatically select nearest pantone color.I use the same as photoshop selects but you can change that if you want.Click OK when you  are done.</p>
<p><a href="http://emalik.files.wordpress.com/2008/02/3.jpg" title="3.jpg"><img src="http://emalik.files.wordpress.com/2008/02/3.jpg" alt="3.jpg" /></a></p>
<p>10- Now you should see the pantone color in the name field, click OK again.</p>
<p>There should be a cyan tone over all the picture now.</p>
<p>11- Make sure you selected the current pantone color channel, now go to image menu and then select the apply image.</p>
<p>Apply image dialog box appears.</p>
<p>12- In source drop down select the orignal image in CMYK,  in my case that was design.<br />
In layer there should be background<br />
In Channel field select the Cyan channel.<br />
blending should be set to normal.Opacity  100%<br />
Click OK when you are done!.</p>
<p><a href="http://emalik.files.wordpress.com/2008/02/4.jpg" title="4.jpg"><img src="http://emalik.files.wordpress.com/2008/02/4.jpg" alt="4.jpg" /></a></p>
<p>Now you mapped the Cyan color to pantone, next you would repeat steps from 6-12 for mapping both the Magenta and then the yellow.</p>
<p>The Hex value for magenta is <b>#FF00FF</b> and Yellow is <b>#FFFF00.</b></p>
<p>When you mapped all channels to Pantone&#8230;..You are done!</p>
<p>If you see big difference in the colors double click the channels and change pantone spot colors until you are satisfied from the result.</p>
<p>Save the file as PSD or DCS 2.0(eps)</p>
<p>At the end i want to say that this is just the one way i done my work because it gives you quite a control over the colors so you can adjust them by your self..</p>
<p>Thanks, Have a GOOD DAY !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/144/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/144/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=144&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/02/07/cmyk-to-pantone-color-conversion-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/01/11.jpg" medium="image">
			<media:title type="html">11.jpg</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/01/2.jpg" medium="image">
			<media:title type="html">2.jpg</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/02/3.jpg" medium="image">
			<media:title type="html">3.jpg</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/02/4.jpg" medium="image">
			<media:title type="html">4.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>How to reduce the Polygons of an object in 3ds max easily</title>
		<link>http://emalik.wordpress.com/2008/01/23/how-to-reduce-the-polygons-of-an-object-in-3ds-max-easily/</link>
		<comments>http://emalik.wordpress.com/2008/01/23/how-to-reduce-the-polygons-of-an-object-in-3ds-max-easily/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 11:10:23 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[3D Studio Max]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/2008/01/23/how-to-reduce-the-polygons-of-an-object-in-3ds-max-easily/</guid>
		<description><![CDATA[Sometime when you import some object in 3D studio Max, its becomes slow because of the object you bring in has lot more polygons.
There could be many ways to reduce the polygons but here i am just describing one way in this post&#8230;.For other ways see the upcoming posts.
Select the object and apply the Optimize [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=149&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sometime when you import some object in 3D studio Max, its becomes slow because of the object you bring in has lot more polygons.</p>
<p>There could be many ways to reduce the polygons but here i am just describing one way in this post&#8230;.For other ways see the upcoming posts.</p>
<p>Select the object and apply the Optimize modifier on it&#8230;As you do it you see polygons has been reduced..Note that this method is best for simple shapes, but for complex shapes i really do not recommend this method because it also reduces the details.</p>
<p>By increasing the <b>face threshold</b> value you can reduce more polygons, but your object can get worst. You can see how many polygons you reduced at the bottom of modifier parameter. You can pla with other setting to get the result without loosing the precious details.</p>
<p>Thanks and Have a good day <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/149/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/149/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=149&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/01/23/how-to-reduce-the-polygons-of-an-object-in-3ds-max-easily/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>
	</item>
		<item>
		<title>Target Welding Two Different Objects in 3DS MAX</title>
		<link>http://emalik.wordpress.com/2008/01/22/target-welding-two-different-objects-in-3ds-max/</link>
		<comments>http://emalik.wordpress.com/2008/01/22/target-welding-two-different-objects-in-3ds-max/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 07:23:41 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[3D]]></category>
		<category><![CDATA[3D Studio Max]]></category>
		<category><![CDATA[3ds Max]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/2008/01/22/target-welding-two-different-objects-in-3ds-max/</guid>
		<description><![CDATA[First of all what is target welding Target Welding&#8230;.? It technique through which we can weld two vertex together&#8230;How to use that&#8230;? Simple Go to vertex sub level and select the target weld from there then select the vertex, click and drag to the other vertex  and its done!.
Now A lot of time i [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=147&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>First of all what is target welding Target Welding&#8230;.? It technique through which we can weld two vertex together&#8230;How to use that&#8230;? Simple Go to vertex sub level and select the target weld from there then select the vertex, click and drag to the other vertex  and its done!.</p>
<p>Now A lot of time i use two different objects to make a shape then attach them together to make a single object, but then you need to attach the vertices  together so they look complete.</p>
<p>Here is the point where problem occurs, when you try to connect to objects with different structure object you could not do it. Solution to that problem is shown here in this video.</p>
<p><span style="text-align:center; display: block;"><a href="http://emalik.wordpress.com/2008/01/22/target-welding-two-different-objects-in-3ds-max/"><img src="http://img.youtube.com/vi/asjP8PkMCL8/2.jpg" alt="" /></a></span></p>
<p>Please be free to ask any sort of question &#8230;..</p>
<p>Thanks!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/147/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/147/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=147&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/01/22/target-welding-two-different-objects-in-3ds-max/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/asjP8PkMCL8/2.jpg" medium="image" />
	</item>
		<item>
		<title>Converting a selection to Vector based Shape</title>
		<link>http://emalik.wordpress.com/2008/01/02/converting-a-selection-to-vector-based-shape/</link>
		<comments>http://emalik.wordpress.com/2008/01/02/converting-a-selection-to-vector-based-shape/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 12:49:37 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Adobe Photoshop]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/2008/01/02/converting-a-selection-to-vector-based-shape/</guid>
		<description><![CDATA[Just a tip on how to convert your current selection to a shape that also can be used in future as vector format.
Take the selection with your favorite method.
In my case i use the magic wand tool
After you took the selection go to path palette and press the little arrow on the top right corner, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=145&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Just a tip on how to convert your current selection to a shape that also can be used in future as vector format.</p>
<p>Take the selection with your favorite method.</p>
<p>In my case i use the magic wand tool</p>
<p>After you took the selection go to path palette and press the little arrow on the top right corner, then select the &#8220;<b>make work path</b>&#8220;</p>
<p><a href="http://emalik.files.wordpress.com/2008/01/1.jpg" title="1.jpg"><img src="http://emalik.files.wordpress.com/2008/01/1.jpg" alt="1.jpg" /></a></p>
<p>enter the tolerance value <b>0.5</b>, why..? because we want to maintain the original selection as much as possible&#8230;Note here that the value less than 0.5 is not acceptable.</p>
<p>Now your work path should be created..</p>
<p>Now go to the <b>Edit</b> menu and select <b>&#8220;Define Custom shape&#8221;</b></p>
<p>Enter the <b>name</b> of desired shape and press <b>OK</b></p>
<p>Now this shape is available under the <b>Custom Shapes</b>.</p>
<p>Just use it in the  way you want and enjoy.<br />
<b>  </b></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/145/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/145/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=145&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2008/01/02/converting-a-selection-to-vector-based-shape/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://emalik.files.wordpress.com/2008/01/1.jpg" medium="image">
			<media:title type="html">1.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Sami Yusus- Outlandish</title>
		<link>http://emalik.wordpress.com/2007/09/14/sami-yusus-outlandish/</link>
		<comments>http://emalik.wordpress.com/2007/09/14/sami-yusus-outlandish/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 04:34:51 +0000</pubDate>
		<dc:creator>emalik</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[islamic]]></category>

		<guid isPermaLink="false">http://emalik.wordpress.com/2007/09/14/sami-yusus-outlandish/</guid>
		<description><![CDATA[Hi, Happy Ramazan to all muslims, Here is another post related to my video catagory..Its very beautiful Composition by Sami Yusuf and touches your heart really. The video shows the problem faced by Muslims in this specific era&#8230;You must see it and comment here.

 ::  ::  ::  ::  ::  :: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=141&subd=emalik&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi, Happy Ramazan to all muslims, Here is another post related to my video catagory..Its very beautiful Composition by Sami Yusuf and touches your heart really. The video shows the problem faced by Muslims in this specific era&#8230;You must see it and comment here.</p>
<p><span style="text-align:center; display: block;"><a href="http://emalik.wordpress.com/2007/09/14/sami-yusus-outlandish/"><img src="http://img.youtube.com/vi/BC0rTlKTNY8/2.jpg" alt="" /></a></span></p>
<p align="center"><a href="http://del.icio.us/post?url=addy;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" alt="add" /></a> :: <a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Description=&amp;Url=addy;Title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" alt="Add" /></a> :: <a href="http://www.furl.net/storeIt.jsp?u=addy;t=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" alt="add" /></a> :: <a href="http://digg.com/submit?phase=2&amp;url=addy"><img src="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" alt="Digg" /></a> :: <a href="http://ma.gnolia.com/bookmarklet/add?url=addy;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" alt="add" /></a> :: <a href="http://www.stumbleupon.com/submit?url=addy&amp;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" alt="Stumble" /></a> :: <a href="http://www.simpy.com/simpy/LinkAdd.do?url=addy;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" alt="add" /></a> :: <a href="http://www.newsvine.com/_tools/seed&amp;save?url=addy;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" alt="seed" /></a> :: <a href="http://reddit.com/submit?url=addy;title=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" /></a> :: <a href="http://cgi.fark.com/cgi/fark/edit.pl?new_url=addy;new_comment=nomen"><img src="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" /></a> :: <a href="http://tailrank.com/share/?text=&amp;link_href=addy&amp;title=nomen" title="TailRank"><img src="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" alt="TailRank" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emalik.wordpress.com/141/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emalik.wordpress.com/141/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emalik.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emalik.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emalik.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emalik.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emalik.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emalik.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emalik.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emalik.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emalik.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emalik.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emalik.wordpress.com&blog=857430&post=141&subd=emalik&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emalik.wordpress.com/2007/09/14/sami-yusus-outlandish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ab273d02cdcf6706be8ea11f4de73b9d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emalik</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/BC0rTlKTNY8/2.jpg" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/delicious.gif" medium="image">
			<media:title type="html">add</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/blinklist.gif" medium="image">
			<media:title type="html">Add</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/furl.gif" medium="image">
			<media:title type="html">add</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/digg.gif" medium="image">
			<media:title type="html">Digg</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/magnolia.gif" medium="image">
			<media:title type="html">add</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/stumbleit.gif" medium="image">
			<media:title type="html">Stumble</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/simpy.png" medium="image">
			<media:title type="html">add</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/newsvine.gif" medium="image">
			<media:title type="html">seed</media:title>
		</media:content>

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/reddit.gif" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/fark.png" medium="image" />

		<media:content url="http://sunburntkamel.files.wordpress.com/2006/11/tailrank.gif" medium="image">
			<media:title type="html">TailRank</media:title>
		</media:content>
	</item>
	</channel>
</rss>