<?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>Asheville Web Design Blog - Webhead Service</title>
	<atom:link href="http://www.webheadservice.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webheadservice.com/blog</link>
	<description>Asheville Web Design Freelancer</description>
	<lastBuildDate>Thu, 21 Apr 2011 17:10:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Facebook Landing Pages</title>
		<link>http://www.webheadservice.com/blog/facebook/facebook-landing-pages</link>
		<comments>http://www.webheadservice.com/blog/facebook/facebook-landing-pages#comments</comments>
		<pubDate>Thu, 21 Apr 2011 17:07:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Custom Facebook Pages]]></category>
		<category><![CDATA[Facebook Business Pages]]></category>
		<category><![CDATA[Facebook Fan Pages]]></category>
		<category><![CDATA[Facebook Landing Pages]]></category>
		<category><![CDATA[Facebook Music Pages]]></category>
		<category><![CDATA[FBML & FBJS Landing Pages]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/?p=218</guid>
		<description><![CDATA[The famous app Static FBML seems to no longer be available for custom facebook landing page design, so now I use an app called Profile HTML.  Seems to work just as well.  Hopefully it will continue to.  I really enjoy making Facebook landing pages, and do it well.  There are a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.webheadservice.com/blog/wp-content/uploads/2011/04/face-book.png" alt="face book" title="face book" width="128" height="128" class="alignleft size-full wp-image-220" align="left" />The famous app Static FBML seems to no longer be available for custom facebook landing page design, so now I use an app called Profile HTML.  Seems to work just as well.  Hopefully it will continue to.  I really enjoy making Facebook landing pages, and do it well.  There are a number of tricks to making a good page that I&#8217;ve found by doing some research and experimenting.</p>
<p>Some of the things I&#8217;ve learned how to include using FBML/FBJS:</p>
<p>• Comments shared to users profiles with a link back to the page.<br />
• Content only available/visible after &#8216;Liking&#8217; the page.<br />
• Flash content<br />
• Fun FBJS animations<br />
• Share button</p>
<p>Here are a few facebook landing pages I&#8217;ve designed:<br />
<a href="http://facebook.com/bluelotusmedia">Blue Lotus Media</a><br />
<a href="http://facebook.com/djstorymusic">DJ Story Music</a><br />
<a href="https://www.facebook.com/pages/Seed-of-Sound/136212303118357">Seed of Sound</a><br />
<a href="https://www.facebook.com/pages/Mountain-Air-Wellness-Centers/170514582978719?sk=app_6165549526">Mountain Air Wellness</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2Ffacebook%2Ffacebook-landing-pages&amp;linkname=Facebook%20Landing%20Pages"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/facebook/facebook-landing-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash Variables and Multiple Movieclips AS2</title>
		<link>http://www.webheadservice.com/blog/uncategorized/flash-variables-and-multiple-movieclips-as2</link>
		<comments>http://www.webheadservice.com/blog/uncategorized/flash-variables-and-multiple-movieclips-as2#comments</comments>
		<pubDate>Mon, 13 Sep 2010 02:55:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Accessing Variables in One MC from Another MC]]></category>
		<category><![CDATA[Actionscript 2 Variables Across Multiple Movieclips]]></category>
		<category><![CDATA[Using Trace to Check Variable Paths]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/?p=216</guid>
		<description><![CDATA[Flash variables hold information usually numbers, letters (string), or true/false data (boolean) .  Recently I&#8217;ve been working on a project that uses many vars to pass, store, and retrieve information.  I soon realized that the variables were only accessible with actionscript in the timeline they were created in, unless you give a path [...]]]></description>
			<content:encoded><![CDATA[<p>Flash variables hold information usually numbers, letters (string), or true/false data (boolean) .  Recently I&#8217;ve been working on a project that uses many vars to pass, store, and retrieve information.  I soon realized that the variables were only accessible with actionscript in the timeline they were created in, unless you give a path to the variable in the actionscript.</p>
<p>For example, if you were writing code inside a movieclip on your main timeline, and you wanted to access a variable inside another movieclip on the main timeline, you would write the code something like this:</p>
<p><code>_parent.mcInstanceName.variable  or  _root.mcInstanceName.variable</code></p>
<p>This can get fairly complex quickly when you are using loadMovie or loadMovieNum to place another swf inside a container MC.  That&#8217;s why I find it very useful to use the trace command when testing a path to make sure that the variables are doing what you want.</p>
<p>Here&#8217;s an example of using trace to show a variable&#8217;s value:</p>
<p><code>trace(_root.mcInstanceName.variable);</code></p>
<p>I hope you found this information useful.  Thanks for visiting my blog!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2Funcategorized%2Fflash-variables-and-multiple-movieclips-as2&amp;linkname=Flash%20Variables%20and%20Multiple%20Movieclips%20AS2"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/uncategorized/flash-variables-and-multiple-movieclips-as2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer Web Design Special</title>
		<link>http://www.webheadservice.com/blog/web-design-special/summer-web-design-special</link>
		<comments>http://www.webheadservice.com/blog/web-design-special/summer-web-design-special#comments</comments>
		<pubDate>Mon, 16 Aug 2010 23:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design Special]]></category>
		<category><![CDATA[828 freelance web]]></category>
		<category><![CDATA[828 web designs]]></category>
		<category><![CDATA[asheville web design]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/?p=210</guid>
		<description><![CDATA[I&#8217;ve been busy working on all the media for the Mystic Garden Party festival.  Now that it&#8217;s over, I&#8217;m available to take on a few new projects.  If you have something in mind, contact me to let me know what you&#8217;re looking for.  I will discuss the options and make you an [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been busy working on all the media for the Mystic Garden Party festival.  Now that it&#8217;s over, I&#8217;m available to take on a few new projects.  If you have something in mind, contact me to let me know what you&#8217;re looking for.  I will discuss the options and make you an exceptional deal.  Asheville residents get an additional 25% off my usual prices until 9/1/10.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2Fweb-design-special%2Fsummer-web-design-special&amp;linkname=Summer%20Web%20Design%20Special"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/web-design-special/summer-web-design-special/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.webheadservice.com/blog/9/209</link>
		<comments>http://www.webheadservice.com/blog/9/209#comments</comments>
		<pubDate>Fri, 23 Apr 2010 01:55:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/209</guid>
		<description><![CDATA[Blessed Earth Day!
]]></description>
			<content:encoded><![CDATA[<p>Blessed Earth Day!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2F209&amp;linkname="><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/209/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.webheadservice.com/blog/9/208</link>
		<comments>http://www.webheadservice.com/blog/9/208#comments</comments>
		<pubDate>Thu, 22 Apr 2010 00:26:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/208</guid>
		<description><![CDATA[Check out my new psy trance tune: http://ping.fm/hZ8yo
]]></description>
			<content:encoded><![CDATA[<p>Check out my new psy trance tune: http://ping.fm/hZ8yo</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2F208&amp;linkname="><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/208/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Design &#8211; The Three Most Important Elements</title>
		<link>http://www.webheadservice.com/blog/web-designer/website-design-the-three-most-important-elements</link>
		<comments>http://www.webheadservice.com/blog/web-designer/website-design-the-three-most-important-elements#comments</comments>
		<pubDate>Fri, 02 Apr 2010 19:16:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[good website design]]></category>
		<category><![CDATA[hiring a web designer]]></category>
		<category><![CDATA[web design asheville]]></category>
		<category><![CDATA[web designer]]></category>
		<category><![CDATA[Communicate with the Client]]></category>
		<category><![CDATA[Develop the Website]]></category>
		<category><![CDATA[Developing a Website]]></category>
		<category><![CDATA[The Web Development Process]]></category>
		<category><![CDATA[Web Design Customer Satisfaction]]></category>
		<category><![CDATA[Web Design for Campany Executives]]></category>
		<category><![CDATA[Web Design for Entrepreneurs]]></category>
		<category><![CDATA[Web Design Project]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/?p=204</guid>
		<description><![CDATA[When it comes to website design, there are three very important elements that must influence the process of developing a site which can be viewed on the Internet.
1. Customer Satisfaction.
Although this should be common sense customer satisfaction does not always take a front row seat in the priority department for many agencies. It seems that [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to website design, there are three very important elements that must influence the process of developing a site which can be viewed on the Internet.</p>
<p>1. Customer Satisfaction.</p>
<p>Although this should be common sense customer satisfaction does not always take a front row seat in the priority department for many agencies. It seems that in the era of our fast paced society a lack of customer satisfaction is the status quo. Companies often rush from completing one job to the next and in the process they somehow skip steps, miss promised timelines, or fail to meet agreed upon priorities. Which comes to my next point.</p>
<p>2. Listening to the Customer&#8217;s Needs</p>
<p>The old adage that the customer is always right has been somewhat lost. Clients generally have an idea of what they want to achieve with their websites. Usually, for businesses, it is to bring in new business or increased revenue. What they often do not know; however, is how to accomplish this online in the form of their website. This should not really be a surprise, because often this is not an area of expertise for many entrepreneurs or company executives. This also does not mean that the web development firm hired to complete the website should just run ahead without consulting the client on their needs.</p>
<p>It takes a practiced skill to help the client identify what they want to accomplish online and what the look and feel of the website should be. This initial groundwork will certainly go a long way in understanding the overall goal of the site, and how to best achieve this within best design and development practice.</p>
<p>3. The Ability to Communicate with the Client</p>
<p>This skill of helping the client identify what they want to accomplish online can be best identified as communication. It is the process of exchanging information through various means to accomplish an understanding or shared meaning of ideas. The ability to do this well only comes with skill and practice. A good analogy of this process would be the traveller looking for directions in a foreign place using a different language. The traveller is like the website design firm looking for directions from the local: the client. Like the local who may or may not know the directions, the client may or may not know what they are looking for in their website. A good project manager in the web design firm will use all their skills to gather the information, and help the client along in their journey of conveying what they want in their website.</p>
<p>These skills may include interpersonal projection, asking for clarification, using probing questions to seek further details, and evaluating and explaining the process thoroughly. The client needs to know sooner than later what is possible with the budget specified, and how modifications during the website design process can increase the cost to develop the website.</p>
<p>Although there are many other elements that contribute to excellent website design, web designers or their project managers must be able to provide these three main aspects for the web design project to be on a successful track.</p>
<p>Wayne Peters is the CEO of The Creation Studio, a <a href="http://www.creationstudio.ca/">website design</a> company and is located in Ontario Canada.</p>
<p>Article Source: http://EzineArticles.com/?expert=Wayne_M_Peters </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2Fweb-designer%2Fwebsite-design-the-three-most-important-elements&amp;linkname=Website%20Design%20%26%238211%3B%20The%20Three%20Most%20Important%20Elements"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/web-designer/website-design-the-three-most-important-elements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.webheadservice.com/blog/9/203</link>
		<comments>http://www.webheadservice.com/blog/9/203#comments</comments>
		<pubDate>Tue, 30 Mar 2010 02:39:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/203</guid>
		<description><![CDATA[I am going to see Krishna Das and Deva Premal &#38; Miten at the Variety Playhouse. Want to get tickets and join me? Here is my event info: sec: GENADM http://ping.fm/aupzH
]]></description>
			<content:encoded><![CDATA[<p>I am going to see Krishna Das and Deva Premal &amp; Miten at the Variety Playhouse. Want to get tickets and join me? Here is my event info: sec: GENADM http://ping.fm/aupzH</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2F203&amp;linkname="><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/203/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why I Switched from Verizon</title>
		<link>http://www.webheadservice.com/blog/9/why-i-switched-from-verizon</link>
		<comments>http://www.webheadservice.com/blog/9/why-i-switched-from-verizon#comments</comments>
		<pubDate>Wed, 17 Mar 2010 05:00:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/why-i-switched-from-verizon</guid>
		<description><![CDATA[I recently switched my cell phone service from Verizon to Credo Mobile.  Let me tell you why.  For one they give you $100 just for referring somebody if they stay with them for 30 days.  I am not kidding.  I referred my Mom, and got a check in the mail for [...]]]></description>
			<content:encoded><![CDATA[<p>I recently switched my cell phone service from Verizon to Credo Mobile.  Let me tell you why.  For one they give you $100 just for referring somebody if they stay with them for 30 days.  I am not kidding.  I referred my Mom, and got a check in the mail for $100 the following month.  I was pleasantly surprised.</p>
<p>That&#8217;s not the only reason I switched though.  They have a great deal too.  I pay $50 a month for 1,000 minutes and 1,000 texts a month.  Not bad at all.</p>
<p>As if that wasn&#8217;t enough, they also support green causes with a percentage of the money from your bill.  That&#8217;s my favorite part of the whole deal.  They even buy out your contract if you&#8217;re still stuck in one, and give you a free phone.</p>
<p>So, the choice is yours, but if you do decide to switch please give them the info below.  That way I&#8217;ll get $100 check, and send me an email too so that I know who to be grateful for!</p>
<p>Here&#8217;s the info:</p>
<p>my name: Jacob Louis<br />
referral #: 800222<br />
also code: JPNNG</p>
<p>They should know what all that is&#8230;</p>
<p>Thanks for reading!</p>
<p>Sincerely,</p>
<p>Jacob</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2Fwhy-i-switched-from-verizon&amp;linkname=Why%20I%20Switched%20from%20Verizon"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/why-i-switched-from-verizon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Fan Pages</title>
		<link>http://www.webheadservice.com/blog/9/creating-fan-pages</link>
		<comments>http://www.webheadservice.com/blog/9/creating-fan-pages#comments</comments>
		<pubDate>Sun, 14 Mar 2010 00:41:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/creating-fan-pages</guid>
		<description><![CDATA[Facebook Promotion for Artists, Musicians, Healers, and Their Events
From: http://ping.fm/xAiGR/creating-fan-pages/
]]></description>
			<content:encoded><![CDATA[<p><a href="http://ping.fm/LTQf7">Facebook Promotion for Artists, Musicians, Healers, and Their Events</a></p>
<p>From: http://ping.fm/xAiGR/creating-fan-pages/</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2Fcreating-fan-pages&amp;linkname=Creating%20Fan%20Pages"><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/creating-fan-pages/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.webheadservice.com/blog/9/200</link>
		<comments>http://www.webheadservice.com/blog/9/200#comments</comments>
		<pubDate>Fri, 12 Mar 2010 07:52:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[9]]></category>

		<guid isPermaLink="false">http://www.webheadservice.com/blog/9/200</guid>
		<description><![CDATA[I&#8217;ve learned some things that will benefit many people.  See for yourself: http://bit.ly/c9Nf7E
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve learned some things that will benefit many people.  See for yourself: http://bit.ly/c9Nf7E</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.webheadservice.com%2Fblog%2F9%2F200&amp;linkname="><img src="http://www.webheadservice.com/blog/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.webheadservice.com/blog/9/200/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

