adobe air podcatcher

15
Adobe Air PodCatcher Adobe Air PodCatcher CIS 764 Neil Crose

Upload: donat

Post on 22-Jan-2016

33 views

Category:

Documents


0 download

DESCRIPTION

Adobe Air PodCatcher. CIS 764 Neil Crose. Prerequisites for Developing in Air. Flash CS3 or CS4 or Flex Software Development Kit (SDK) Coding ability in HTML and JavaScript Adobe Air SDK for other visual development tools (http://www.adobe.com/support/flash/downloads.html). - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Adobe Air PodCatcher

Adobe Air PodCatcherAdobe Air PodCatcherCIS 764Neil Crose

Page 2: Adobe Air PodCatcher

Prerequisites for Developing Prerequisites for Developing in Airin AirFlash CS3 or CS4 or Flex

Software Development Kit (SDK)Coding ability in HTML and

JavaScriptAdobe Air SDK for other visual

development tools (http://www.adobe.com/support/flash/downloads.html)

Page 3: Adobe Air PodCatcher

http://get.adobe.com/air/

First you need to install Adobe Air Run Time Environment onto your workstation.

Preparing your Machine for Preparing your Machine for Developing in Air Developing in Air

Page 4: Adobe Air PodCatcher

Open Adobe Flash

Create a new Flash File (ActionScript 3.0)

Preparing your Machine for Preparing your Machine for Developing in Air (cont.)Developing in Air (cont.)

Page 5: Adobe Air PodCatcher

The ArchitectureThe Architecture Classes

◦ PodcastPlayer Main Application Class

◦ RSSBase Main Class for RSS Feeds

◦ RSSChannel Main class that separates the RSS items

◦ RSSItem Main class that represents the RSS feed items

◦ SoundFacade Class that plays the RSS feed items

◦ SoundPlayer Controler for the RSS Feed item

Page 6: Adobe Air PodCatcher

UML ChartUML Chart

Page 7: Adobe Air PodCatcher

Display of the Class CodeDisplay of the Class Code

Page 8: Adobe Air PodCatcher

Command > Air – Publish Public

Screen for creating a self signed digital certificate

Command > Air – Application & Installer Settings

Creating the Self Signed Creating the Self Signed CertificateCertificate

Page 9: Adobe Air PodCatcher

Put in the password that you entered in for the certificate

Creating the Self Signed Creating the Self Signed Certificate (cont.)Certificate (cont.)

Select the box that says “Remember password for session”

Page 10: Adobe Air PodCatcher

Creating the Feed XMLCreating the Feed XMLXML works as a flat text data

storage file

The purpose of the XML file is to point our application to the RSS feeds that we would like to consume.

Page 11: Adobe Air PodCatcher

<?xml version='1.0' standalone='yes' ?><config> <feed> <label>Starbucks Coffee</label> <url>http://www.starbucks.com/rss/generateRss.asp?channelId=1</url> </feed>

<feed> <label>Adobe Creative Suite Developer Podcast</label>

<url>http://rss.adobe.com/www/special/mnr_index.rss</url> </feed> <feed>

<label>The Onion</label> <url>http://feeds.theonion.com/theonion/radionews</url> </feed> <feed>

<label>Soccer Talk USA</label> <url>http://www.soccertalkusa.com/soccertalkusa.xml</url> </feed>

<feed> <label>Diggnation</label>

<url>http://feeds.feedburner.com/diggnation</url> </feed>

<feed> <label>The Office Alliance Podcast</label>

<url>http://feeds.feedburner.com/TheOfficeAlliancePodcast</url> </feed>

</config>

Podcast Feed XML FilePodcast Feed XML File

Page 12: Adobe Air PodCatcher

Add the XML to the Publish Add the XML to the Publish SettingsSettings

Commands > Air - Application and Installer Settings

Look under Included files and click the Add (+) button

Browse to the location where you saved the XML file

Page 13: Adobe Air PodCatcher

The Compiled ApplicationThe Compiled Application

Page 14: Adobe Air PodCatcher

Installing the ApplicationInstalling the Application

a.

b.

c.

Page 15: Adobe Air PodCatcher

The Completed ProductThe Completed Product