<?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/"
	>

<channel>
	<title>WDIM 121</title>
	<atom:link href="http://jpdevries.com/classes/sp09/wdim121/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpdevries.com/classes/sp09/wdim121</link>
	<description>Fundamentals of Authoring</description>
	<pubDate>Thu, 16 Jul 2009 04:01:06 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Final Grades Submitted</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/06/21/final-grades-submitted/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/06/21/final-grades-submitted/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 18:42:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=157</guid>
		<description><![CDATA[Congratulations on complete your first Flash class! Final grades have been submitted and are updated on this blog. Have a great break, see you next term!
]]></description>
			<content:encoded><![CDATA[<p>Congratulations on complete your first Flash class! Final grades have been submitted and are updated on this blog. Have a great break, see you next term!</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/06/21/final-grades-submitted/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweening with ActionScript 3</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/06/06/tweening-with-actionscript-3/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/06/06/tweening-with-actionscript-3/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 02:07:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=151</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_tweener_439591896"
			class="flashmovie"
			width="550"
			height="400">
	<param name="movie" value="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/tweener.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/tweener.swf"
			name="fm_tweener_439591896"
			width="550"
			height="400">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Dowload the above example here.
Using the Timeline isn&#8217;t the only way to animate an Object in Flash. There are several ActionScript Tweening Libraries that you can import and use. Attached is an example of using Tweener to tween the x and y properties of a ball. Notice that the [...]]]></description>
			<content:encoded><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_tweener_1564892160"
			class="flashmovie"
			width="550"
			height="400">
	<param name="movie" value="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/tweener.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/tweener.swf"
			name="fm_tweener_1564892160"
			width="550"
			height="400">
	<!--<![endif]-->
		<a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Dowload the above example <a title="tweener example" href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/tweener.zip">here</a>.</p>
<p>Using the Timeline isn&#8217;t the only way to animate an Object in Flash. There are several ActionScript Tweening Libraries that you can import and use. Attached is an example of using Tweener to tween the x and y properties of a ball. Notice that the caurina folder is in the same directory and the tweener.fla file. This is so the tweener.fla file can find the Tweener ActionScript files using the caurina.transitions.* package definition.</p>
<p>Here&#8217;s how you import tweener:</p>
<pre class="javascript">import caurina.transitions.*;</pre>
<p>And to tween parameters of an Object:</p>
<pre class="javascript">Tweener.addTween(ball, {x:0, y:0, transition:"easeOutQuad", time:1, delay:.4});</pre>
<p>The first parameter you pass to the <a title="addTween" href="http://hosted.zeh.com.br/tweener/docs/en-us/methods/Tweener_addTween.html" target="_blank">addTween</a> method is the instance name of the MovieClip (or DisplayObject) that you want to tween. The second parameter that you pass, is a generic Object that describes what to tween, how long to take for the tween (in seconds), and what type of easing equation to use. The transition property defines the type of easing equations to use, Tweener easing equations can be seen here. There are several optional parameters that you can use to do things like delay a Tween, or call a function before, or after a tween is completed. You can see a full list of Tweener Parameters <a title="Tweening Parameters" href="http://hosted.zeh.com.br/tweener/docs/en-us/parameters/index.html" target="_blank">here</a>.<br />
See the <a href="http://hosted.zeh.com.br/tweener/docs/en-us/">Tweener documentation</a> on Google Code for more on what you can do with Tweener.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/06/06/tweening-with-actionscript-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Timeline Animation in Flash CS 4</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/06/05/timeline-animation-in-flash-cs-4/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/06/05/timeline-animation-in-flash-cs-4/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 19:39:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=147</guid>
		<description><![CDATA[Flash CS 4 completely changed the way timeline animation is done. This video is from Adobe TV, and a great example how how to do things the &#8220;new&#8221; way.

See this video full size here.
]]></description>
			<content:encoded><![CDATA[<p>Flash CS 4 completely changed the way timeline animation is done. This video is from Adobe TV, and a great example how how to do things the &#8220;new&#8221; way.</p>
<p><embed src="http://tv.adobe.com/Embed.swf" quality="high" bgcolor="#000000" width="600" height="385" name="AdobeTVPlayer" play="true" loop="false" quality="high" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" flashVars="v=~b64~aHR0cDovL2Fkb2JlLmVkZ2Vib3NzLm5ldC9mbGFzaC9hZG9iZS9hZG9iZXR2Mi9sZWFybl9mbGFzaF9wcm9mZXNzaW9uYWxfY3M0L2xydmlkNDA1NF9mbC5mbHY/cnNzX2ZlZWRpZD0xNTkwJnhtbHZlcnM9Mg==&amp;w=600&amp;t=http://tv.adobe.com/vi+f1590v1013&amp;h=385"></embed></p>
<p>See this video full size <a title="Timeline Animation in Flash CS 4" href="http://tv.adobe.com/#vi+f1590v1013" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/06/05/timeline-animation-in-flash-cs-4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get Inspired</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/27/get-inspired/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/27/get-inspired/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:42:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Resources]]></category>

		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=142</guid>
		<description><![CDATA[gotoandlearn.com is a great place for Flash tutorials. Check out this video titled &#8220;This video shows some of the best places to go for Flash inspiration.&#8221; and get inspired.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gotoandlearn.com/" target="_blank">gotoandlearn.com</a> is a great place for Flash tutorials. Check out <a href="http://www.gotoandlearn.com/play?id=12" target="_blank">this video</a> titled &#8220;This video shows some of the best places to go for Flash inspiration.&#8221; and get inspired.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/27/get-inspired/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Write a Custom Class</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/26/how-to-write-a-custom-class/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/26/how-to-write-a-custom-class/#comments</comments>
		<pubDate>Wed, 27 May 2009 04:52:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Examples]]></category>

		<category><![CDATA[actionscript]]></category>

		<category><![CDATA[class]]></category>

		<category><![CDATA[MouseEvent]]></category>

		<category><![CDATA[object-oriented]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=136</guid>
		<description><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_exportforactionscript_1979002701"
			class="flashmovie"
			width="550"
			height="400">
	<param name="movie" value="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/exportforactionscript.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/exportforactionscript.swf"
			name="fm_exportforactionscript_1979002701"
			width="550"
			height="400">
	<!--<![endif]-->
		

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
Using Custom Classes is an introduction to Object-Oriented Programming, which is beyond the horizon of this class.
If its something you&#8217;re interested in, here&#8217;s something to get you started. The most important thing to take away from this is that we are going to write the functionality for what we [...]]]></description>
			<content:encoded><![CDATA[
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_exportforactionscript_1609977371"
			class="flashmovie"
			width="550"
			height="400">
	<param name="movie" value="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/exportforactionscript.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/exportforactionscript.swf"
			name="fm_exportforactionscript_1609977371"
			width="550"
			height="400">
	<!--<![endif]-->
		<a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Using Custom Classes is an introduction to Object-Oriented Programming, which is beyond the horizon of this class.</p>
<p>If its something you&#8217;re interested in, here&#8217;s something to get you started. The most important thing to take away from this is that we are going to write the functionality for what we want, say a ball, to do, and no matter how many balls we create, they will all inherit from a single source of logic, a Ball Class.</p>
<p>When we say Class, we me an external ActionScript file that follows the rules needed to make it a class. Any text file saved with a .as extension can be used as an ActionScript file.</p>
<p>We&#8217;re going to create a library item with 4 frame labels. We&#8217;ll also create a Custom Class that each instance of the Ball MovieClip will inherit from. This custom class will add listeners for MouseEvents, so that all of our ball instances do the same thing, and run off of the same code.</p>
<p><a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/using-a-class.zip">Download Example</a></p>
<p>Follow this example</p>
<p>Step 1 - Create the Library Item</p>
<p>Open a new .fla, make sure you have ActionScript 3 selected, and create a ball MovieClip. Inside the ball MovieClip, create a labels layer and an actions layer. Place a stop() Action on frame 1 of the Ball MovieClip. In the labels layer, make frames 1 - 4 blank keyframes. Label one frame &#8220;default&#8221;, one frame &#8220;over&#8221;, one frame &#8220;out&#8221;, and one frame &#8220;down&#8221;. Change something visually on each frame so you can tell if the MouseEvents are working. Save the .fla as &#8220;ExportForActionScript.fla</p>
<p>Step 2 - Relate the Library Item to the External class</p>
<p>Choose File &gt; New &gt; ActionScript File. Save the ActionScript file in the same directory as the ExportForActionScript.fla. Paste <a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/ball.as">this code</a> in the ActionScript file and save it.</p>
<p>If all goes well you won&#8217;t get any errors and you should notice that they MouseEvents are working. If not, compare the working example you can download <a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/06/using-a-class.zip">here</a> with what you have.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/26/how-to-write-a-custom-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Timeline Meets Music</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/15/the-timeline-meets-music/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/15/the-timeline-meets-music/#comments</comments>
		<pubDate>Fri, 15 May 2009 20:26:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Examples]]></category>

		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=132</guid>
		<description><![CDATA[
Check out this Flash site, its a great use of the Timeline, Flash drawing tools, masking, all put to music.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/orange.png"><img class="alignnone size-full wp-image-133" title="orange" src="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/orange.png" alt="orange" width="712" height="529" /></a></p>
<p>Check out <a href="http://www.menomena.com/triggaVID.html" target="_blank">this</a> Flash site, its a great use of the Timeline, Flash drawing tools, masking, all put to music.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/15/the-timeline-meets-music/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remote Controlled Robot</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/13/remote-controlled-robot/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/13/remote-controlled-robot/#comments</comments>
		<pubDate>Thu, 14 May 2009 03:44:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[button]]></category>

		<category><![CDATA[MouseEvent]]></category>

		<category><![CDATA[robot]]></category>

		<category><![CDATA[week 6]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=125</guid>
		<description><![CDATA[
So in class Week 6 we went over how to make a remote controlled robot! Here is the example .fla that I made in class.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/rc_robot.gif"><img class="alignnone size-full wp-image-127" title="rc_robot" src="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/rc_robot.gif" alt="rc_robot" width="552" height="399" /></a></p>
<p>So in class Week 6 we went over how to make a remote controlled robot! <a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/week-6.zip">Here</a> is the example .fla that I made in class.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/13/remote-controlled-robot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Importing Media into Flash from PS CS 3</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/11/importing-media-into-flash-from-ps-cs-3/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/11/importing-media-into-flash-from-ps-cs-3/#comments</comments>
		<pubDate>Tue, 12 May 2009 02:52:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Examples]]></category>

		<category><![CDATA[Recap]]></category>

		<category><![CDATA[importing]]></category>

		<category><![CDATA[photoshop]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=116</guid>
		<description><![CDATA[
Using The Adobe Creative Suite CS 3 or newer, you can import media into Flash directly from a Photoshop or Illustrator file. This is a fantastic features, with a few limitations. Layers are maintained, so if you or whoever designed project kept a clean Photoshop file with named layers and logical organization, that will carry [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/banner.jpg"><img class="alignnone size-full wp-image-117" title="banner" src="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/banner.jpg" alt="banner" width="468" height="146" /></a></p>
<p>Using The Adobe Creative Suite CS 3 or newer, you can import media into Flash directly from a Photoshop or Illustrator file. This is a fantastic features, with a few limitations. Layers are maintained, so if you or whoever designed project kept a clean Photoshop file with named layers and logical organization, that will carry right over into the Flash file. You can choose to create a MovieClip for a Photoshop Layer or Group right in the Photoshop Import Window. To get to the Photoshop Import Window from Flash CS 3, go File &gt; Import to Library &gt; choose .psd file. You can also choose what layers to import, and unique compression options for each. So all in all, its great. One drawback I&#8217;ve noticed is it doesn&#8217;t handle transparency very well in certain situations.</p>
<p>If you have a graphic on a layer that has transparency, especially if it moving, you may see white ugly crusty edges around your graphic. This is because when importing from Photoshop Flash isn&#8217;t using as good of transparency as a .png (Portable Network File) does. So if that happens to you, simply make the layer in Flash that the crustiness is on a guide so it won&#8217;t show up in the final swf, and use it as reference to place a png image. You&#8217;ll need to go back to Photoshop, show only the layer you want to save, crop it, and choose File &gt; Save For Web &gt; PNG 24 Transparency to create a .png image from Photoshop.</p>
<p>Get an example psd file <a title="Example" href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/importing_from_ps.zip">here</a>.</p>
<ul>
<li>Create a new .fla file</li>
<li>choose File &gt; Import to Library (or Import to Stage if you want it to be automatically placed on the stage)</li>
<li>Select the .psd file</li>
<li>Notice the options in the Import Window</li>
<li>Try making all the head layers their own MovieClip and give them instance names</li>
<li>Notice that layers from the .psd file were maintained</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/11/importing-media-into-flash-from-ps-cs-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Listening to MouseEvents in ActionScript 3</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/05/03/listening-to-mouseevents-in-actionscript-3/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/05/03/listening-to-mouseevents-in-actionscript-3/#comments</comments>
		<pubDate>Mon, 04 May 2009 01:02:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=92</guid>
		<description><![CDATA[There are a number of MouseEvents that a MovieClip can listen to. You can see them all at the ActionScript 3.0 Flash Player 9 Language Reference here. The most common is listening to when something is clicked.
To listen for when a MovieClip is clicked, we need to add a listener to the MovieClip, and a [...]]]></description>
			<content:encoded><![CDATA[<p>There are a number of MouseEvents that a MovieClip can listen to. You can see them all at the ActionScript 3.0 Flash Player 9 Language Reference <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/">here</a>. The most common is listening to when something is clicked.</p>
<p>To listen for when a MovieClip is clicked, we need to add a listener to the MovieClip, and a assign a function to be called when the event happens. This is where giving your MovieClip an instance name comes into play. You use the instance name that you gave the MovieClip in the Properties Panel to target that MovieClip with ActionScript. In this example, we are targeting the sun_mc MovieClip;</p>
<pre name="code" class="javascript">// this gives the movieclip a pointer cursor
sun_mc.buttonMode = sun_mc.useHandCursor = sun_mc.mouseEnabled =  true;
// this adds a listener to the sun, whenever its clicked, the handleMouseUp function is called
sun_mc.addEventListener(MouseEvent.MOUSE_UP, handleMouseUp);

// this is the handleMouseUp function
function handleMouseUp(e:MouseEvent) : void {
	// Because its an event handler you can grab a reference to whatever was clicked through the MouseEvent parameter, in this case clicked will always be sun_mc
	var clicked:MovieClip = e.currentTarget as MovieClip;
	// clicked is the same thing as sun_mc, we tell it to go to and play the clicked frame on its timeline
	clicked.gotoAndPlay("clicked");
}</pre>
<p>Get the source example files <a href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/05/mouse-clicked.zip">here</a>.</p>
<p>If you have questions feel free to post comments to this blog post or post to the forum.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/05/03/listening-to-mouseevents-in-actionscript-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Banner Ad - MIDTERM</title>
		<link>http://jpdevries.com/classes/sp09/wdim121/2009/04/30/banner-ad-midterm/</link>
		<comments>http://jpdevries.com/classes/sp09/wdim121/2009/04/30/banner-ad-midterm/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 20:53:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[assignments]]></category>

		<category><![CDATA[midterm]]></category>

		<guid isPermaLink="false">http://jpdevries.com/classes/sp09/wdim121/?p=89</guid>
		<description><![CDATA[Get the handout for the Banner Ad assignment here. Remember to post to the forum and/or email me if you have any questions.
]]></description>
			<content:encoded><![CDATA[<p>Get the handout for the Banner Ad assignment <a title="Banner Ad Handout" href="http://jpdevries.com/classes/sp09/wdim121/wp-content/uploads/2009/04/banner_ad.doc">here</a>. Remember to post to the forum and/or email me if you have any questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpdevries.com/classes/sp09/wdim121/2009/04/30/banner-ad-midterm/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
