<?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>Web Design Dev</title>
	<atom:link href="http://www.webdesigndev.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.webdesigndev.com</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 21:33:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to use checkboxes and radio buttons in Flash</title>
		<link>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash</link>
		<comments>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash#comments</comments>
		<pubDate>Fri, 03 Feb 2012 14:40:33 +0000</pubDate>
		<dc:creator>Iggy</dc:creator>
				<category><![CDATA[Flash Tutorials]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9077</guid>
		<description><![CDATA[When you are developing rich and interactive applications in flash, you need to provide the best communication between the user and the application. Flash has some very easy to implement UI components that you can use with your applications. These components will save you from the hassle of designing and programming the User Interface. In [...]]]></description>
			<content:encoded><![CDATA[<p>When you are developing rich and interactive applications in flash, you need to provide the best communication between the user and the application. Flash has some very easy to implement UI components that you can use with your applications. These components will save you from the hassle of designing and programming the User Interface. In this tutorial I am going to show you how to implement the radio button and the checkbox component in your applications. It is important that you know a little bit of ActionScript 3.0 before you begin this tutorial.</p>
<p>Start by creating a new ActionScript 3.0 document in Flash. You can find the UI components in the components window. Press ctrl+F7 to open the components window and drag some radio buttons and checkboxes to stage.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/12.png"><img class="alignnone size-full wp-image-9078" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/12.png" alt="" width="333" height="380" /></a></p>
<p>I have dragged 3 of each to stage.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/22.png"><img class="alignnone size-full wp-image-9079" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/22.png" alt="" width="663" height="317" /></a></p>
<p>At this point these are pretty generic components but you can see that they are visually perfect, the only visual details that need to be changed are the text. If you press ctrl+ENTER to test the movie at this time you can click on these and see that they really work.</p>
<p>Now lets change some of the settings of these components. Select any of the components and head over to the “Component Parameters” section in the properties window. You can see some properties listed here. The properties are pretty much self-explanatory but I will explain them just in case. Lets go to the radio button’s property first.</p>
<p>The first thing here is the &#8220;enabled&#8221; checkbox. This would enable or disable the radio button to be selected. Group name sets the group that the radio button belongs to. A user can select one option from one set of radio buttons. The selected option specifies whether the button is initially selected or not. The value field sets a value that the radio button contains. So if a user selects this radio button then we can retrieve its value with ActionScript. At last the visible property selects whether the button is visible to the user or not. This property has some pretty limited applications.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/32.png"><img class="alignnone size-full wp-image-9080" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/32.png" alt="" width="295" height="286" /></a></p>
<p>If you head over to the checkbox component parameters you can see that all the properties are same except the label placement. This property selects the placement of label relative to the checkbox. Also note that there is not group name here. That is because there are no groups in checkboxes and each checkbox is independent.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/321.png"><img class="alignnone size-full wp-image-9084" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/321.png" alt="" width="295" height="379" /></a></p>
<p>I have labeled all the checkboxes and radio buttons with some names of foods. Now we examine the code that we need to process these components. For the code to work with these components, they need to have some variable names. I have given these the names of radio1_mc,radio2_mc,radio3_mc,check1_mc,check2_mc &amp; check3_mc. I have also created a button that would be used to submit these values and I have named it submit_btn.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/42.png"><img class="alignnone size-full wp-image-9081" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/42.png" alt="" width="468" height="405" /></a></p>
<p>Now create a new layer for actionscript and insert the following code in it.</p>
<p>submit_btn.addEventListener(MouseEvent.CLICK,processButtons);</p>
<p>function processButtons(e:MouseEvent){</p>
<p>if(radio1_mc.selected){</p>
<p>trace(&#8220;Radio button 1 is selected&#8221;);</p>
<p>}</p>
<p>if(radio2_mc.selected){</p>
<p>trace(&#8220;Radio button 2 is selected&#8221;);</p>
<p>}</p>
<p>if(radio3_mc.selected){</p>
<p>trace(&#8220;Radio button 3 is selected&#8221;);</p>
<p>}</p>
<p>if(check1_mc.selected){</p>
<p>trace(&#8220;Checkbox 1 is selected&#8221;);</p>
<p>}</p>
<p>if(check2_mc.selected){</p>
<p>trace(&#8220;Checkbox 2 is selected&#8221;);</p>
<p>}</p>
<p>if(check3_mc.selected){</p>
<p>trace(&#8220;Checkbox 3 is selected&#8221;);</p>
<p>}</p>
<p>}</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/52.png"><img class="alignnone size-full wp-image-9083" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/52.png" alt="" width="911" height="574" /></a></p>
<p>The code is pretty simple but let me explain it to you. First I add and event listener that handles the clicks on the submit button. In the event handler I check the “selected” property of  all the radio buttons and checkboxes. If that is true then it means the radio button or checkbox  is selected and so I trace on to the output that the radio button/checkbox is selected.</p>
<p>I hope you have learned how to use these UI components. Use these components to make your applications user friendly and save precious development time.</p>
<p>By the way, don&#8217;t forget to check out <a title="Wix" href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&amp;experiment_id=af_webdesigndev.comCheckboxes" rel="nofollow" target="_blank">Wix</a>, an awesome free Flash website builder.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/flash/how-to-use-checkboxes-and-radio-buttons-in-flash/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Sources for Stock Photos</title>
		<link>http://www.webdesigndev.com/photoshop/10-sources-for-stock-photos</link>
		<comments>http://www.webdesigndev.com/photoshop/10-sources-for-stock-photos#comments</comments>
		<pubDate>Thu, 26 Jan 2012 19:08:04 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9396</guid>
		<description><![CDATA[More often than not I find myself meeting with a prospective client and telling them one of the biggest keys to designing a stunning website are the images that you use. You can have the most elaborate interface, with parallax scrolling, fluid and responsive resizing capabilities, and the best color pallet possible. But if your [...]]]></description>
			<content:encoded><![CDATA[<p>More often than not I find myself meeting with a prospective client and telling them one of the biggest keys to designing a stunning website are the images that you use. You can have the most elaborate interface, with parallax scrolling, fluid and responsive resizing capabilities, and the best color pallet possible. But if your images were taken on a disposable camera and then scanned, your website is going to look more like a web-fright.</p>
<p>If you’re dealing with a start-up, or a smaller client who may be on somewhat of a tight budget, the funds just aren’t there to hire a professional photographer to come in and take standard photos for you to use on the site. There are tons of places these days for finding good, high resolution, professionally edited photos for a fraction of the cost of hiring a lens man.</p>
<h3><a href="http://www.istockphoto.com/" target="_blank">iStock Photo</a></h3>
<p><a href="http://www.istockphoto.com/" target="_blank"><img class="aligncenter size-full wp-image-9397" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/iStock.jpg" alt="iStock Photo" width="740" height="438" /></a></p>
<p>Not only does <a href="http://www.istockphoto.com/" target="_blank">iStock Photo</a> have an image for just about everything you can think of, you can also get free images. Sure, it may be a shot in the dark that it’s one that will work with your design. But hey, I’m a sucker for free stuff! They don’t just offer images, you can also use them as a source for illustrations, audio files, videos, and Flash videos.</p>
<h3><a href="http://www.gettyimages.com/" target="_blank">Getty Images</a></h3>
<p><a href="http://www.gettyimages.com/" target="_blank"><img class="aligncenter size-full wp-image-9398" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/getty.jpg" alt="Getty Images" width="740" height="481" /></a></p>
<p>You may have seen the name <a href="http://www.gettyimages.com/" target="_blank">Getty Images</a> watermarked, or in the caption of, some news stories you’ve read on various news sites. Like iStock, Getty Images don’t stop at just images, they offer music and audio files as well. Unlike iStock, Getty has a pricing scale depending on what the image is going to be used for.</p>
<h3><a href="http://www.freedigitalphotos.net/">Free Digital Photos</a></h3>
<p><a href="http://www.freedigitalphotos.net/"><img class="aligncenter size-full wp-image-9399" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/freeDigiPhotos.jpg" alt="Free Digital Photos" width="740" height="539" /></a></p>
<p>The name says it all with <a href="http://www.freedigitalphotos.net/">Free Digital Photos</a>. The selection may not be as vast as some of the other sites, but for the price you really can’t complain. Free Digital Photos offers both pictures and Illustrations and browsing the selection is extremely easy with the navigation on the left side. There’s also a search feature, in case you know just what you’re looking for.</p>
<h3><a href="http://www.shutterstock.com/" target="_blank">Shutterstock</a></h3>
<p><a href="http://www.shutterstock.com/" target="_blank"><img class="aligncenter size-full wp-image-9400" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/shutterstock.jpg" alt="Shutterstock" width="740" height="540" /></a></p>
<p>Offering over 17 million royalty-free stock photos, I think it’s safe to say you’ll be able to find the image you’re looking for on <a href="http://www.shutterstock.com/" target="_blank">Shutterstock</a>. There are a couple pricing options, you can buy a membership and have a monthly limit of 750 images, or you can buy on demand by the photo or by five photos. Shutterstock also offers a free photo and vector image each week.</p>
<h3><a href="http://www.123rf.com/" target="_blank">123RF</a></h3>
<p><a href="http://www.123rf.com/" target="_blank"><img class="aligncenter size-full wp-image-9401" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/123rf.jpg" alt="123RF" width="740" height="430" /></a></p>
<p>123RF offers over 12 million royalty free stock photos, and counting. You can purchase credits and download by the image, or buy a subscription and download like crazy. The site is incredibly easy to navigate and once you find the image you want the pricing and size options are right there, no need to click through a bunch of other links to figure out the cost.</p>
<h3><a href="http://www.freepixels.com/" target="_blank">Free Pixels</a></h3>
<p><a href="http://www.freepixels.com/" target="_blank"><img class="aligncenter size-full wp-image-9402" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/freePixels.jpg" alt="Free Pixels" width="740" height="538" /></a></p>
<p><a href="http://www.freepixels.com/" target="_blank">Free Pixels</a> is, well, exactly that, free stock images. The site navigates a lot more like a discussion forum, but for the cost of the product you really can’t complain. If you can’t find the photo you need on their site, they have a search box that automatically searches the Shutterstock site for you.</p>
<h3><a href="http://depositphotos.com/" target="_blank">Deposit Photos</a></h3>
<p><a href="http://depositphotos.com/" target="_blank"><img class="aligncenter size-full wp-image-9403" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/deposit.jpg" alt="Deposit Photo" width="740" height="408" /></a></p>
<p><a href="http://depositphotos.com/" target="_blank">Deposit Photos</a> offers the pay per image or subscription plan, and even has a free trial subscription. You can search for vectors and images if you know exactly what you came there to find, or using the hovering slide bar to browse by category.</p>
<h3><a href="http://fotolia.com/" target="_blank">Fotolia</a></h3>
<p><a href="http://fotolia.com/" target="_blank"><img class="aligncenter size-full wp-image-9404" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/fotolia.jpg" alt="Fotolia" width="740" height="475" /></a></p>
<p><a href="http://fotolia.com/" target="_blank">Fotolia</a> is a site cut from the same stone as Shutterstock, as they look nearly identical. Along with images you can also get vectors and videos. They also feature images of the day and seasonal searches that will help you to get your creative juices flowing.</p>
<h3><a href="http://www.pixmac.com/" target="_blank">Pixmac</a></h3>
<p><a href="http://www.pixmac.com/" target="_blank"><img class="aligncenter size-full wp-image-9405" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/pixmac.jpg" alt="Pixmac" width="740" height="541" /></a></p>
<p><a href="http://www.pixmac.com/" target="_blank">Pixmac</a> Pixmac makes it clear what they do, they sell pictures. And with low price pay per image options as well as some very affordable subscriptions options, I’d be willing to bet they sell quite a few of them. You can search for the image you’re looking for, or browse by one of the twelve categories they’ve broken their selection down to.</p>
<h3><a href="http://www.dreamstime.com/" target="_blank">Dreamstime</a></h3>
<p><a href="http://www.dreamstime.com/" target="_blank"><img class="alignleft size-full wp-image-9406" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/dreamstime.jpg" alt="Dreamstime" width="740" height="457" /></a></p>
<p>One thing that I really enjoyed about the <a href="http://www.dreamstime.com/" target="_blank">Dreamstime</a> website was that it had an abundance of images on the homepage, laid out to give the page some design elements. You can click on the thumbnail images behind the search bar to jump directly to that image, or you can search for what you’re looking for. It’s that simple.</p>
<p>Stock photo sites are a great resource for the freelance developer. Being able to download affordable, top-quality, professionally edited photos to use in a design will help save you all sorts of time and money. The other nice thing about stock photo sites is that you can use comp versions of the images in your design comps. That way your client will have a better idea of how you intend for their site to look, rather than showing them a layout with a black square and the word “picture” written on it.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>. Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/photoshop/10-sources-for-stock-photos/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Outsourcing Sites for Freelancers</title>
		<link>http://www.webdesigndev.com/make-money-online/outsourcing-sites-for-freelancers</link>
		<comments>http://www.webdesigndev.com/make-money-online/outsourcing-sites-for-freelancers#comments</comments>
		<pubDate>Tue, 24 Jan 2012 14:44:22 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9411</guid>
		<description><![CDATA[I’m often asked by others questions like, “Where do you get job leads?” “How do you find clients?” And, “What’s a good source for finding work online?” Those are all pretty tough questions to answer, as there are several different ways to do so. But there are certainly some resources out that that are worth [...]]]></description>
			<content:encoded><![CDATA[<p>I’m often asked by others questions like, “Where do you get job leads?” “How do you find clients?” And, “What’s a good source for finding work online?” Those are all pretty tough questions to answer, as there are several different ways to do so. But there are certainly some resources out that that are worth checking out.</p>
<h3><a title="E-Lance" href="http://www.dpbolvw.net/i8115p-85-7NRVWTUWVNPOVVVXVT?sid=dedicated" target="_blank">Elance</a></h3>
<p><a href="http://www.dpbolvw.net/i8115p-85-7NRVWTUWVNPOVVVXVT?sid=dedicated" target="_blank"><img class="alignleft size-full wp-image-9412" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/elance.jpg" alt="Elance" width="740" height="540" /></a></p>
<p>If you haven’t already heard of, or aren’t already on, <a title="Elance" href="http://www.dpbolvw.net/i8115p-85-7NRVWTUWVNPOVVVXVT?sid=dedicated" target="_blank">Elance</a> then you will definitely want to look in to it. It’s an entire online community of work for remote freelancers that handles everything from the job posting to the payment. You can post jobs or bid on jobs in a system that’s very similar to Ebay. Each user can create their profile within Elance, allowing them to upload portfolio pieces and write a bio to let prospective clients know why they’re the best fit for the job. You can open a free account, which limits you to bidding on jobs in one profession, and the most important thing to keep in mind when you first get on there is to take placement tests. The tests will show what your skill level is in your area of profession. If you don’t have any test results on your profile then a prospective client will most likely quickly move on to the next provider, as they don’t know how good your skills are.</p>
<h3><a title="oDesk" href="http://www.dpbolvw.net/click-3785687-10713427?sid=dedicated" target="_blank">oDesk</a></h3>
<p><a href="http://www.dpbolvw.net/click-3785687-10713427?sid=dedicated" target="_blank"><img class="alignleft size-full wp-image-9413" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/oDesk.jpg" alt="oDesk" width="740" height="454" /></a></p>
<p>Similar to Elance, <a title="oDesk" href="http://www.dpbolvw.net/click-3785687-10713427?sid=dedicated" target="_blank">oDesk</a> is an online community of freelancers and outsourcers. You are also able to create a profile, and search for jobs, though the process of being verified on oDesk is a little tougher than Elance. This is a great source for finding work now and building long-term business relationships.</p>
<h3><a href="http://www.guru.com/" target="_blank">Guru</a></h3>
<p><a href="http://www.guru.com/" target="_blank"><img class="alignleft size-full wp-image-9414" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/guru.jpg" alt="Guru" width="740" height="452" /></a></p>
<p><a href="http://www.guru.com/" target="_blank">Guru</a> is another online marketplace of freelancers and outsourcers. It’s free and easy to post projects on Guru, if you’re looking for help. If you’re looking for work you can create a profile, bid on jobs, win jobs, and get paid. If you’re curious what kind of jobs you can find on there, browse around and see if there’s anything that you want to bid on.</p>
<h3><a title="Freelancer" href="http://www.freelancer.com/affiliates/webwdd/" target="_blank">Freelancer</a></h3>
<p><a href="http://www.freelancer.com/affiliates/webwdd/" target="_blank"><img class="alignleft size-full wp-image-9415" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/freelancer.jpg" alt="Freelancer" width="740" height="446" /></a></p>
<p>Claiming to be the world’s largest outsourcing marketplace, <a title="Freelancer" href="http://www.freelancer.com/affiliates/webwdd/" target="_blank">Freelancer</a> is another great site to look in to. The format of Freelancer is just like the rest of the global market outsourcing sites, you create a profile, browse for jobs, and bid on them. One thing I think is pretty cool about this site are the stats on the homepage. You can see a real time calculation of how many users, projects and dollars spent are happening on the site. It gets you motivated to find work and get going on it!</p>
<h3><a href="http://www.craigslist.com" target="_blank">Craigslist</a></h3>
<p><a href="http://www.craigslist.com" target="_blank"><img class="alignleft size-full wp-image-9416" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/craigslist.jpg" alt="Craigslist" width="740" height="527" /></a></p>
<p>You won’t find nearly as many job opportunities on <a href="http://www.craigslist.com" target="_blank">Craigslist</a> as you will on those global marketplace sites like Elance and Guru, but it’s certainly worth having a peak at every day or two. When I first got in to freelancing I got a lot of work on Craigslist, in fact, some of my biggest clients to date are ones I got off Craigslist years ago. Keep in mind that you don’t have to limit yourself to your home city, browse other cities close by, or major cities for telecommuting positions.</p>
<p>It’s also worth noting that with so many users going after the posted jobs on those global outsourcing sites, it can be a bit difficult to land your first gig. Along with your test result scores clients often look at your feedback rating, so if you haven’t done a job yet you won’t have any feedback. Much like Ebay, once you do a job for someone they will give you some sort of rating on how you did and leave feedback as to how their experience was working with you. You’ll find starting out that with no feedback it’s a little hard to get a response. You may want to consider making a hungry bid, coming in low on cost, and writing a stellar bid pitch and hope that the client is impressed with your placement tests.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/make-money-online/outsourcing-sites-for-freelancers/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to make a panning website in Flash</title>
		<link>http://www.webdesigndev.com/flash/how-to-make-a-panning-website-in-flash</link>
		<comments>http://www.webdesigndev.com/flash/how-to-make-a-panning-website-in-flash#comments</comments>
		<pubDate>Wed, 18 Jan 2012 22:37:35 +0000</pubDate>
		<dc:creator>Iggy</dc:creator>
				<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9132</guid>
		<description><![CDATA[You might have seen a lot of panning websites in Flash. In these sites if you click on a link, the page automatically scrolls to that content. This effect looks great and is better than just plain old webpages. But believe it or not this effect is extremely easy to make. It’s so easy that [...]]]></description>
			<content:encoded><![CDATA[<p>You might have seen a lot of panning websites in Flash. In these sites if you click on a link, the page automatically scrolls to that content. This effect looks great and is better than just plain old webpages. But believe it or not this effect is extremely easy to make. It’s so easy that you can make a simple website in one day. In this tutorial I am going to show you how to make this effect in Flash. Before you begin this tutorial you must know the basics of movieClips, Buttons and ActionScript 3.0.</p>
<p>Before I begin, if you want a very easy way out of this tutorial, check out  <a title="Wix" href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&amp;experiment_id=af_webdesigndev.comPanningTutorial" target="_blank">free website builder from Wix</a>, which lets you create a professional Flash website for free.</p>
<p>Start off by making a new ActionScript 3.0 document in Flash. Press ctrl+J and set the stage size to the size of your choice, I am giving it the size of 1024*600.Now we need to create the buttons. I will make just a simple rectangular button. But you can make a button as complicated as you want.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/0.png"><img class="alignnone size-full wp-image-9133" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/0.png" alt="" width="671" height="382" /></a></p>
<p>You can see in the screenshot below that I have placed three instances of my button on stage and I have put text on all three. I have also given the buttons instance names of home_btn , about_btn and contact_btn so that we can use the buttons in the actionscript.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/13.png"><img class="alignnone size-full wp-image-9134" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/13.png" alt="" width="962" height="541" /></a></p>
<p>Now it’s time to make the content of the webpage. The content of this page would actually be one long stip so that whenever we click on any of the buttons, the strip can be move to left or right to bring that content in the screen window. So I will just make a new movieclip with the content corresponding to the three buttons. Again I will not make anything fancy, just some simple text for each page. Remember that we will make our movieclip of the width 1024&#215;3, since the width of each window is 1024 and there will be three windows. As for the height you can make it according to your will. You can see in the screenshot below that I have placed the movieclip with all the content the stage. I have also divided the buttons and content into layers so that the fla file is more manageable. I have also named the content movieclip as content_mc so that we can use it in the ActionScript 3.0</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/23.png"><img class="alignnone size-full wp-image-9135" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/23.png" alt="" width="995" height="520" /></a></p>
<p>&nbsp;</p>
<p>Now its time for the code part. Create a new layer to put the ActionScript and add the following code in it.</p>
<p>import fl.transitions.Tween;</p>
<p>import fl.transitions.easing.*;</p>
<p>&nbsp;</p>
<p>home_btn.addEventListener(MouseEvent.CLICK,panContent);</p>
<p>about_btn.addEventListener(MouseEvent.CLICK,panContent);</p>
<p>contact_btn.addEventListener(MouseEvent.CLICK,panContent);</p>
<p>&nbsp;</p>
<p>function panContent(evt:MouseEvent){</p>
<p>var buttonName:String = evt.target.name;</p>
<p>switch(buttonName){</p>
<p>case &#8220;home_btn&#8221;:</p>
<p>new Tween(content_mc,&#8221;x&#8221;,Strong.easeOut,content_mc.x,0,1,true);</p>
<p>break;</p>
<p>case &#8220;about_btn&#8221;:</p>
<p>new Tween(content_mc,&#8221;x&#8221;,Strong.easeOut,content_mc.x,-1024,1,true);</p>
<p>break;</p>
<p>case &#8220;contact_btn&#8221;:</p>
<p>new Tween(content_mc,&#8221;x&#8221;,Strong.easeOut,content_mc.x,-2048,1,true);</p>
<p>break;</p>
<p>}</p>
<p>}</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/33.png"><img class="alignnone size-full wp-image-9136" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/33.png" alt="" width="1250" height="680" /></a></p>
<p>Let me explain the code to you now. The first two lines import the Tween and Easing classes so we can Tween our movieclip with the help of actionscript. In the next three lines we are adding event listeners for click events on our buttons. Whenever a user clicks on any of the buttons, the panContent function would be dispatched. In the panContent function, the first line is strong the name of the button that called the event in the variable buttonName. The next code block is a switch statement on the buttonName variable. So, for each button the switch would perform a different function. For each case in the switch we are using</p>
<p>new Tween(movie clip name, attribute of movieclip to be tweened, the easing function,starting point, ending point,time, is time in seconds?);</p>
<p>For movie clip name, we always put content_mc because that is the clip we want to tween, for attribute we put “x” because we want to tween x position of content_mc, the easing function Strong.easeOut makes the tween go from fast to slow from start to end of the tween, for starting point of tween we always enter the current position of the movieclip, for ending point we set the negative of the x value for the specific content. E.g. The “About” content starts from x=1024 so we set the tween to go to -1024.If content_mc is placed at -1024 then the 1024 would be just at the start of the screen hence putting About section in view. For the time parameter, I put 1 and for the last parameter I put true which means that the time parameter is in seconds.</p>
<p>Now in order to publish this page in HTML, we have to set the publish settings for HTML. We want our content to be in the center of the screen so we choose the following settings.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/43.png"><img class="alignnone size-full wp-image-9137" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/43.png" alt="" width="434" height="659" /></a></p>
<p>If you publish the flash now and run the html then you might see everything to be fine, but if you have a screen size of width greater than 1024 then you would see extra bits of the content movieclip as in the screenshot below.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/53.png"><img class="alignnone size-full wp-image-9138" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/53.png" alt="" width="1365" height="675" /></a></p>
<p>But the fix for this is really easy, you just need to apply a mask over the entire stage on the content layer.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/61.png"><img class="alignnone size-full wp-image-9139" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/61.png" alt="" width="369" height="510" /></a></p>
<p>Now if you publish and run the html, everything would be perfect. You can use this method to create interesting webpages very fast. You can innovate in this method to your will to make it even more attractive.</p>
<p><a title="Panning website in action" href="http://www.webdesigndev.com/wp-content/uploads/2011/12/PanningWebpage.html" target="_blank">Click here to see the panning web page in action.</a></p>
<p>Found this tutorial way too hard? Check out  <a title="Wix" href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&amp;experiment_id=af_webdesigndev.comPanningTutorial2" target="_blank">free website builder from Wix</a>, which lets you quickly create a professional Flash website for free without doing any coding.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/flash/how-to-make-a-panning-website-in-flash/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How To Monetize Your Website With Google AdSense</title>
		<link>http://www.webdesigndev.com/make-money-online/how-to-monetize-your-website-with-google-adsense</link>
		<comments>http://www.webdesigndev.com/make-money-online/how-to-monetize-your-website-with-google-adsense#comments</comments>
		<pubDate>Thu, 12 Jan 2012 13:31:44 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Make Money Online]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9293</guid>
		<description><![CDATA[If I had a euro for every time I heard one of those folklore stories of the guy who knew a person who talked to a guy whose roommate in college had a study group with someone’s cousin who made a website that earned him a million euros a month, I think I would be [...]]]></description>
			<content:encoded><![CDATA[<p>If I had a euro for every time I heard one of those folklore stories of the guy who knew a person who talked to a guy whose roommate in college had a study group with someone’s cousin who made a website that earned him a million euros a month, I think I would be earning more than the guy in that story. Considering I don’t have a house in Monte Carlo or a fleet of Italian sports cars in the driveway, I think it’s time to look into how you monetize a website to help generate some more income.</p>
<p>Google AdSense is probably the most popular and the easiest source for webmasters to earn some advertising revenue. Google AdSense automatically delivers text, image, video and rich media adverts specifically targeted towards the content on your site. Meaning if you run a blog much like this site, Google will pull design-oriented adverts in to the spots. This allows the advertisers to target their specific audience, which in turn leads to the webmaster getting more clicks from the ads, and, ultimately, more revenue.</p>
<p>Google does all of the hard work for you, taking into consideration your geographical location, your market, the viewing audience, and other factors. This results in advertisements being more effective for everyone, the advertiser, the company whose site the ads appear on, and the viewers clicking on the ads. All the webmaster has to do is insert the AdSense JavaScript code into their page, then, each time the page is loaded, the code fetches content from the Google servers.</p>
<p>There are a few different applications that Google offers for their AdSense program. AdSense for Feeds is a program that runs on RSS and Atom feeds that have over 100 people subscribed to them. Google simply places an image into the feed and Google writes the content based on what the content of the feed surrounding the image includes. If the viewer chooses to pursue the ad they simply click on it and are taken to the advertisers website.</p>
<p>Adsense for Search is a program where website owners can include a Google Custom Search box in their website for viewers to either search the web, or the content of the site. Google will then share 51% of the advertising revenue generated from those searches with the site owner.</p>
<p>AdSense for mobile content is identical to the regular AdSense program, only it’s targeted towards mobile websites. The ads generated by Google match the content of the mobile site. The difference between AdSense for mobile content and the regular AdSense program is how Google generates the ads, rather than using JavaScript they utilize PHP and ASP scripts.</p>
<p>AdSense for domains is a program allowing developers to populate undeveloped sites with ads in an effort to generate some revenue off their domain before publishing their site or reselling the domain.</p>
<p>You can also target people on video content with AdSense for video. This is a common practice on popular YouTube videos.</p>
<p>Whether you are a hobby webmaster who maintains a personal site for fun and you’re looking for some supplemental income to help with hosting costs, or are looking to utilize your web presence to generate a decent amount of income, Google AdSense is a program certainly worth trying. The cost to the site owner is nothing, it only takes a few minutes to set up and Google does all of the accounting. Give it a shot and see how much extra income you’re able to generate.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/make-money-online/how-to-monetize-your-website-with-google-adsense/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flash Guide Layer Tutorial</title>
		<link>http://www.webdesigndev.com/flash/flash-guide-layer-tutorial</link>
		<comments>http://www.webdesigndev.com/flash/flash-guide-layer-tutorial#comments</comments>
		<pubDate>Tue, 10 Jan 2012 15:24:12 +0000</pubDate>
		<dc:creator>Iggy</dc:creator>
				<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9061</guid>
		<description><![CDATA[When it comes to animation, nothing beats Flash. Flash has an arsenal of powerful tools that help to make animations easily. If you have done some animation in flash then you know that frame by frame animation gets a little hectic sometimes. There is tweening ;  but it is only helpful when the change in [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to animation, nothing beats Flash. Flash has an arsenal of powerful tools that help to make animations easily. If you have done some animation in flash then you know that frame by frame animation gets a little hectic sometimes. There is tweening ;  but it is only helpful when the change in position of a body is in the same direction. If you want your object to follow a specific path which is not in one direction then that’s where guide layers come in. Guide layers are exactly what their name suggests, they guide the object to maintain their path of motion. In this tutorial I am going to show you how to use guide layers. You have to know the basics of animation in Flash before you can take this tutorial, If you want to start on that then please see <a href="http://www.webdesigndev.com/flash/flash-animation-tutorial">my previous tutorial about animation</a>.</p>
<p>Start by creating a new document in flash. First of all we will make the object which we need to move. I am making a simple circle. The object needs to be a movieClip otherwise it would not work with the guide layer.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/11.png"><img class="alignnone size-full wp-image-9062" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/11.png" alt="" width="760" height="554" /></a></p>
<p>Now make a new layer and draw a line on it, this line is the path that the ball will follow. I have drawn a wavy line with a green color. The color is not important here because it would not be visible in the output.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/21.png"><img class="alignnone size-full wp-image-9063" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/21.png" alt="" width="831" height="596" /></a></p>
<p>Now right click on the layer with the path and select the guide option from the context menu. This will transform the layer into a guide layer.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/31.png"><img class="alignnone size-full wp-image-9064" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/31.png" alt="" width="515" height="461" /></a></p>
<p>You will know that it has successfully transformed when you see the icon of the layer change.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/41.png"><img class="alignnone size-full wp-image-9065" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/41.png" alt="" width="281" height="83" /></a></p>
<p>But the ball is not bound to the guide yet, to do that drag the ball layer with your mouse and move place it on the lower side of the guide layer. When the ball layer becomes a part of the guide you will see it like the image below.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/51.png"><img class="alignnone size-full wp-image-9066" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/51.png" alt="" width="304" height="76" /></a></p>
<p>To make the ball move with the line, the ball needs to be on the line first, drag the ball on the line such the circle showing the center of the ball is on the line.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/6.png"><img class="alignnone size-full wp-image-9067" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/6.png" alt="" width="183" height="132" /></a></p>
<p>Now press F6 on any other frame in the ball layer to insert a new frame there. Press  F5 on the same frame in the guide layer to extend the guide layer upto that frame. Now in this frame change the position of the ball but you have to make sure that the center of the ball is still touching the line.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/7.png"><img class="alignnone size-full wp-image-9068" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/7.png" alt="" width="776" height="602" /></a></p>
<p>At last right click on the middle of ball layer and choose classic tween to tween the ball. Press Ctrl+ENTER to test the movie and you will see the ball move along the line of the guide layer.</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2011/12/8.png"><img class="alignnone size-full wp-image-9069" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/8.png" alt="" width="622" height="549" /></a></p>
<p>You can use this method to dramatically decrease the time of making an animation. I hope this helps you become a better animator.</p>
<p>Found this Flash Guide Layer tutorial too hard? Don&#8217;t worry, you have an easy way out. Check out <a title="Wix" href="http://www.wix.com/amazingwebsites/editoreasy?utm_campaign=af_webdesigndev.com&amp;experiment_id=af_webdesigndev.comFlashGuideLayer" rel="nofollow" target="_blank">Wix</a>, an awesome free Flash website builder.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/flash/flash-guide-layer-tutorial/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Custom Sticker Giveaway by Sticker Mule</title>
		<link>http://www.webdesigndev.com/freebies/custom-sticker-giveaway-by-sticker-mule</link>
		<comments>http://www.webdesigndev.com/freebies/custom-sticker-giveaway-by-sticker-mule#comments</comments>
		<pubDate>Mon, 09 Jan 2012 14:25:53 +0000</pubDate>
		<dc:creator>Web Design</dc:creator>
				<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9374</guid>
		<description><![CDATA[***This giveaway has ended. Congratulations to John Hartley who is the winner!*** Today we&#8217;re giving away $100 in free custom stickers from our friends at Sticker Mule. If you&#8217;re a designer, chances are you have clients that could use some stickers. That&#8217;s where Sticker Mule comes in. They make awesome die cut stickers, with a [...]]]></description>
			<content:encoded><![CDATA[<p>***This giveaway has ended. Congratulations to <strong>John Hartley</strong> who is the winner!***</p>
<p>Today we&#8217;re giving away $100 in free custom stickers from our friends at Sticker Mule. If you&#8217;re a designer, chances are you have clients that could use some stickers. That&#8217;s where Sticker Mule comes in. They make awesome <a title="die cut stickers" href="http://www.stickermule.com/products/custom-die-cut-stickers" target="_blank">die cut stickers</a>, with a super easy ordering process. Just upload your artwork and they&#8217;ll take care of the rest. They&#8217;ll make your artwork print ready for free, and provide a free online proof with every order.</p>
<p>Here are some shots of their handy work:</p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-circle-stickers-collage-001.png"><img class="aligncenter size-full wp-image-9375" title="custom-circle-stickers-collage-001" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-circle-stickers-collage-001.png" alt="custom-circle-stickers-collage-001" width="620" height="420" /></a></p>
<p><a href="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-die-cut-stickers-collage-002.png"><img class="aligncenter size-full wp-image-9376" title="custom-die-cut-stickers-collage-002" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-die-cut-stickers-collage-002.png" alt="custom-die-cut-stickers-collage-002" width="620" height="420" /></a><a href="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-die-cut-stickers-collage-003.png"><img class="aligncenter size-full wp-image-9377" title="custom-die-cut-stickers-collage-003" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/custom-die-cut-stickers-collage-003.png" alt="custom-die-cut-stickers-collage-003" width="620" height="420" /></a></p>
<p><strong>To Enter</strong>: Just comment on this post. We’ll chose 1 winner at random.</p>
<p><strong>Contest Ends</strong> 01/16/2012</p>
<p>Bonus Round!!! Retweet this post and we&#8217;ll pick one additional winner from Twitter. So spread the word!</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/freebies/custom-sticker-giveaway-by-sticker-mule/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>Top 10 Flash Slideshow Image Viewers</title>
		<link>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers</link>
		<comments>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers#comments</comments>
		<pubDate>Sat, 07 Jan 2012 16:11:24 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9318</guid>
		<description><![CDATA[Featuring professionally edited photos on your website is a surefire way of making your site stand out above others. Slideshows are a great way to capture the attention of a visitor and hold them on your page. It will cause them to pause and watch the pictures rotate through while they’re also viewing the other [...]]]></description>
			<content:encoded><![CDATA[<p>Featuring professionally edited photos on your website is a surefire way of making your site stand out above others. Slideshows are a great way to capture the attention of a visitor and hold them on your page. It will cause them to pause and watch the pictures rotate through while they’re also viewing the other content on your site that surrounds your slideshow. However, building a robust, professional looking slideshow can be quite time consuming and implementing a pre-built slideshow may be the ideal solution. So, let’s take a look at some of the options out there.</p>
<h3><a href="http://slideshowpro.net/">SlideShowPro</a></h3>
<p><a href="http://slideshowpro.net/"><img class="aligncenter size-full wp-image-9324" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/slideshowpro.jpg" alt="SlideShowPro" width="720" height="450" /></a></p>
<p><a href="http://slideshowpro.net/">SlideShowPro</a> is a very popular solution that you have probably come across while surfing the interwebs. SlideShowPro is fully customizable, layout, transparencey, allowing you to adjust the colors of the player for a seamless integration with the rest of your site. You may download a free trial, but the full version will cost $39.</p>
<h3><a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a></h3>
<p><a href="http://simpleviewer.net/simpleviewer/"><img class="aligncenter size-full wp-image-9323" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/simpleviewer.jpg" alt="SimpleViewer Gallery" width="740" height="395" /></a></p>
<p><a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a> supports Universal Playback and can be viewed on Windows, MacOS, iOS, Linux and Android, meaning it works on virtually every computer, tablet, or mobile device! Navigating the slideshow is simple thanks to the multiple layers of controls, viewers can choose from keyboard shortcuts, clicking the main image, or using the thumbnails to navigate through the gallery. A free trial version is available for download, but the full version runs for $45.</p>
<h3><a href="http://www.dwuser.com/flashslideshow/">XML Flash Slideshow v4</a></h3>
<p><a href="http://www.dwuser.com/flashslideshow/"><img class="aligncenter size-full wp-image-9327" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/xmlFlasv4.jpg" alt="XML Flash Slideshow v4" width="620" height="470" /></a></p>
<p><a href="http://www.dwuser.com/flashslideshow/">XML Flash Slideshow v4</a> is available as a Dreamweaver extension or standalone application, both allow you to create media-rich presentations to polish up your website. There is a built in thumbnail generator to keep you from spending unnecessary time creating thumbnails for your images and Flickr integration for easy updating. $24.95 is all it takes to make this viewer yours.</p>
<h3><a href="http://simpleviewer.net/tiltviewer/">TiltViewer Gallery</a></h3>
<p><a href="http://simpleviewer.net/tiltviewer/"><img class="aligncenter size-full wp-image-9325" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/tiltviewer.jpg" alt="TiltViewer Gallery" width="603" height="643" /></a></p>
<p><a href="http://simpleviewer.net/tiltviewer/">TiltViewer</a> is an image viewer brought to you by the same company as <a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a> and features a unique viewing experience. As you move the mouse your thumbnails tilt and rotate, clicking on an image zooms you in for a closer look and hitting the circular arrow flips the image so you can read any caption that may be on the back. A free demo version is available to download, while the Pro version costs $45.</p>
<h3><a href="http://simpleviewer.net/postcardviewer/">PostcardViewer</a></h3>
<p><a href="http://simpleviewer.net/postcardviewer/"><img class="aligncenter size-full wp-image-9322" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/postcardViewer.jpg" alt="PostcardViewer" width="609" height="617" /></a></p>
<p><a href="http://simpleviewer.net/postcardviewer/">PostcardViewer</a> is very similar to <a href="http://simpleviewer.net/tiltviewer/">TiltViewer</a> with the exception of it not tilting as you hover over the viewer with your mouse. Like all other viewers available from <a title="SimpleViewer" href="http://www.simpleviewer.net/products/" target="_blank">SimpleViewer</a>, PostcardViewer will work on any website, has a smart image pre-loading, scales and resizes itself to work at any screen resolution, and is lightweight. Free trial or $45 to go pro.</p>
<h3><a href="http://simpleviewer.net/autoviewer/">AutoViewer</a></h3>
<p><a href="http://simpleviewer.net/autoviewer/"><img class="aligncenter size-full wp-image-9319" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/autoviewer.jpg" alt="AutoViewer" width="740" height="493" /></a></p>
<p><a href="http://simpleviewer.net/autoviewer/">AutoViewer</a> is yet another image viewer from the folks that originally brought us the <a href="http://simpleviewer.net/simpleviewer/">SimpleViewer Gallery</a>. An auto-play feature allows the viewer to enjoy a hands free viewing experience and the viewer is able to automatically scale and resize to fit any browser window. You’re able to display captions and the image title as an overlay and a right-click option to open the image in a new window is available. Free trial version or $45 to go pro.</p>
<h3><a href="http://www.monoslideshow.com/">Monoslideshow</a></h3>
<p><a href="http://www.monoslideshow.com/"><img class="aligncenter size-full wp-image-9321" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/monoSlideshow.jpg" alt="Monoslideshow" width="642" height="401" /></a></p>
<p><a href="http://www.monoslideshow.com/">Monoslideshow</a> offers over 20 photo transitions and features the Ken Burns effect of panning and zooming on images. You can easily feed photos to your slideshow from flickr, tumblr, mobypicture, picasa or via a RSS feed making it easier than ever to keep your images fresh and updated. Monoslideshow works on any website and will work under any dimension and screen resolution. The Monoslideshow license costs €25.</p>
<h3><a href="http://www.ws-slideshow.com/">WS-Slideshow 2</a></h3>
<p><a href="http://www.ws-slideshow.com/"><img class="aligncenter size-full wp-image-9326" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/wsSlideshow2.jpg" alt="WS-Slideshow 2" width="740" height="383" /></a></p>
<p><a href="http://www.ws-slideshow.com/">WS-Slideshow 2</a> offers a host of new features, including 10 cool slide effects, the ability to add background music, and customizable thumbnail sizes! You can scale WS-Slideshow from 380 x 250 up to full screen, feature unlimited albums and slides, and feed your flickr photos in to it for easy updating. There is a freeware and commercial versions available starting at €15.</p>
<h3><a href="http://imagin.ro/">IMAGIN</a></h3>
<p><a href="http://imagin.ro/"><img class="aligncenter size-full wp-image-9320" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/imagin.jpg" alt="IMAGIN" width="740" height="450" /></a></p>
<p><a href="http://imagin.ro/">IMAGIN</a> is a simple flash image gallery that’s easy to navigate and easy to use. There is no limit to the number of albums you can have or the levels of albums within albums. IMAGIN simply needs to be pointed to a directory that contains photos, everything from that point on is automatic. There’s a freeware version or for $30 you can purchase a version that doesn’t contain the IMAGIN logo.</p>
<h3><a href="http://flash-gallery.com/zen-flash-gallery/">Zen Flash Gallery</a></h3>
<p><a href="http://flash-gallery.com/zen-flash-gallery/"><img class="aligncenter size-full wp-image-9328" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/zenSlideshow.jpg" alt="Zen Flash Gallery" width="550" height="400" /></a></p>
<p><a href="http://flash-gallery.com/zen-flash-gallery/">Zen Flash Gallery</a> is an easy to use Flash image viewer that is also available as a WordPress Plugin and Joomla! Extension. There are a host of customizable parameters within the gallery, such as what you want the viewer to see in the initial state, image scale mode, frame size, shadowing, and the ability to change the frame and background color for a seamless fit to your website. The Zen Flash Gallery costs $40.</p>
<p>When you compare the cost of a pre-built gallery to the time it would take you to develop something similar, the decision to go with something already available seems like an easy one. It will save you the time and headache of having to create a custom image viewer, not to mention the ongoing need to fix any bugs that may arise over time, and will keep the overall cost of the site down for your client. If you know of any other good options out there, please feel free to let us know in the comments section below.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/top-10-flash-slideshow-image-viewers/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>10 World Class Athlete Websites</title>
		<link>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites</link>
		<comments>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites#comments</comments>
		<pubDate>Fri, 06 Jan 2012 16:36:35 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Roundups]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9305</guid>
		<description><![CDATA[I have always appreciated an athlete who has their own website. Especially now days when they could call it good with a Facebook fan page, or really go above and beyond with a Twitter account. Some athlete’s are active members of charity organizations, or have their own product line, and they use their personal site [...]]]></description>
			<content:encoded><![CDATA[<p>I have always appreciated an athlete who has their own website. Especially now days when they could call it good with a Facebook fan page, or really go above and beyond with a Twitter account. Some athlete’s are active members of charity organizations, or have their own product line, and they use their personal site as a platform to pitch and promote those organizations or products. In other words, they use it to generate revenue. Others aren’t trying to pitch anything and just want to give their fans a place to learn a little more about them. Let’s take a look at some of the better athlete websites out there.</p>
<h3><a title="Tom Cleverley" href="http://www.tomcleverley23.com/" target="_blank">Tom Cleverley</a></h3>
<p><a href="http://www.tomcleverley23.com/"><img class="aligncenter size-full wp-image-9314" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/tomCleverley.jpg" alt="Tom Cleverley" width="740" height="518" /></a></p>
<p><a title="Tom Cleverley" href="http://www.tomcleverley23.com/" target="_blank">Tom Cleverley</a> is not only quickly making his presence known on the football pitch, but online as well. His website allows fans to learn more about the England international and keep up to date with his accomplishments as well as what he’s up to. His site features his Twitter feed, a news section, and a monthly playlist of his favorite songs.</p>
<h3><a title="Bjoern Dunkerbeck" href="http://www.dunkerbeck.com/" target="_blank">Bjoern Dunkerbeck</a></h3>
<p><a href="http://www.dunkerbeck.com/"><img class="aligncenter size-full wp-image-9306" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/dunkerbeck.jpg" alt="Bjoern Dunkerbeck" width="740" height="372" /></a></p>
<p><a title="Bjoern Dunkerbeck" href="http://www.dunkerbeck.com/" target="_blank">Bjoern Dunkerbeck</a> is a world-class windsurfer with a world-class website. The Flash site features some stunning fullscreen background images, cool music, news, projects, and contact info, amongst other things.</p>
<h3><a href="http://www.mariasharapova.com">Maria Sharipova</a></h3>
<p><a href="http://www.mariasharapova.com"><img class="aligncenter size-full wp-image-9313" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/sharipova.jpg" alt="Maria Sharipova" width="740" height="520" /></a></p>
<p><a href="http://www.mariasharapova.com">Maria Sharipova</a> is not only stunning on and off the court, but on the web as well! Her personal website is packed full of content, including Facebook updates, photos, videos, news updates on her foundation, links to her various collections and products, as well as info on her sponsors.</p>
<h3><a href="http://www.andresiniesta.es/">Andres Iniesta</a></h3>
<p><a href="http://www.andresiniesta.es/"><img class="aligncenter size-full wp-image-9308" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/inesta.jpg" alt="Andres Iniesta" width="740" height="484" /></a></p>
<p>Hailed as one of the greatest modern day footballers, <a href="http://www.andresiniesta.es/">Andres Iniesta</a> has a rather flashy Flash site to stay in touch with his fans. The site is packed full of photos, videos, news, bio and background info on the World Champion goal scorer at both club and international level. The site can also be viewed in Spanish, Catalonian or English.</p>
<h3><a href="http://www.serenawilliams.com">Serena Williams</a></h3>
<p><a href="http://www.serenawilliams.com"><img class="aligncenter size-full wp-image-9312" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/serenaWilliams.jpg" alt="Serena Williams" width="740" height="519" /></a></p>
<p><a href="http://www.serenawilliams.com">Serena Williams</a> took the time to develop a site packed full of information on her and her various accomplishments. Amongst the standard, bio, pics, media, sponsor info, and contact links there is a schedule of her upcoming events, as well as a page about her foundation.</p>
<h3><a href="http://troy43.com/">Troy Polamalu</a></h3>
<p><a href="http://troy43.com/"><img class="aligncenter size-full wp-image-9315" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/troyP.jpg" alt="Troy Polamalu" width="740" height="519" /></a></p>
<p><a href="http://troy43.com/">Troy Polamalu</a> is an American football player and a man to be feared on the field. If anyone was wondering how intimidating it may be to come face-to-face with him, you may now do so on his homepage. Along with a very stoic and intimidating background pic, Polamalu also has a store on his site where fans can buy his merchandise. You can also learn about the foundations Troy supports from his website as well.</p>
<h3><a href="http://www.floydmayweather.com">Floyd Mayweather, Jr</a></h3>
<p><a href="http://www.floydmayweather.com"><img class="aligncenter size-full wp-image-9311" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/moneyMay.jpg" alt="Floyd &quot;Money&quot; Mayweather, Jr." width="740" height="519" /></a></p>
<p>Love him or hate him, <a href="http://www.floydmayweather.com">Floyd &#8220;Money&#8221; Mayweather, Jr</a> is a force to be reckoned with in the boxing world. You can access Money’s Facebook page, Twitter account and YouTube channel, as well as well as get info on the not-for-profit The Floyd Mayweather Jr, Foundation or shop his online store.</p>
<h3><a href="http://www.lancearmstrong.com/">Lance Armstrong</a></h3>
<p><a href="http://www.lancearmstrong.com/"><img class="aligncenter size-full wp-image-9309" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/lanceArmstrong.jpg" alt="Lance Armstrong" width="740" height="484" /></a></p>
<p>Seven time Tour de France champion, <a href="http://www.lancearmstrong.com/">Lance Armstrong</a> has become a worldwide cancer awareness advocate since he gained worldwide fame as a cyclist. The site contains info on the Livestrong foundation, photos, news, pics, a bio, sponsors, and a whole lot more.</p>
<h3><a href="http://www.felipemassa.com/">Felipe Massa</a></h3>
<p><a href="http://www.felipemassa.com/"><img class="aligncenter size-full wp-image-9307" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/felipeMassa.jpg" alt="Felipe Massa" width="740" height="511" /></a></p>
<p><a href="http://www.felipemassa.com/">Felipe Massa</a> is a Formula 1 driver for Ferrari with an extremely cool website. Featuring a fullscreen background image slideshow, multiple language options, and all of the standard, media, bio, and news content you’d expect. Felipe also has a fan club you can join from his site, as well as a link to the Ferrari merchandise store.</p>
<h3><a href="http://www.lebronjames.com/">LeBron James</a></h3>
<p><a href="http://www.lebronjames.com/"><img class="aligncenter size-full wp-image-9310" src="http://www.webdesigndev.com/wp-content/uploads/2012/01/lebronJames.jpg" alt="LeBron James" width="740" height="511" /></a></p>
<p><a href="http://www.lebronjames.com/">LeBron James</a> has a site you must witness. A single page concept with a parallax scrolling effect that hovers over character drawings of the man himself, the site has your standard updates, and links to his social media presence. But the content gold mine comes in the way of “The LeBrons” cartoons.</p>
<p>There are some certain trends that you can see present throughout the majority of these sites, lots of color, emphasis on images, and basic content elements like bio, contact info, and links to social media platforms. These concepts can be applied to many other niches of web design and don’t have to be limited to athletes, the same concepts could work for artists, musicians, cooks, and many other professions.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/web-development/10-omg-cool-athlete-websites/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create a Full Page Background Image with CSS3</title>
		<link>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3</link>
		<comments>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:45:17 +0000</pubDate>
		<dc:creator>Scott Stanton</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.webdesigndev.com/?p=9234</guid>
		<description><![CDATA[The other day we looked at 10 Awesome Websites With Full Screen Background Images.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take [...]]]></description>
			<content:encoded><![CDATA[<p>The other day we looked at <a href="http://www.webdesigndev.com/?p=9216">10 Awesome Websites With Full Screen Background Images</a>.  At the beginning of the article I had mentioned that there were a few ways of approaching this effect, some developers prefer to do it with jQuery, some with CSS, and others with Flash.  In this article we’re going to take a look at how to achieve a full screen background image with CSS.</p>
<p>CSS3 allows us to choose between a few different values for the “background-size” property.  The properties are, length, percentage, cover, and contain.  The value that we’re going to use first is the “cover” value, which will scale an image to a size that will allow it to fill the content area.  I would like to point out that in doing this some parts of the image may be cut off depending on the screen resolution or dimensions of the browser window.  <a href="http://centrogenesis.com/">Centro Genesis</a> is a good example.  Look at how the background image displays in a widescreen browser.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9235" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisWide.jpg" alt="Centro Genesis" width="740" height="377" /></a></p>
<p>Now look at how the image appears in a traditional square browser. The majority of the photo is the same, it just cuts off a piece of it in order to fill the height of the screen.</p>
<p><a href="http://centrogenesis.com/"><img class="aligncenter size-full wp-image-9236" src="http://www.webdesigndev.com/wp-content/uploads/2011/12/genesisSkinny.jpg" alt="Centro Genesis" width="740" height="530" /></a></p>
<p>The code for this is method is really quite simple.  All you have to do is insert these few lines of CSS in your external CSS file or in the head of your page.</p>
<p>html {<br />
background: url(images/bg.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>That was easy.  Now let’s take a closer look at what we did.  With the first line we’re calling in our background image and applying some style to it, “background: url(images/bg.jpg)” is pulling up our actual image.  Then “no-repeat” is telling the browser to not repeat the image, “center center” is telling the browser to center the image horizontally and vertically, and “fixed” is telling the image to fix itself in that position and not scroll with the rest of the content on the page if there is a need to scroll.  After we’ve called the background image and styled it we target all of the major browsers, webkit covers Safari 5+ and Chrome, Moz is Mozilla Firefox 4+, -o is Opera, and the plain and simple background-size with no prefix takes care if IE9+.</p>
<p>This technique is simple and works, but you’re relying on one image to please all resolution sizes.  How do you decide what dimensions to use for your one background image?  If you have an image that’s 1900px wide and someone’s trying to view your site on their mobile phone, the image may take quite some time to load.  But if you try to shoot the gap and go with an image that’s around 1,000px wide then the image may become pixilated and blurry to anyone viewing your site on a widescreen monitor with the resolution set to 1440px.  And chances are even at 1,000px it’s still going to take that mobile viewer a while to fully load your site because of your large background image.</p>
<p>Before you curse the variables like screen resolution and monitor shapes that can make our jobs so frustrating at times, allow me to give you the answer you’re looking for: media queries.  CSS will allow you to define different attributes for various parameters.  In other words, you can set a media query that tells a browser to load a largeBG.jpg, mediumBG.jpg, or a smallBG.jpg depending on what the browser dimensions of the viewer are.</p>
<p>For example, rather than defining your background image within the HTML of your site let’s say you create a div for your page and assign it the id of “container”.  Pretty standard.  Much like we did in the first method, we’re going to assign our “container” div id with our background image, add some style, then tell it to cover.  I would recommend making your “largeBG.jpg” image somewhere in the ballpark of 1440px wide to 1900px wide.</p>
<p>#container{<br />
background: url(images/largeBG.jpg) no-repeat center center fixed;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}</p>
<p>Now that we’ve got the big version of our background image set, we can move on to the medium.  This is a little different as we’re going to have to do a media query to tell the browser to load a smaller version of our background image.  I typically set a media query for a screen resolution width of 1024, as this is the resolution of an iPad and the possibility of the viewer relying on a network rather than high speed wifi to load the page.  To set a media query for 1024 you simply add this line in to your CSS.</p>
<p>@media only screen and (max-width: 1024px) and (orientation:landscape) {<br />
#container { background: url(images/mediumBG.jpg) 50% 0 no-repeat fixed; !important; background-size: 100% auto;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>The background-size properties are somewhat optional at this point.  You can’t adjust the resolution of your iPad, but you have to remember that this media query is not specifically targeting iPad’s, it’s targeting that screen resolution.  Since there are surely still a large portion of web surfers on older monitors set in the ballpark of 1024&#215;768, it’s an easy enough step to enhance their viewing experience a little more.</p>
<p>After defining the landscape view for iPad’s let’s make a media query for the portrait view.  Depending on your image, you may want to consider putting in a cropped, taller version of your image here so that it display’s full screen without getting too distorted and pixilated.  You’ll also want to adjust the positioning to make sure the image stays aligned properly.</p>
<p>@media only screen and (min-width: 768px) and (max-width: 991px) {<br />
#container { background: url(images/mediumTallBG.jpg) 50% 80% no-repeat fixed !important<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>Finally, we can set another media query for mobile devices.</p>
<p>@media only screen and (min-width: 0px) and (max-width: 767px) {<br />
#container { background: url(images/smalBG.jpg) 50% 80% no-repeat fixed !important; background-size: auto !important;<br />
-webkit-background-size: cover;<br />
-moz-background-size: cover;<br />
-o-background-size: cover;<br />
background-size: cover;<br />
}<br />
}</p>
<p>I would encourage you to play around with these tricks and leave a link to the page you’ve created in the comments section below so we can all see what you’ve come up with.</p>
<p>About the author: with over ten years in the freelance web design and writing fields, Scott Stanton has had his finger on the beating pulse of the industry&#8217;s hottest design trends and bends for the past decade. Scott regularly writes for Wix.com the free <a title="website builder" href="http://www.wix.com/website/builder?utm_campaign=se_gb_webdesigndev.com&amp;experiment_id=FWB" target="_blank">website builder</a>.  Follow him on Twitter @TheScottStanton.</p>
<div style='clear:both'></div>]]></content:encoded>
			<wfw:commentRss>http://www.webdesigndev.com/dreamweaver/create-a-full-page-background-image-with-css3/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: basic
Object Caching 1075/1079 objects using disk: basic

Served from: www.webdesigndev.com @ 2012-02-04 05:24:41 -->
