<?xml version="1.0" encoding="UTF-8"?>

<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>Boxercast for CS205</title>
<link>http://boxercast.pacificu.edu/as/cs/</link>
<language>en-us</language>
<copyright>&#x2117; &amp; &#xA9; 2007 Pacific University</copyright>
<itunes:subtitle>Podcasts about Actionscript</itunes:subtitle>
<itunes:author>Michael Geraci</itunes:author>
<description>
Podcasts for the Pacific University Community. The CS205 podcast supports Mike Geraci's Introduction to Programming for Multimedia class. Each episode features a short lecture about a single concept in ActionScript 2.0. These lectures are designed to assist students with little or no experience with programming languages.
</description>
<itunes:owner>
<itunes:name>Michael Geraci</itunes:name>

<itunes:email>geracim@pacificu.edu</itunes:email>

</itunes:owner>
<itunes:image href="http://boxercast.pacificu.edu/as/cs/boxercast.jpg" />
<lastBuildDate>Wed, 07 Feb 2007 23:00:00 -0800</lastBuildDate>
<itunes:category text="Education">
<itunes:category text="Higher Education"/>
</itunes:category>
<generator>Michael Geraci</generator>
<webMaster>webmaster@pacificu.edu</webMaster>
<ttl>60</ttl>

<item>
<title>Episode 1: Getting Started with ActionScript</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode1.mp3</link>
<description>
Episode 1 covers some of the basics about Flash ActionScript, SWF files, the Flash player application, and how to start writing code. There is also some information about where to access the online documentation for Flash.
</description>
<pubDate>Mon, 29 Jan 2007 15:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode1.mp3" length="15099067" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode1.mp3</guid>
<itunes:duration>15:33</itunes:duration>
</item>

<item>
<title>Episode 2: Events and Event Handlers</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode2.mp3</link>
<description>Episode 2 introduces the concept of event-driven interactions in Flash. What are events? What types of events are there? How do you trigger reactions to them with ActionScript? All these will be discussed and more.</description>
<pubDate>Mon, 29 Jan 2007 16:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode2.mp3" length="17891277" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode2.mp3</guid>
<itunes:duration>18:24</itunes:duration>
</item>

<item>
<title>Episode 3: Fundamental Actionscript Syntax</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode3.mp3</link>
<description>Episode 3 discusses some of the more important aspects of writing ActionScript. Topics include: naming instances, formatting statements, and the built-in utilities for checking your code for errors.</description>
<pubDate>Thu, 01 Feb 2007 17:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode3.mp3" length="22750067" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode3.mp3</guid>
<itunes:duration>23:42</itunes:duration>
</item>

<item>
<title>Episode 4: When Textbook Examples go Terribly Wrong</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode4.mp3</link>
<description>Episode 4 deciphers one of the first 'serious" code examples in the texbook. Chapter 4, page 77 features 12 lines of ActionScript that is designed to show how to use Boolean data types.</description>
<pubDate>Fri, 02 Feb 2007 00:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode4.mp3" length="13004477" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode4.mp3</guid>
<itunes:duration>13:33</itunes:duration>
</item>

<item>
<title>Episode 5: Meet your new friend, the variable</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode5.mp3</link>
<description>Episode 5 introduces you to variables. You'll learn how to declare, initialize, set, and change a variable. The slightly more complex aspects of variables are also introduced: you'll hear about strict typing your variables, and the scope of variables.</description>
<pubDate>Sun, 04 Feb 2007 23:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode5.mp3" length="20967854" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode5.mp3</guid>
<itunes:duration>21:50</itunes:duration>
</item>

<item>
<title>Episode 6: Objects, classes and a cheesy metaphor</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode6.mp3</link>
<description>Episode 6 introduces a "big picture" concept: objects and classes, the pre-defined elements that swirl around the Flash universe, and the system by which they are organized. Key topics in this episode include: a discussion of methods and properties, a discussion about the power and glory of movieclips, the notion of instantiatiion; and inheritance.</description>
<pubDate>Wed, 07 Feb 2007 23:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode6.mp3" length="14902853" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode6.mp3</guid>
<itunes:duration>15:31</itunes:duration>
</item>

<item>
<title>Episode 7: Passing parameters to functions and hold the mayo!</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode7.mp3</link>
<description>Episode 7 talks about how and why we pass a parameter to a function or a method. Some functions just need a little extra direction before they can do their job just like you and I need to know exactly what we're hungry for when we go to make a sandwich.</description>
<pubDate>Fri, 09 Feb 2007 22:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode7.mp3" length="8110180" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode7.mp3</guid>
<itunes:duration>8:26</itunes:duration>
</item>

<item>
<title>Episode 8: if(you don't know conditionals)then listen to this</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode8.mp3</link>
<description>Episode 8: conditional statements are vital to any programming language. This podcast introduces you to "if" statements in ActionScript and their more versatile counterpart, the "switch".</description>
<pubDate>Thu, 15 Feb 2007 23:00:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode8.mp3" length="9365729" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode8.mp3</guid>
<itunes:duration>9:45</itunes:duration>
</item>

<item>
<title>Episode 9: Loops and loops and loops and loops and...</title>
<itunes:author>Michael Geraci</itunes:author>
<link>http://boxercast.pacificu.edu/as/cs/cs205_episode9.mp3</link>
<description>Episode 9: Loops are a very powerful aspect of any programming language, they allow you to perform a series of actions quickly and efficiently. in this episode, we'll talk about all the different types of loops in ActionScript, with special emphais on the "for" loop.</description>
<pubDate>Mon, 2 Apr 2007 01:40:00 -0800</pubDate>
<enclosure url="http://boxercast.pacificu.edu/as/cs/cs205_episode9.mp3" length="11845063" type="audio/mpeg" />
<guid>http://boxercast.pacificu.edu/as/cs/cs205_episode9.mp3</guid>
<itunes:duration>12:20</itunes:duration>
</item>



</channel>
</rss>