<?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 Blog &#187; Flash tutorials</title>
	<atom:link href="http://www.pixeldesignstudio.com/blog/category/flash-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pixeldesignstudio.com/blog</link>
	<description>Web Design Blog from Pixel Design Studio in Sussex</description>
	<lastBuildDate>Wed, 25 Apr 2012 12:03:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Flash Tutorial &#8211; Clear, clean, crisp font&#8217;s</title>
		<link>http://www.pixeldesignstudio.com/blog/clear-clean-crisp-fonts-how-to_9/</link>
		<comments>http://www.pixeldesignstudio.com/blog/clear-clean-crisp-fonts-how-to_9/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 12:08:22 +0000</pubDate>
		<dc:creator>Doug Banks</dc:creator>
				<category><![CDATA[Flash tutorials]]></category>

		<guid isPermaLink="false">http://blog.pixeldesignstudio.co.uk/?p=9</guid>
		<description><![CDATA[<p>How To Keep Fonts Clear: Written by Paul Bainbridge<strong></strong></p>
<p>Here are the basic rules to follow to keep text from anti-aliasing (ie. getting fuzzy, unclear, blurred). I&#8217;ve also included a few notes that could be useful when manipulating text with actionscript.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>How To Keep Fonts Clear: Written by Paul Bainbridge<strong></strong></p>
<p>Here are the basic rules to follow to keep text from anti-aliasing (ie. getting fuzzy, unclear, blurred). I&#8217;ve also included a few notes that could be useful when manipulating text with actionscript.</p>
<p>RULE #1:<br />
Know the &#8216;Size Intended&#8217;!</p>
<p>The first bit of info you will need is the size that the font was intended to be set at. Most fonts are between 8-12 pt fonts. In the case of the popular miniml fonts they are 8. Contact the creator of the font if you can&#8217;t determine the correct size.</p>
<p>RULE #2:</p>
<p>Be sure that the font being used is only set to multiples of the size intended. For example, miniml fonts should only be size 8,16,32,40, etc. If you try other sizes the flash anti-aliasing will kick in and they will blur.</p>
<p>RULE #3:</p>
<p>Adjust placement of text so that it rests on integer (ie 1,2,3,4.. not 1.1,2.5,1.2,5.6, etc.) x and y values. If the text is placed on say x:1.4 y:2.3 the text will anti-alias and blur. The exact position of text is easily changed by selecting it and opening the info box in flash. Simply type in the rounded x and y values.</p>
<p>Those are the three basic rules. Here are a few notes/tricks for other situations:</p>
<p>NOTE #1:</p>
<p>A lot of times you will have text within a movie clip. Even though the x and y values may be integers it may still look blurry. This is because the movieclip that it resides in is not on integer values. It&#8217;s generally good practice to manually adjust movieclips via the infoBox whenever they contain text.</p>
<p>NOTE #2:</p>
<p>You will run into a problem with the aliasing when you scroll or manipulate the location of the text via actionscript. This is obviously due to the text being moved between integer values. The solution is to modify the actionscript so that when it determines the x and y position of the text you include a Math.round() argument.</p>
<p>NOTE #3:</p>
<p>The final note. You may also run into problems when you try to Justify text other than left justify. Try and keep all your text fields left justified.</p>
<p>I hope this helps, if you have any questions, feel free to ask!</p>
<p>Paul Bainbridge</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixeldesignstudio.com/blog/clear-clean-crisp-fonts-how-to_9/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial &#8211; Reducing SWF file size (How To)</title>
		<link>http://www.pixeldesignstudio.com/blog/10_10/</link>
		<comments>http://www.pixeldesignstudio.com/blog/10_10/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 12:50:16 +0000</pubDate>
		<dc:creator>Doug Banks</dc:creator>
				<category><![CDATA[Flash tutorials]]></category>

		<guid isPermaLink="false">http://blog.pixeldesignstudio.co.uk/?p=10</guid>
		<description><![CDATA[<p>How to reduce swf file sizes: Written by Paul Bainbridge &#8211; <strong>Innovative Designs </strong></p>
<p>Replace images for vectors wherever you can.<br />
Import images dynamically if vectors is not an option.</p>
<p>Reduce publish settings for images..</p>
<p>Do scripted movement rather than tweens&#8230; puts &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>How to reduce swf file sizes: Written by Paul Bainbridge &#8211; <strong>Innovative Designs </strong></p>
<p>Replace images for vectors wherever you can.<br />
Import images dynamically if vectors is not an option.</p>
<p>Reduce publish settings for images..</p>
<p>Do scripted movement rather than tweens&#8230; puts pressure on processor rather than file size to the swf.</p>
<p>You can also simplify your vectors by using the optimise option.</p>
<p>Use symbols for repetitive graphics.</p>
<p>Reduce frame rate and shorten tweens.</p>
<p>Sometimes (depending on the font) you should break apart the font to make it a vector then you&#8217;re not importing the font, just drawing a simple shape. This does depend on the font, and how often characters are repeated.</p>
<p>You can opt to use device fonts for body copy.</p>
<p>Make sure PNG&#8217;s are close cropped because believe it or not that transparent space actually ways something.</p>
<p>Generate a size report from your publish setting to see where the weight lies in your file.</p>
<p>Delete any stray or inappropriate key frames because this is causing a redraw.</p>
<p>A motion tween can often be heavier than a shape tween&#8230; because motion tweens don&#8217;t do anything mathematical the compiler actually converts them to individual key frames.</p>
<p>All masks and hit areas can be done with one square transparent symbol that you use throughout your FLA.</p>
<p>Then beyond that its tricks you use to give the illusion of an object but with optimising in mind&#8230;</p>
<p>i.e. if you have a symmetrical bitmap, save half of it out from Photoshop then flip it to make the whole graphic.</p>
<p>Similarly flipping graphics to get the opposite action rather than having to different graphics.</p>
<p>If you&#8217;ve got any bitmaps that are silver, save them as greyscale.</p>
<p>Make use of tint and other advanced colour setting for symbols rather than recreating graphics.</p>
<p>It&#8217;s endless really&#8230; but depends on the job.</p>
<p>Paul Bainbridge</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixeldesignstudio.com/blog/10_10/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Flash Tutorial &#8211; AS Coding standards (Good coding guide)</title>
		<link>http://www.pixeldesignstudio.com/blog/falsh-tutorial-as-coding-standards-good-coding-guide_13/</link>
		<comments>http://www.pixeldesignstudio.com/blog/falsh-tutorial-as-coding-standards-good-coding-guide_13/#comments</comments>
		<pubDate>Mon, 17 Jan 2011 15:55:10 +0000</pubDate>
		<dc:creator>Doug Banks</dc:creator>
				<category><![CDATA[Flash tutorials]]></category>

		<guid isPermaLink="false">http://blog.pixeldesignstudio.co.uk/?p=13</guid>
		<description><![CDATA[<p><strong>ActionScript Coding Standards</strong></p>
<p>Macromedia Flash applications have generally been built without regard to particular standards or guidelines. While this flexibility allows for a wide variety of solutions to a problem, it also makes it difficult for anyone other than the &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><strong>ActionScript Coding Standards</strong></p>
<p>Macromedia Flash applications have generally been built without regard to particular standards or guidelines. While this flexibility allows for a wide variety of solutions to a problem, it also makes it difficult for anyone other than the author of an application to understand the code. Even the author may have difficulty reading his or her own code after it is written. If a developer cannot understand the code in an application, it will not be easy to debug the code, make changes, or reuse.</p>
<p>This documents outlines a system of best practices specifically designed for coding with ActionScript and building applications with Macromedia Flash. Applications that use these guidelines should be more efficient and understandable-and the underlying ActionScript code will be easy to debug and reuse.</p>
<p><strong>Naming guide lines</strong></p>
<p>Most importantly, an application&#8217;s naming scheme must be consistent and names should be chosen for readability. This means that names should be understandable words or phrases. The primary function or purpose of any entity should be obvious from its name. Since ActionScript is a dynamically typed language, the name should also contain a suffix that defines the type of object being referred to by the name. In general, &#8220;noun-verb&#8221; and &#8220;adjective-noun&#8221; phrases are the most natural choice for names.</p>
<p><strong>For Example</strong></p>
<p>Movie name &#8211; my_movie.swf</p>
<p>entity appended to a URL &#8211; course_list_output</p>
<p>component or object &#8211; ProductInformation</p>
<p>variable or property &#8211; userName</p>
<p>Function names and variables should begin with a lower case letter. Objects, and object constructors, should be capitalized. Using mixed case is also recommended when naming variables, although other formats are acceptable as long as they are used consistently within the application.</p>
<p>Variable names can only contain letters, numbers and underscores. However, do not begin variable names with numbers or underscores.</p>
<p><strong>Examples of illegal variable names</strong><br />
<a rel="nofollow" href="http://www.adobe.com/devnet/flash/whitepapers/actionscript_standards.pdf" target="_blank">Read more at adobe</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixeldesignstudio.com/blog/falsh-tutorial-as-coding-standards-good-coding-guide_13/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Flash Introductions</title>
		<link>http://www.pixeldesignstudio.com/blog/flash-introductions_182/</link>
		<comments>http://www.pixeldesignstudio.com/blog/flash-introductions_182/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 08:04:29 +0000</pubDate>
		<dc:creator>Doug Banks</dc:creator>
				<category><![CDATA[Flash tutorials]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[flash games]]></category>
		<category><![CDATA[flash sites]]></category>
		<category><![CDATA[free flash websites]]></category>

		<guid isPermaLink="false">http://blog.pixeldesignstudio.co.uk/flash-introductions_182/</guid>
		<description><![CDATA[<p> </p>
<p>Websites with flash introductions are quite common throughout today&#8217;s Internet.   While this can be a great idea for some sites, it can be detrimental to others. Introductions that are not created in the proper way may lead customers to &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>Websites with flash introductions are quite common throughout today&#8217;s Internet.   While this can be a great idea for some sites, it can be detrimental to others. Introductions that are not created in the proper way may lead customers to leave before ever actually accessing the web sites content.   I wrote this article to go over flash introductions and to explain the right and wrong way to use them.</p>
<p> </p>
<p>The first thing you must know is that flash introductions are fantastic, but only if they are used correctly.   For instance, if you have created a web site to promote a movie, than there is nothing wrong with creating a long and captivating flash introduction.  However, if you have decided to create a web site about deodorant, than you should not waste your visitors time with a long drawn out video of deodorant or a deodorant type commercial. These types of web sites are solid examples of niches that need to have shorter flash introductions to keep bounce rates low. </p>
<p> </p>
<p>Just to recap, sites selling incidentals should not start out with long flash introductions or commercials, (with the exception of Old Spice, because they&#8217;re hilarious. Sites that are promoting a movie or a video game should start out with long and dramatic flash introductions.</p>
<p> </p>
<p>Once you&#8217;ve determined whether or not your site&#8217;s flash introduction needs to be long or short, you need to determine the content of your intro.   Obviously sites promoting movies can simply put a teaser trailer into their intro, but it does get trickier with other sites.  For instance, a website selling a suit should not waste their visitors time showing them 100 different suits in their introduction.  People looking to buy a particular type of suit will be turned off by this intro and will leave before finishing the video. These websites should have a short introduction that lets users know where they are and what they can do on your website. </p>
<p> </p>
<p>Site owners that want to do some free testing should really try and find a free flash website to work with.   You can <a rel="nofollow" target="_blank" href="http://www.wix.com">click here for a free website</a> that lets its users work with and build flash sites at no cost.  This site is great because it lets you make a site that is fully interactive and fun to visit.  I&#8217;d highly recommend paying this web site a visit today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.pixeldesignstudio.com/blog/flash-introductions_182/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

