<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technowledge &#187; Web Design</title>
	<atom:link href="http://blog.emobilez.com/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.emobilez.com</link>
	<description>All about mobiles, ubuntu, wordpress, graphics, tech tips &#38; tricks</description>
	<lastBuildDate>Wed, 10 Feb 2010 14:19:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Export PNG From Flash Using ActionScript 3 PNG Exporter Class</title>
		<link>http://blog.emobilez.com/2009/09/04/easiest-way-to-export-png-from-flash-with-actionscript/</link>
		<comments>http://blog.emobilez.com/2009/09/04/easiest-way-to-export-png-from-flash-with-actionscript/#comments</comments>
		<pubDate>Fri, 04 Sep 2009 06:52:02 +0000</pubDate>
		<dc:creator>Fahad Junaid</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[action script]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[PNG]]></category>

		<guid isPermaLink="false">http://blog.emobilez.com/?p=588</guid>
		<description><![CDATA[Author: Muhammad bin Yusrat
Description: Makes an easy to export PNG Images from with in Flash. You can take a snapshot of any MovieClip and get the class to export it to PHP which then saves it.

Functions:
snapObject(target:MovieClip,cropArea:Rectangle = null)
This function accepts two arguments. One the target MovieClip that needs to be snapped. Second is an optional [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><strong>Author</strong>: <a href="http://www.muhammadbinyusrat.com" target="_blank">Muhammad bin Yusrat</a></p>
<p><strong>Description</strong>: Makes an easy to export PNG Images from with in Flash. You can take a snapshot of any MovieClip and get the class to export it to PHP which then saves it.</p>
<p><span id="more-588"></span></p>
<p><strong>Functions:</strong></p>
<p><strong><em>snapObject(target:MovieClip,cropArea:Rectangle = null)</em></strong><br />
This function accepts two arguments. One the target MovieClip that needs to be snapped. Second is an optional Rectangle (flash.geom.Rectangle) which, if passed, will crop the image to that rectangle.<br />
<em><strong>SendToPage(URLToPage:String,onComplete:Function = null)</strong></em><br />
Once the movieclip has been snapped you can simply call this function and give it the URL to the PHP Page (included in the files) and it will send the image to it. A option &#8220;onComplete&#8221; function can also be passed which will be called once the image is saved.</p>
<p><strong>Sample Code</strong>:</p>
<blockquote><p><span style="color: #0099cc;">import</span> com.muhammadbinyusrat.PNGExport;<br />
<span style="color: #0099cc;">var</span> SnapObject:PNGExport = <span style="color: #0099cc;">new</span> PNGExport();<span style="color: #999999;">//instanciate the class</span><br />
SnapObject.snapObject(testClip); <span style="color: #999999;">/*Takes a snapshot of the provided MovieClip, if you want it to be cropped before sending, you can specify a second argument as Rectangle*/</span><br />
SnapObject.SendToPage(&#8220;<span style="color: #00cc33;">http://localhost/class/GetImage.php</span>&#8220;,test);<br />
<span style="color: #999999;">/*Once snaped, it can be sent to any page. The second argument is the function that can be called once the processing complete. Second argument is optional. */</span><br />
<span style="color: #0099cc;">function</span> test(e:<span style="color: #0099cc;">Event</span>):<span style="color: #0099cc;">void</span>{<br />
trace(&#8220;PHP&#8217;s Response:&#8221; + <span style="color: #0099cc;">e.target.data</span>);<br />
}</p></blockquote>
<p>Download:<br />
<a href="http://blog.emobilez.com/wp-content/uploads/2009/09/pngexport.zip">PNGExport.zip</a></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.emobilez.com/2009/09/04/easiest-way-to-export-png-from-flash-with-actionscript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to turn on Word Wrap in Aptana Studio</title>
		<link>http://blog.emobilez.com/2009/02/16/how-to-turn-on-word-wrap-in-aptana-studio/</link>
		<comments>http://blog.emobilez.com/2009/02/16/how-to-turn-on-word-wrap-in-aptana-studio/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 16:09:23 +0000</pubDate>
		<dc:creator>Sajid Iqbal</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[IDE]]></category>

		<guid isPermaLink="false">http://blog.emobilez.com/?p=495</guid>
		<description><![CDATA[I am using Aptana studio since a reader recommended me in one of my earlier post. I found Aptana Studio an excellent tool for designing my web pages. Initially, I was quite surprised when I saw no word wrap in the editor area. Browsing through different menus I couldn&#8217;t find how to turn on word [...]


Related posts:<ol><li><a href='http://blog.emobilez.com/2010/01/14/iphone-problems-and-their-solutions/' rel='bookmark' title='Permanent Link: iPhone Problems And Their Solutions'>iPhone Problems And Their Solutions</a> <small>Below is the list of most common iPhone Problems and...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I am using <a href="http://www.aptana.com">Aptana studio</a> since a reader <a href="http://blog.emobilez.com/2008/12/19/the-perfect-web-designing-enviroment-for-ubuntu/#comment-5">recommended</a> me in one of my <a href="http://blog.emobilez.com/2008/12/19/the-perfect-web-designing-enviroment-for-ubuntu/">earlier post</a>. I found Aptana Studio an excellent tool for designing my web pages. Initially, I was quite surprised when I saw no word wrap in the editor area. Browsing through different menus I couldn&#8217;t find how to turn on word wrapping. Here is a cluttered view of my code editor before word wrapping was not unable:<br />
<img class="alignnone" src="http://blog.emobilez.com/wp-content/uploads/2009/02/wrap_off.png" alt="" /><span id="more-495"></span></p>
<p>Searching through Aptana forums I come to know how to turn on word wrapping. It wasn&#8217;t that hard.</p>
<ul>
<li>Go to Windows &gt; Preferences.</li>
<li>Click Editor in left side pane and then click Advanced tab.</li>
<li>Check the Enable word wrap (requires editor restart) and click apply.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://blog.emobilez.com/wp-content/uploads/2009/02/aptana_word_wrap.png" alt="" /></p>
</ul>
<p>Though it suggest that editor need to be restarted but it would apply without restarting anything.</p>
<p style="text-align: center;">Now check this screenshot with word wrap enabled:<br />
<img class="aligncenter" src="http://blog.emobilez.com/wp-content/uploads/2009/02/wrap_on.png" alt="" /></p>


<p>Related posts:<ol><li><a href='http://blog.emobilez.com/2010/01/14/iphone-problems-and-their-solutions/' rel='bookmark' title='Permanent Link: iPhone Problems And Their Solutions'>iPhone Problems And Their Solutions</a> <small>Below is the list of most common iPhone Problems and...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.emobilez.com/2009/02/16/how-to-turn-on-word-wrap-in-aptana-studio/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>The perfect web designing environment for ubuntu</title>
		<link>http://blog.emobilez.com/2008/12/19/the-perfect-web-designing-enviroment-for-ubuntu/</link>
		<comments>http://blog.emobilez.com/2008/12/19/the-perfect-web-designing-enviroment-for-ubuntu/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 14:33:51 +0000</pubDate>
		<dc:creator>Sajid Iqbal</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Notepad]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Xampp]]></category>

		<guid isPermaLink="false">http://blog.emobilez.com/?p=41</guid>
		<description><![CDATA[Its been a while I am using Ubuntu &#38; I must say that I&#8217;m lovin it. Currently I am using Ubuntu 8.10. I work as a part time web designer in my free time.  After shifting from Windows to Linux i.e Ubuntu, the biggest hurdle for me was how to shift my web designing environment [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Its been a while I am using Ubuntu &amp; I must say that <em>I&#8217;m lovin it</em>. Currently I am using Ubuntu 8.10. I work as a part time web designer in my free time.  After shifting from Windows to Linux i.e Ubuntu, the biggest hurdle for me was how to shift my web designing environment to my new OS. Fortunately it wasn&#8217;t that hard to mimic my favourite environment in Ubuntu thanks mainly to Wine(<em>No, I don&#8217;t drink</em> <img src='http://blog.emobilez.com/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' />  ).<br />
For designing my site layout I prefer to use Adobe Photoshop. Fortunately wine supports Photoshop versions till CS2, not bad if you have to only design websites layout in it. If one is interested in some serious graphics work than off-course CS3 or CS4(the latest the better) are suitable for his work. Back to the topic, my design part is performed smoothly in Photoshop running under wine.</p>
<div id="attachment_49" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.emobilez.com/wp-content/uploads/2008/12/notepad-wine.png"><img class="size-medium wp-image-49" title="notepad-wine" src="http://blog.emobilez.com/wp-content/uploads/2008/12/notepad-wine-300x225.png" alt="Notepad++ running under wine on a Ubuntu machine" width="300" height="225" /></a><p class="wp-caption-text">Notepad++ running under wine on a Ubuntu machine</p></div>
<p>Than comes coding my sites. For a web designer(<em>and small scale developer</em>) coding means static html(or xhtml) sites with touch of CSS &amp; nothing more. There are linux solutions for WYSIWYG editors like Frontpage or Dreamweaver but I like to code by hand. Since different template systems are in now-a-days, coding by hand is more accurate way to accomplish the task. So, for coding I prefer Notepad++ which has some really cool features for <em>handy</em> coders. Though some features do not work under wine but important features like syntax highlighting for different kind of programming languages &amp; tabs support are there to help. BTW I wonder why such a popular open source application is not yet ported to Linux?</p>
<div id="attachment_50" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.emobilez.com/wp-content/uploads/2008/12/xammp-control-ubuntu.png"><img class="size-medium wp-image-50" title="xammp-control-ubuntu" src="http://blog.emobilez.com/wp-content/uploads/2008/12/xammp-control-ubuntu-300x225.png" alt="XAMMP webserver on a Ubuntu machine" width="300" height="225" /></a><p class="wp-caption-text">XAMMP webserver on a Ubuntu machine</p></div>
<p>Now-a-days ready to be customize open source content management systems &amp; blogging applications are quite popular. Almost all such applications have a template system which you can theme as per your need without any knowledge of web development technologies. All you need is to download, install &amp; run these applications on a locally to modify the themes(<em>or templates sometime</em>) for your clients. This is where you have to setup some web server where you can deploy these applications for testing, modifying &amp; making them client ready. I prefer to use lightweight XAMPP webserver for this part. Though Apache &amp; mySQL can be installed easily from Ubuntu repositories but i prefer XAMMP as this is a one stop solution for your web server need. It has apache, mysql, filezilla &amp; PhpMyAdmin buil in to cater all your web server needs.</p>
<p>This completes my personal small web designing enviroment. How about yours? Comments &amp; suggestions are always welcome.</p>
<p><span style="color: #800000;">Update: Please vote for your favourite editor here:</span></p>
Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.emobilez.com/2008/12/19/the-perfect-web-designing-enviroment-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
