<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Course Vector</title>
	
	<link>http://blog.coursevector.com</link>
	<description>ActionScript Fun</description>
	<lastBuildDate>Thu, 28 Jan 2010 19:10:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CourseVector" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="coursevector" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Notes: General AS3 Tips</title>
		<link>http://blog.coursevector.com/notes-general-as3-tips</link>
		<comments>http://blog.coursevector.com/notes-general-as3-tips#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:39:06 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=699</guid>
		<description><![CDATA[This is the final bit migrated from the Labs Wiki. This is just a short list of quick and easy tips to keep in mind when programming AS3.

Do not use Objects, if you know which properties will be finally involved. Write a class for it; AS3 seems to register a memory space for them and [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/notes-general-as3-tips/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Notes: Math Optimizations</title>
		<link>http://blog.coursevector.com/notes-math-optimizations</link>
		<comments>http://blog.coursevector.com/notes-math-optimizations#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:02:46 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=681</guid>
		<description><![CDATA[This is some more stuff migrated from the Labs Wiki. Below is just some aggregated tips and tricks I&#8217;ve found on other blogs or websites.
Extract Colors
 Not really an optimization per se, but just how to extract color values.

//24bit
var color:uint = 0x336699;
var r:uint = color &#62;&#62; 16;
var g:uint = color &#62;&#62; 8 &#38; 0xFF;
var b:uint [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/notes-math-optimizations/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Compile Timestamp – Timestamp your SWFs!</title>
		<link>http://blog.coursevector.com/timestamp</link>
		<comments>http://blog.coursevector.com/timestamp#comments</comments>
		<pubDate>Wed, 27 Jan 2010 14:42:50 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=668</guid>
		<description><![CDATA[


Version 1.2, Updated ?

Compatibility: ActionSctip 2.0 / ActionScript 3.0
File Size: About -Kb
Change Log








Description
Compile Timstamp is a Flash extension that adds a new layer to your fla with a trace of the filename and compile timestamp. Used with FlashBug, this allows you to easily check the version of your online swf. This was created because the [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/timestamp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes: Flash 9 Gotchas/Bugs</title>
		<link>http://blog.coursevector.com/notes-flash-9-gotchasbugs</link>
		<comments>http://blog.coursevector.com/notes-flash-9-gotchasbugs#comments</comments>
		<pubDate>Tue, 26 Jan 2010 20:46:51 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=658</guid>
		<description><![CDATA[This is also migrated over from labs. This was a list of bugs and gotchas I&#8217;ve run into over during my time as a Flash developer. I&#8217;m sure the best play to look would be Adobe&#8217;s Bug tracker but it doesn&#8217;t hurt to have a concise list of things to watch out for.
Bugs/ Gotches


Bug
 wmode="opaque" [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/notes-flash-9-gotchasbugs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Black Box – Flash Secure Login</title>
		<link>http://blog.coursevector.com/blackbox</link>
		<comments>http://blog.coursevector.com/blackbox#comments</comments>
		<pubDate>Tue, 26 Jan 2010 20:12:41 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=649</guid>
		<description><![CDATA[



Version 0.1, Updated ?

Compatibility: ActionScript 3.0
File Size: About -Kb
Change Log




Try BlackBox



Description
BlackBox is a Flash-based login application. We built this much for the same reasons Comet was. We didn&#8217;t have anyway of doing a secure (read SSL) connection so we made our own next best thing. Whats funny is that in the end, the method we [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/blackbox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comet – Flash-Based Chat</title>
		<link>http://blog.coursevector.com/comet</link>
		<comments>http://blog.coursevector.com/comet#comments</comments>
		<pubDate>Thu, 21 Jan 2010 19:47:43 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=633</guid>
		<description><![CDATA[



Version 0.6, Updated ?

Compatibility: ActionScript 3.0
File Size: About -Kb
Change Log




Try Comet



What&#8217;s New

New black theme

Description
Comet is a Flash-based chat application. It is a stand-alone application and does not require a server application in order to function. It does require PHP 4+ to function though.
This is an older project pulled from Labs and is currently password protected. [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/comet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About the Labs Wiki</title>
		<link>http://blog.coursevector.com/about-the-labs-wiki</link>
		<comments>http://blog.coursevector.com/about-the-labs-wiki#comments</comments>
		<pubDate>Tue, 19 Jan 2010 14:26:01 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=622</guid>
		<description><![CDATA[The Labs Wiki was originally meant to showcase all of our projects and anything else we found interesting. But I think we&#8217;ve had greater success with this as a blog format. With this said, and to reduce redundancy, I&#8217;m going to start clearing out the wiki and moving any unique content here to the blog. [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/about-the-labs-wiki/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notes: Cross-Domain Policy</title>
		<link>http://blog.coursevector.com/note-cross-domain-policy</link>
		<comments>http://blog.coursevector.com/note-cross-domain-policy#comments</comments>
		<pubDate>Thu, 14 Jan 2010 20:28:50 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Notes]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=582</guid>
		<description><![CDATA[Below is the structure of the cross-domain policy and all the allowed values. The majority of the content was aggregated from Adobe&#8217;s page on cross-domain policies.
A cross-domain policy file is an XML document that allows a web client to handle data across multiple domains. You will usually need one if the SWF is playing on [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/note-cross-domain-policy/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notes: Loop/Statement Labels</title>
		<link>http://blog.coursevector.com/notes-loopstatement-labels</link>
		<comments>http://blog.coursevector.com/notes-loopstatement-labels#comments</comments>
		<pubDate>Wed, 13 Jan 2010 15:13:00 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[loops]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=567</guid>
		<description><![CDATA[Below are some notes from Christian Cantrell&#8217;s blog that I just wanted to aggregate onto my site for my own personal reference. I am not claiming this as my own content, but I&#8217;ve been meaning to add this to my notes and Christian did a great job explaining it.
Labels are a relatively unknown feature in [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/notes-loopstatement-labels/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.minerva 3 Released!</title>
		<link>http://blog.coursevector.com/minerva-3-released</link>
		<comments>http://blog.coursevector.com/minerva-3-released#comments</comments>
		<pubDate>Thu, 07 Jan 2010 13:45:04 +0000</pubDate>
		<dc:creator>gabriel</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://blog.coursevector.com/?p=565</guid>
		<description><![CDATA[Work has slowed down enough I have begun working on my side projects again. First out of the gate is a revamped version of .minerva! It now has an updated JS formatter engine and best of all; you can now edit .SOL files. I&#8217;ve also added a theme to it I plan on using on [...]]]></description>
		<wfw:commentRss>http://blog.coursevector.com/minerva-3-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.686 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-05 18:41:50 -->
