<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-406584318390919353</id><updated>2011-07-08T02:31:17.621-07:00</updated><category term='powerpoint'/><category term='web usability'/><category term='flash'/><category term='xml'/><category term='scorm'/><category term='tools'/><category term='cloud computing'/><category term='coldfusion'/><category term='law'/><category term='flex component'/><category term='book recommendations'/><category term='effectiveness'/><category term='degrafa'/><category term='visual aids'/><category term='xslt'/><category term='adobe'/><category term='backups'/><category term='creative commons'/><category term='links'/><category term='public speaking'/><category term='leadership'/><category term='elearning'/><category term='copyright'/><category term='pedagogy'/><category term='iphone'/><category term='data visualization'/><category term='evaluation'/><category term='agile'/><category term='reusability'/><category term='mac'/><category term='intellectual property'/><category term='research methodology'/><category term='video'/><category term='instruction design'/><category term='interactivity'/><category term='version control'/><category term='productivity'/><category term='learning objects'/><category term='actionscript'/><category term='online surveys'/><category term='problem-based learning'/><category term='utilities'/><category term='web design'/><category term='response bias'/><category term='engagement'/><category term='presentations'/><title type='text'>Interactive Learning Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>22</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-1743433056569275756</id><published>2009-11-18T16:18:00.000-08:00</published><updated>2009-11-18T16:19:17.594-08:00</updated><title type='text'>New Blog Web Address</title><content type='html'>This blog has moved to &lt;a href="http://interactivelearning.mattstoner.net"&gt;interactivelearning.mattstoner.net&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-1743433056569275756?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/1743433056569275756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/11/new-blog-web-address.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1743433056569275756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1743433056569275756'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/11/new-blog-web-address.html' title='New Blog Web Address'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-4898938183118597794</id><published>2009-07-08T18:51:00.000-07:00</published><updated>2009-07-08T20:43:08.573-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='reusability'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='actionscript'/><category scheme='http://www.blogger.com/atom/ns#' term='xslt'/><title type='text'>Flash, XSLT, and show-hide controls</title><content type='html'>&lt;p&gt;A recent project I worked on involved creating a flash-based display of related information with a more usable interface. Previously the content was displayed in tables with javascript and css divs. There are both advantages and disadvantages to using the javascript method. Advances with ajax and css have greatly improved functionality since the time of the initial implementation of using showhides to present the learning content. When presented with the request, I came up with the following sketch in my instructional design idea book.&lt;/p&gt;

&lt;p align="center"&gt;&lt;img src="http://mattstoner.net/project_samples/showhide/sketch.jpg" /&gt;&lt;/p&gt;

&lt;p&gt;As I've previously blogged about &lt;a href="http://highered-interactivelearning.blogspot.com/2009/06/building-engagement-with-re-usability.html" target="_blank"&gt;re-usability&lt;/a&gt;, the first step I took was consideration of how this display object could created for that purpose. I settled on a pretty simple XML structure. This structure is not at all content dependent. &lt;/p&gt;

&lt;pre class="brush: xml"&gt;
&lt;node id="Foo"&gt;
 &lt;nodeTitle&gt;Foo for you&lt;/nodeTitle&gt;
 &lt;image&gt;foo.jpg&lt;/image&gt;
 &lt;text&gt;all you wanted to know about foo&lt;/text&gt;
&lt;/node&gt;
&lt;/pre&gt;

&lt;p&gt;One of disadvantages of displaying content in flash is how to allow users to print that information. The javascript/css showhide didn't have this limitation because a simple function could reveal all the CSS divs when printed. In order to overcome this limitation I turned to Extensible Stylesheet Language Transformations (XSLT) since my content was already written in XML. I know I could have approach this problem on the server side, but this client will be switching application servers and it didn't make sense.&lt;/p&gt;

&lt;p&gt; XSLT is an XML-based language used for the transformation of XML documents into other XML or "human-readable" documents (&lt;a ihref="http://en.wikipedia.org/wiki/XLST"  target="_blank"&gt;more info at wikipedia entry&lt;/a&gt;). XSL files are included at the top of an XML file and allow all newer browsers to render the XML in HTML/XHTML format. All major browsers support XSLT, see &lt;a  href="http://www.w3schools.com/Xsl/xsl_browsers.asp"  target="_blank"&gt;list here&lt;/a&gt;. Knowledge of XPath is required to traverse the XML structure and output the content desired.&lt;/p&gt;

&lt;h3&gt;Useful tutorials&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.w3schools.com/Xsl/default.asp" target="_blank"&gt;w3 school tutorial on XSLT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.w3schools.com/XPath/default.asp"target="_blank"&gt;w3 school tutorial on XPath&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Since I already load the XML into the flash project at runtime, I had the path to the XML file available to place on a button on the flash stage.&lt;/p&gt;


&lt;pre class="brush: as3"&gt;
 public function initApp():void
 {

 var thisXML:String = Application.application.parameters.thisXML;

  var loader:URLLoader = new URLLoader(new URLRequest(thisXML));
  loader.addEventListener(Event.COMPLETE, loadNewXML);

 }

 public function loadNewXML(event:Event):void
        {
     
         loadedXML = new XML(event.target.data);
      
        }

&lt;/pre&gt;

&lt;p&gt;In this post I am not going to go into details about the actual actionscript code which generates this swf and instead focus on the XSL commands used to generate the HTML appear content from the button. You can see an example of the project below. To quickly replace the actual content used in this project, I grabbed some state flag images off google and text descriptions from wikipedia..&lt;/p&gt;

&lt;iframe src="http://mattstoner.net/project_samples/showhide/index.html" width="575" height="460" scrolling="no"&gt;&lt;/iframe&gt;

&lt;p&gt;The actual XSL file is relatively simple and easy to read. I'm basically looping thru the XML nodes with an xsl:for-each select="data/node" tag. Then within the for-each block, I output the title, the image, and text associated with that node. For the text based output I used the xsl:value-of tag. For the image, I used the xsl:variable tag so I could embedded the variable within an img src tag.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;N.B.&lt;/b&gt; the html and body tag had to be removed to post on blogger. Also the node "title" had to be renamed nodeTitle.&lt;/p&gt;

&lt;pre class="brush: xml"&gt;
&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;

&lt;xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt;

&lt;xsl:template match="/"&gt;

&lt;h1&gt;Samples XSLT of States&lt;/h1&gt;


    &lt;xsl:for-each select="data/node"&gt;
    
      &lt;h3&gt;&lt;xsl:value-of select="nodeTitle"/&gt;&lt;/h3&gt;
    
       &lt;p&gt;
   &lt;xsl:variable name="image" select="image"/&gt;  
     &lt;img src="http://mattstoner.net{thisImage}" align="left" width="100" height="73" /&gt;  
    &lt;xsl:value-of select="text"/&gt;&lt;/p&gt;
    &lt;br clear="all" /&gt;
    &lt;hr /&gt;
    &lt;/xsl:for-each&gt;
&lt;/xsl:template&gt;

&lt;/xsl:stylesheet&gt;
&lt;/pre&gt;

&lt;h3&gt;In conclusion&lt;/h3&gt;
&lt;p&gt;So XSLT was extremely useful to generate a printable/human readable rendering of the XML that was used in the flash generated display object. The SWF is re-usable and only needs a different XML file to be used on another web page with different content.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-4898938183118597794?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/4898938183118597794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/flash-xslt-and-show-hide-controls.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/4898938183118597794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/4898938183118597794'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/flash-xslt-and-show-hide-controls.html' title='Flash, XSLT, and show-hide controls'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-4394502034357682492</id><published>2009-07-05T08:27:00.000-07:00</published><updated>2009-07-05T08:42:03.661-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web design'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Links week of July 5th</title><content type='html'>&lt;p&gt;Here are some links that caught my attention in the last week.&lt;/p&gt;

&lt;h3&gt;E-Learning&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://cipher-quaker.blogspot.com/2009/07/agile-elearning-design-manual-of.html" target="_blank"&gt;E learning project management&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.upsidelearning.com/blog/2009/06/24/top-100-learning-game-resources/" target="_blank"&gt;Top 100 Learning Game Resources&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.insidehighered.com/news/2009/06/29/online" target="_blank"&gt;The Evidence on Online Education&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.kineo.com/elearning-reports/in-house-e-learning-skills-guide.html" target="_blank"&gt;In-house el-learning skills guide (Kineo)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/ADDIE_Model" target="_blank"&gt;ADDIE Model (wikipedia)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://jolt.merlot.org/index.html" target="_blank"&gt;Journal of Online Learning &amp; Teaching (JOLT)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;Web Dev/Design&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://sixrevisions.com/web_design/10-things-every-web-designer-just-starting-out-should-know/" target="_blank"&gt;10 Things Every Web Designer Just Starting Out Should Know&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://net.tutsplus.com/articles/web-roundups/30-exceptional-web-designs-for-the-web/" target="_blank"&gt;30 Exceptional Web Designs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.smashingmagazine.com/2009/06/29/45-incredibly-useful-web-design-checklists-and-questionnaires/" target="_blank"&gt;45 Incredibly Useful Web Design Checklists and Questionnaires &lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-4394502034357682492?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/4394502034357682492/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/links-week-of-july-5th.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/4394502034357682492'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/4394502034357682492'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/links-week-of-july-5th.html' title='Links week of July 5th'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-6044878234144225296</id><published>2009-07-02T20:57:00.000-07:00</published><updated>2009-07-05T08:42:45.331-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tools'/><category scheme='http://www.blogger.com/atom/ns#' term='productivity'/><category scheme='http://www.blogger.com/atom/ns#' term='utilities'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='cloud computing'/><category scheme='http://www.blogger.com/atom/ns#' term='iphone'/><category scheme='http://www.blogger.com/atom/ns#' term='backups'/><title type='text'>My tool box</title><content type='html'>&lt;p&gt;Computer failures are never fun and mine today brought to mind how much I am thankful for certain applications and cloud computing. So I thought I would share what's in my tool box.&lt;/p&gt;

&lt;h3&gt;Productivity&lt;/h3&gt;

&lt;p&gt;&lt;img src="http://www.evernote.com/about/img/logo.gif"&gt;&lt;br /&gt;This program helps you organize and share your notes. The genius of the application is that it works on the web, macs, pcs, and mobile devices. You can store text, PDFs, snapshots, etc.  I've used it in meetings to bring my notes on the agenda as well as snapping a picture of the whiteboard at the end of the discussion. I used to carry spiral notebooks for different projects I was working on, but now with evernote I can make a specific notebook for a project and the notes are always available to me. I still have a sketch book for instructional design ideas, but I either scan my drawings or snap a photo with the iphone. Another amazing feature of evernote is that it can do character recognition on photos/images. My handwriting isn't the best and it has done a great job recognizing words. The Evernote Web Clipper also is handy to store information for later review from webpages. Learn more at &lt;a href="http://www.evernote.com" target="_blank"&gt;www.evernote.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="https://calendar.google.com/googlecalendar/images/calendar_logo_sm_en.gif"&gt; &lt;br /&gt; I've used quite a few personal information managers over the last 20 years.  Until I started using gCal all my data was stored locally. I remember getting my first 3Com PDA in 1996 (that would rather become Palm) and being able to sync. But it was still far from ideal and if you were away from the computer and your PDA, you were out of luck. With google supporting CalDav, I can sync my calendars between multiple computers and add events from the web, my iphone or iCal. When I'm on the go, if something gets added to a calendar (say at work), it will get pushed to my iphone. It's like Microsoft Exchange for the little guy. &lt;a href="http://www.google.com/calendar" target="_blank"&gt;www.google.com/calendar/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://static.rememberthemilk.com/img/logo.png"&gt;&lt;br /&gt; I've been a pro user for Remember the Milk (RTM) for nearly a year. While google has come out with its Tasks, I don't intend to switch anytime soon.  RTM is a really powerful todo manager. You can manage multiple lists, share lists with contacts, receive text message reminders, and more. RTM has a really great iphone application and now with the recent upgrade push notifications. Third-party developers have created a bunch of add-ons to RTM to make viewing and adding todos very easy (&lt;a href="http://www.rememberthemilk.com/services/" target="_blank"&gt;link&lt;/a&gt;). I use the QuickSilver plugin to add todos without even having to go to the RTM website. I also really like the being able to forward emails I receive to RTM and even assign the task to a specific list and given due date. &lt;a href="http://www. rememberthemilk.com" target="_blank"&gt;www. rememberthemilk.com&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;Utilities&lt;/h3&gt;

&lt;p&gt;&lt;b&gt;Carbon Copy Cloner&lt;/b&gt;: This MacOS program makes a bootable backup of my hard drive. I do use Apple Time Machine as well, but the redundancy gives me piece of mind. Both are backed up to an external &lt;a href="http://www.drobo.com" target="_blank"&gt;Drobo drive&lt;/a&gt;, that currently is 2 gigs. The Drobo is RAID-like so there is redundancy there as well.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;TextWrangler&lt;/b&gt;: I used BBEdit for many years and TextWrangler is everything I need in a text editor. It is great for coding and cleaning up text files. It is always on the top of my list to install on a new computer.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Growl.png/120px-Growl.png"&gt;&lt;b&gt;Growl&lt;/b&gt;: Growl is a notification manager for Mac. Several of the applications I use have Growl notifications support. Growl pops up alert messages when I get a new email, iTunes starts playing a new track, a download is completed, etc. It's very handy.  &lt;a href="http://www. growl.info" target="_blank"&gt;www. growl.info&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;Development&lt;/h3&gt;

&lt;p&gt;&lt;b&gt;Navicat MySQL&lt;/b&gt;:  MySQL is my primary database of choice for projects and Navicat offers a nice GUI to view/edit tables. The PC version has more options than the Mac, but it is a very strong database development tool. &lt;a href="http://navicat.com/en/products/navicat_mysql/mysql_overview.html" target="_blank"&gt;navicat.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;img src="http://subversion.tigris.org/images/subversion_logo_hor-468x64.png"&gt;&lt;br /&gt; All my coding projects are backed up to a subversion server. In the past, I've also used hosts such as spring loops and assembla. If you are developing any type of elearning, you really should be incorporating version control into your development process. I have slide deck from a talk I gave on the topic available &lt;a href="http://highered-interactivelearning.blogspot.com/2009/06/version-control.html" target="_blank"&gt;here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Flex Builder built on Eclipse&lt;/b&gt;: While I could have installed the flex plug-in into standard &lt;a href="http://www.eclipse.org" target="_blank"&gt;Eclipse&lt;/a&gt;, I instead modified my Flex Builder with several plugins/frameworks. My installation includes plug-ins for:

&lt;ul&gt;
    &lt;li&gt;&lt;a href="http://www.eclipseplugincentral.com/Web_Links-index-req-viewlink-cid-611.html" target="_blank"&gt;Subversion&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.cfeclipse.org/" target="_blank"&gt;Cold Fusion&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;XML development&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://www.eclipseplugincentral.com/Web_Links-index-req-viewlink-cid-587.html" target="_blank"&gt;Myln/Trac&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;b&gt;Adobe CS4&lt;/b&gt;: I recently updated from the dark ages (ie before Adobe called their web/image programs CS 1,2,3). I used dreamweaver primarily, but I'm in code view most of the time. When I have a need for graphics I will use Fireworks and after eons of not having photoshop I'm starting to use it again. CS4 has subversion built right into it, which is quite convenient &lt;a href="http://www.adobe.com" target="_blank"&gt;adobe.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Audacity&lt;/b&gt;: This is a great tool for editing and recording audio. It's open source/free. I've used it primarily when creating podcasts and it works great. &lt;a href="http://audacity.sourceforge.net/" target="_blank"&gt;download link&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Cyberduck&lt;/b&gt;: This is mac file transfer client that supports multiple protocols. I use SFTP quite a bit and its bookmarking feature makes it so easy to get where I need to go. &lt;a href="http://cyberduck.ch/" target="_blank"&gt;download link&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;So what is in your toolbox? Leave a comment and share.&lt;/h3&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-6044878234144225296?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/6044878234144225296/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/my-tool-box.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/6044878234144225296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/6044878234144225296'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/my-tool-box.html' title='My tool box'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-1868703459457804996</id><published>2009-07-01T03:18:00.000-07:00</published><updated>2009-07-05T08:42:56.521-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='interactivity'/><category scheme='http://www.blogger.com/atom/ns#' term='pedagogy'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='problem-based learning'/><title type='text'>Developing Interactive Case Studies, Part 1</title><content type='html'>&lt;h3&gt;Advancing acquisition and demonstration of medicine competencies&lt;/h3&gt;
&lt;p&gt;This post is the first in a series on interactive case learning. I will review the rationale for development; my experiences with developing the model into reality; working with faculty/SME to develop cases; and lessons learned. My posts will be in the context of medical training, but the knowledge translates to other subject areas.&lt;/p&gt;
&lt;p style="margin-left: 1in; text-indent: -1in"&gt;  &lt;b&gt;Dilemma&lt;/b&gt;  : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; How do you educate med students and MDs about core competencies in medicine at a distance and then assess them without clinical practicum?&lt;/p&gt;&lt;p style="margin-left: 1in; text-indent: -1in"&gt;  &lt;b&gt;Thesis&lt;/b&gt;  : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; These posts will demonstrate that it is indeed possible to educate adult learners in the acquisitions of new knowledge, skills and competencies similar to in-person training but with an online curriculum. The ICS model is argued to be a vehicle for additional acquisition and synthesis new knowledge and skills, as well as an analytically tool for measuring core competencies.  &lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Definitions&lt;/span&gt;:&lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;b&gt;Interactive Case Studies (ICS)&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;ICS are iterative, dynamic clinical cases built on the principles of problem-based learning (PBL).&lt;/p&gt;&lt;p&gt;&lt;i&gt;&lt;b&gt;Core Competencies&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&lt;ul&gt;  &lt;li&gt;Being able to access high-quality, high-value information
  &lt;/li&gt;&lt;li&gt;Being able to think critically
  &lt;/li&gt;&lt;li&gt;Being able to advise patients intelligently
  &lt;/li&gt;&lt;li&gt;Being able to communicate effectively with patients and peers
  &lt;/li&gt;&lt;li&gt;Being able to listen, understand, guide, and comfort patients
  &lt;/li&gt;&lt;li&gt;Being able to facilitate change, when needed
  &lt;/li&gt;&lt;li&gt;Being respectful to humans' needs and experiences &lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;i&gt;&lt;b&gt;Learning Object&lt;/b&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;A structured, standalone resource that encapsulates high quality information in a manner that facilitates learning and pedagogy.&lt;/p&gt;

&lt;h3&gt;Rationale&lt;/h3&gt;
&lt;p&gt;  The ICS Model was developed specifically to (1) meet a need for a more interactive and engaging learning object, and (2) aid in the presentation of the curriculum.&lt;/p&gt;&lt;p&gt;  ICS are iterative, dynamic clinical cases built on the principles of
problem-based learning (PBL). The design of the ICS is adapted from a
design established in the field of organizational management (Moberg
&amp;amp; Caldwell, 1989). PBL facilitates not only the acquisition of
new knowledge and skills through   &lt;i&gt;&lt;b&gt;active&lt;/b&gt;&lt;/i&gt;
engagement of the learner, but also provides for evaluation of the
demonstration of knowledge, skills, and competencies through
real-world interactive situations. ICS’s present video-snippets of
typical physician-patient interactions and allow the learner to
practice and demonstrate clinical counseling skills and integrate
knowledge from the full curriculum. The ICS model is not solely a
model of multiple choice testing, though multiple choice options are
a primary mechanism for navigation in the decision tree. Instead, the
learner is prompted at various points for qualitative responses and
encouraged to reflect on their clinical reasoning which has lead them
to a particular point in the case.&lt;/p&gt;&lt;p&gt;In a case, the learner is presented with multiple options of course of action in
communicating with the patient. The cases can be produced with
specific learning/assessment goals (e.g. patient centered
communication, advising on referral,  intake, etc). Through
the programming, assessment feedback is provided to the learner.  Some particular cases can be presented solely for
the purpose of synthesis and practice of clinical knowledge and
skills, while others can be presented in terms of evaluation. &lt;/p&gt;&lt;h3&gt;The initial presentation&lt;/h3&gt;&lt;div&gt;
&lt;/div&gt;&lt;div&gt;&lt;p&gt;I first presented this learning model in 2002, although it was not developed for some time due to resources and other issues. Below is my slide deck from that initial presentation.&lt;/p&gt;&lt;/div&gt;&lt;div&gt;
&lt;/div&gt;&lt;div&gt;&lt;iframe width="560" height="430" src="http://mattstoner.net/presentations/ics/ICS.html"&gt;&lt;/iframe&gt;&lt;/div&gt;

&lt;p&gt;&lt;b&gt;&lt;i&gt;Next Post&lt;/i&gt;&lt;/b&gt;: My next post will focus on taking this initial instructional design and getting buy-in to develop the model.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-1868703459457804996?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/1868703459457804996/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/advancing-acquisition-and-demonstration.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1868703459457804996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1868703459457804996'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/07/advancing-acquisition-and-demonstration.html' title='Developing Interactive Case Studies, Part 1'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3379847818639638863</id><published>2009-06-28T20:29:00.000-07:00</published><updated>2009-07-05T08:43:15.092-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web design'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Links week of June 28</title><content type='html'>&lt;p&gt;Just some links that caught my attention this week.&lt;/p&gt;

&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;
General Web Design&lt;/span&gt;&lt;/b&gt;

&lt;Ul&gt;
&lt;li&gt;&lt;a href="http://sixrevisions.com/resources/10-unusual-places-to-get-design-inspiration/" target="_blank"&gt;10 unusual places to get design inspiration&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.articulate.com/rapid-elearning/5-common-visual-design-mistakes/" target="_blank"&gt;5 common Visual Design Mistakes&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.smashingmagazine.com/2009/06/25/35-css-lifesavers-for-efficient-web-design" target="_blank"&gt; 35 CSS-Lifesavers For Efficient Web Design&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.smashingapps.com/2009/06/21/23-colorful-and-inspiring-web-designs-where-textures-are-in-full-action.html" target="_blank"&gt;23 Colorful And Inspiring Web Designs Where Textures Are In Full Action &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://765.blogspot.com/2009/06/how-to-start-design-conversation.html" target="_blank"&gt;How to start a design conversation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;
ELearning&lt;/span&gt;&lt;/b&gt;

&lt;Ul&gt;
&lt;li&gt;&lt;a href="http://theelearningcoach.com/getting_started/two-types-of-learning-objectives-part-i/" target="_blank"&gt;Writing learning objectives&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.techworld.com.au/article/223565/10_open_source_e-learning_projects_watch?pp=1" target="_blank"&gt;10 open source elearning projects to watch&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://cipher-quaker.blogspot.com/2009/06/agile-elearning-design-manual.html" target="_blank"&gt;Agile E-learning Manual: Iterations&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3379847818639638863?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3379847818639638863/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-week-of-june-28.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3379847818639638863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3379847818639638863'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-week-of-june-28.html' title='Links week of June 28'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3765907246772439562</id><published>2009-06-27T19:43:00.000-07:00</published><updated>2009-06-27T20:23:49.318-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='coldfusion'/><category scheme='http://www.blogger.com/atom/ns#' term='flex component'/><category scheme='http://www.blogger.com/atom/ns#' term='copyright'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='actionscript'/><category scheme='http://www.blogger.com/atom/ns#' term='intellectual property'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><title type='text'>Building a flash video player</title><content type='html'>&lt;p&gt;Before I get into the technical details, I wanted to present some reasons why you may want to make your own customized/skinned flash video player instead of using &lt;a href="http://youtube.com"&gt;YouTube&lt;/a&gt;, &lt;a href="http://www.apple.com/iTunes/"&gt;iTunes podcast&lt;/a&gt; or some other tool. In no particular order, you may need to build a custom player, if &lt;/p&gt;

&lt;ul&gt;
    &lt;li&gt;custom branding of the user interface&lt;/li&gt;
    &lt;li&gt;protecting video content from unauthorized distribution and copying&lt;/li&gt;
    &lt;li&gt;copyright issues&lt;/li&gt;
     &lt;li&gt;customization with other flash feature in a project&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The flash &lt;a href="http://livedocs.adobe.com/flex/3/langref/mx/controls/VideoDisplay.html" target="_blank"&gt;videoPlayer class&lt;/a&gt; is not without its quirks, especially in Flex3/Actionscript 3. There are some changes in the beta for Flex 4 (now renamed &lt;a href="http://labs.adobe.com/technologies/flashbuilder4/" target="_blank"&gt;Flash Builder&lt;/a&gt;) to make creating a custom video player easier. I'm going to go over creating a single and multi-clip video player in actionscript using three different ways to get the data to the video player.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://mattstoner.net/tutorials/video/video_approaches.jpg"&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Method 1&lt;/b&gt;:&lt;/p&gt; With the static method you embedded the video clip/s in the player and compile the project into a SWF to be placed on your website. This protects the video files from being accessible to others, but the downside is you must compile a new SWF every time you want to display video on your website.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Method 2&lt;/b&gt;:&lt;/p&gt; With this dynamic method, the video player is passed some information on which clips to display and then queries a database to get information on the track/s titles, duration, and file path. This method requires a web service to be executed on a local or remote server which will return the query. Depending on your web environment, this option may not be available to you. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;Method 3&lt;/b&gt;:&lt;/p&gt; With this dynamic method, the video player is passed a file path to an XML file with information on the track/s title, duration, and file path. This information could be formatted in the exact same manner as a query would be returned by the web service. In fact, most web services return data in the XML format. Since the XML document is authored and dynamically acquired by the video player, you can reuse the video player by just pointing it to load a different XML file at run time.&lt;/p&gt;

&lt;p&gt;I've used both method 2 and 3 for projects. If you catalog and store meta-data about your video assets in a database and have a web application server (Cold Fusion, PHP, etc), I think its the best option. If you do not, I would recommend method 3 and statically writing an XML file. I strongly discourage method 1.&lt;/p&gt;

&lt;h3&gt;Building the code&lt;/h3&gt;

&lt;p&gt; I build my projects in Flex Builder 3 and depending on the task choose to use either Actionscript 3 or MXML or a combination of both. In this section, I will discuss implementing both method 2 and 3. In each case, the first step is the same. Upon the application being created is for a function to be executed to load the dynamic data. In my projects I call this function with the CreationComplete attribute on the &amp;lt;mx:Application tag&amp;gt; and for consistency sake, I normally call this function initApp.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Example for method 3 (dynamic XML)&lt;/b&gt;&lt;/p&gt;

&lt;pre class="brush: as3"&gt;
 public function initApp():void
 {

 var thisXML:String = Application.application.parameters.thisXML;

  var loader:URLLoader = new URLLoader(new URLRequest(thisXML));
  loader.addEventListener(Event.COMPLETE, loadNewXML);

 }

 public function loadNewXML(event:Event):void
        {
     
         loadedXML = new XML(event.target.data);
      
        }

&lt;/pre&gt;

&lt;p&gt; In this implementation, the XML file is passed to the Flash SWF by FlashVars. For more information on using Flash Vars, read this &lt;a href="http://livedocs.adobe.com/flex/3/html/help.html?content=passingarguments_3.html" target="_blank"&gt;adobe technical note&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Example for method 2 (Media Database)&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;In MXML, you can setup the web service with the RemoteObject tag by defining the which web service to call and  functions to handle the result and fault event. Then in my InitApp function, I actually make the call to execute the Remote Object.&lt;/p&gt;



&lt;pre class="brush: as3"&gt;
&lt;mx:RemoteObject id="getClips" source="getMedia" destination="ColdFusion" result="processClips()" /&gt;

public function initApp():void
 {

        //list of video clip IDs passed into the SWF via Flash Vars on the html code block to load the SWF
  theseClip = Application.application.parameters.videoIDs;
   
       //executes the web service
 getClip.VideoClip(theseClip);
      
        }

&lt;/pre&gt;

&lt;p&gt; In this implementation, the videoIDs are the IDs from the media database and they are passed to the Flash SWF by FlashVars. Depending on your database schema, you can return whatever columns you want, but at a minimum you would want track title, duration, and file path. For both method 2 and 3, I have formed the XML the same way.&lt;/p&gt;

&lt;pre class="brush: xml"&gt;

&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
&lt;data&gt;
 &lt;clips&gt;
  &lt;clip&gt;
   &lt;clip_title&gt;Clinical Pearl: Screening for Prostate Cancer&lt;/clip_title &gt;
   &lt;path&gt;http://localhost/Screening_Randy.m4v&lt;/path&gt;
   &lt;duration&gt;2:47&lt;/duration&gt;
  &lt;/clip&gt;
          &lt;clip&gt;
   &lt; clip_title &gt;Clinical Pearl: Screening for Breast Cancer&lt;/clip_title &gt;
   &lt;path&gt;http://localhost/Screening_Victoria.m4v&lt;/path&gt;
   &lt;duration&gt;3:25&lt;/duration&gt;
  &lt;/clip&gt;
 &lt;/clips&gt;
&lt;/data&gt;

&lt;/pre&gt;

&lt;p&gt;Instead of creating a multi clip and single clip video player, I let the programming determine how many clips exist in the XML.

&lt;pre class="brush: as3"&gt;
 private function processClips():void {
 
       thisResult= getClip.VideoClip.lastResult;
    
 if(thisResult.length &gt; 1) {
   multiClip();
 } else {
     
  singleClip();
 }
  
    
}

&lt;/pre&gt;


&lt;p&gt;Depending on how many clips are return, I resize the canvas and display the clip selector panel if there is more than one clip. Below are examples of each view and then I will explain the code. &lt;/p&gt;

&lt;p&gt;&lt;img src="http://mattstoner.net/tutorials/video/multiclip_player.jpg" /&gt;&lt;br /&gt;Multi-Clip View&lt;/p&gt;

&lt;p&gt;&lt;img src="http://mattstoner.net/tutorials/video/single_clip.jpg" /&gt;&lt;br /&gt;Single-Clip View&lt;/p&gt;

&lt;h3&gt;Rendering the Video Clip component&lt;/h3&gt;

&lt;p&gt;The processClips function execute either the singleClip or multiClip function depending on the number of clips contained in the XML. In the case of the single Clip function, it changes the visibility on the clipSelectionPanel and instantiates a custom video component. The same custom component is rendered with the multiclip view, but changes depending on what is selected in the clipSelectionPanel.

&lt;pre class="brush: as3"&gt;

 private function singleClip ():void {
   
    //hides the clipSelectorPanel
    clipSelectorPanel.visible = false;

    file_path = thisResult[0].file_path.toString();
    
    //removes placeholder image that displays before video is loaded
    vidScreen.removeAllChildren();
       
       //custom component
        var thisVid:customVideoComponent = new customVideoComponent;
            thisVid.data =   file_path;
         vidScreen.addChild(thisVid); 

 }

 private function multiClip ():void {
  clipSelectorPanel.visible = true;
      
               //expands the canvas size variables
  canvas_width = 535;
  canvas_height = 400;
 }

&lt;/pre&gt;

&lt;p&gt;In the case of a single clip, the function immediately loads the video and auto-plays the clip. For the multi-clip display, the clipSelectionPanel has a click handler. The clipSelection panel is an MXML list control with a custom itemRender.

&lt;pre class="brush: as3"&gt;
  &lt;mx:Panel  id="clipSelectionPanel" width="180" height="250"  horizontalScrollPolicy="off"  title="Video Clips"&gt;
    &lt;mx:List id="videoSelector" itemRenderer="com.vidClipRender" dataProvider="{thisResult}" 
    variableRowHeight="true" click="clickHandler();" borderStyle="none"  verticalScrollPolicy="on"/&gt;
  &lt;/mx:Panel&gt;
&lt;/pre&gt;

&lt;p&gt;When a user clicks on any item in the list, the following function is executed:&lt;/p&gt;

&lt;pre class="brush: as3"&gt;

   private function clickHandler():void {
        
       // stops any video if it is currently playing
       this.thisVid.stop();
      
       //clears any video player on the canvas and/or the placeholder graphic
       vidScreen.removeAllChildren();

    //file path of the selected clip
       var thisvidFile:String =  videoSelector.selectedItem.file_path.toString();

    //custom video component     
          var thisVid:customVideoComponent = new customVideoComponent;
        thisVid.data =   thisvidFile;
        vidScreen.addChild(thisVid); 

       } 
&lt;/pre&gt;

&lt;p&gt;In the code for the customVideoComponent I have an important event listener for when it is removed from the stage. This is because of a particular issue I discovered with the videoPlayer class when you remove them from the stage: &lt;/p&gt;

&lt;ul&gt;
   &lt;li&gt;while the video display disappears, the audio will continue to play&lt;/li&gt;
    &lt;li&gt;if a clip is not fully downloaded it will continue to download even if the user is viewing another clip&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To remedy this issue, I created the videoInterupt function.&lt;/p&gt;

&lt;pre class="brush: as3"&gt;
  private function vidInterupt(event:Event):void{
   
   
    if(event.currentTarget.thisVideoDisplay.state != "disconnected") {
     event.currentTarget.thisVideoDisplay.stop();
    }
   
    if(event.currentTarget.thisVideoDisplay.state != "disconnected") {
     event.currentTarget.thisVideoDisplay.close();
    }

         SoundMixer.stopAll();
    

   } 

&lt;/pre&gt;

&lt;h3&gt;UI Considerations&lt;/h3&gt;

&lt;p&gt;From the sample images above you'll notice that the video player displays a default image until a clip is selected/loaded rather than leave a void for the video display on the canvas. The image also serves to direct users to use the clip selection panel to choose a clip in the multi-clip state. The video controls are also displayed in the image but are dimmed out.&lt;/p&gt;

&lt;p&gt;In actionscript/mxml there is a lot of flexibility in designing the user interface.  Originally I used MXML buttons for the play/pause/stop functions, but later switched to the graphical icons you see in the sample images. The interface also has a load controller display, which is especially useful for users who may have a slow connection to know the video is loading. Most video players I see on the net follow youTube like conventions for the UI. Below is the code for the custom video component.&lt;/p&gt;

&lt;pre class="brush: as3"&gt;
&lt;?xml version="1.0" encoding="utf-8"?&gt;
&lt;mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml" width="325" height="352" creationComplete="initVideo()"&gt;

&lt;mx:Script&gt;
 
    import mx.events.FlexEvent;
    import flash.media.Video;
    import flash.media.SoundMixer;
    import flash.events.ProgressEvent;
    import mx.events.VideoEvent;
    import mx.controls.Image;
   
   [Bindable]
   public var thisVid:String;
   
      
   private function initVideo():void{
    
    //get source from event target
    
    thisVid = this.data.toString();
    
    thisVideoDisplay.addEventListener(Event.REMOVED_FROM_STAGE,vidInterupt);
     
    
   } 
   
   private function vidInterupt(event:Event):void {
    
                       if(event.currentTarget.thisVideoDisplay.state != "disconnected") {
                       event.currentTarget.thisVideoDisplay.stop();
                       }
   
                      if(event.currentTarget.thisVideoDisplay.state != "disconnected") {
                       event.currentTarget.thisVideoDisplay.close();
                      }

                      SoundMixer.stopAll();
    
   }
   
 
   private function showInfo(event:VideoEvent):void {
   trace('stateChange: ' + event.state + ' ' + event); var foo:Timer = new Timer(2000, 100); foo.addEventListener(TimerEvent.TIMER, timerComplete); foo.start(); 
   trace('Clip: ' +  thisVideoDisplay); } 
 
   private function timerComplete(event:TimerEvent):void {
   trace('timerComplete: ' + thisVideoDisplay.state + ' ' + event); } 
   
   private function Vidplay(event:MouseEvent):void{

        
      thisVideoDisplay.play();
       }
       
      private function Vidpause(event:MouseEvent):void{
        
      thisVideoDisplay.pause();
       }
       
      private function Vidstop(event:MouseEvent):void{
        
        
      thisVideoDisplay.stop();
       }
       
   private function formatPositionToolTip(value:int):String{
  
    
    var result:String = (value % 60).toString();
          if (result.length == 1){
              result = Math.floor(value / 60).toString() + ":0" + result;
          } else {
              result = Math.floor(value / 60).toString() + ":" + result;
          }
          return result;
   } 
   
 
&lt;/mx:Script&gt;


 &lt;mx:HBox id="vidScreen"&gt; 
   &lt;mx:VideoDisplay id="thisVideoDisplay" width="320" height="280" source="{thisVid}" /&gt;
  &lt;/mx:HBox&gt;
  &lt;mx:HBox width="313"&gt;
   &lt;mx:Label text="Loading Progress" fontWeight="bold"/&gt;
   &lt;mx:ProgressBar id="loadProgress" label="" mode="event" barColor="#00ff00" width="200"
   height="7" source="{thisVideoDisplay}" trackHeight="10" trackColors="[#ffffff, #e6eeee]" left="10" right="10" top="0"/&gt;

  &lt;/mx:HBox&gt;
    &lt;mx:HBox&gt;
  

 &lt;mx:Image source="Play Green Button.png" click="thisVideoDisplay.play();" /&gt;
 &lt;mx:Image source="Pause Green Button.png"  click="thisVideoDisplay.pause();" /&gt;
   &lt;mx:Image source="Stop Green Button.png" click="thisVideoDisplay.stop();" /&gt;
   &lt;mx:Label text="Clip Controller" fontWeight="bold"/&gt;
   &lt;mx:HSlider id="position" height="5"   
   dataTipFormatFunction="formatPositionToolTip"
   thumbPress="thisVideoDisplay.pause()" slideDuration="0"
   thumbRelease="thisVideoDisplay.play()"
   change="thisVideoDisplay.playheadTime = position.value"
   value="{thisVideoDisplay.playheadTime}"
   minimum="0" maximum="{thisVideoDisplay.totalTime}" width="100"/&gt; 
  &lt;/mx:HBox&gt;

&lt;/mx:VBox&gt;
&lt;/pre&gt;

&lt;h3&gt;In conclusion&lt;/h3&gt;

&lt;p&gt;In this tutorial, I have reviewed why you would create a custom video player in actionscript/mxml and how you would do it. I hope you found it useful and benefit from what I've learned when using the videoPlayer class. Let me know if you have any questions or have a suggestion for different approaches.&lt;/p&gt;

&lt;a href="http://technorati.com/claim/b483rn5ys7" rel="me"&gt;Technorati Profile&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3765907246772439562?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3765907246772439562/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/building-flash-video-player.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3765907246772439562'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3765907246772439562'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/building-flash-video-player.html' title='Building a flash video player'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-2632289850214151067</id><published>2009-06-27T11:02:00.001-07:00</published><updated>2009-06-27T14:56:42.975-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='presentations'/><category scheme='http://www.blogger.com/atom/ns#' term='leadership'/><title type='text'>Notes on leadership</title><content type='html'>&lt;p&gt;The following presentation, Introduction to Leadership, is a lecture I give in my course on Business Communication. The slides are &lt;b&gt;not&lt;/b&gt; in a style and format I prefer. In non-classroom settings, I try to follow the wisdom from &lt;a href="http://www.presentationzen.com"&gt;Presentation Zen &lt;/a&gt;blogger/author Garr Reynolds. In recognizing my audience (undergrads) desire to copy down bullet points, I've formatted the slides in the manner they are used to receiving.&lt;/p&gt;

&lt;p align="center"&gt;&lt;a href="http://mattstoner.net/presentations/intro_leadership/index.html" target="_blank"&gt;&lt;img src="http://mattstoner.net/presentations/intro_leadership/leadership_thumbnail.jpg"&gt;&lt;br /&gt; Click to see flash version of presentation&lt;/a&gt; (please note it may take a minute to load)  or download a &lt;a href="http://mattstoner.net/presentations/intro_leadership/intro_leadership.pdf" target="_blank"&gt;PDF&lt;/a&gt;

&lt;p&gt;Some books on leadership&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/B000VIMF4K?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000VIMF4K"&gt;The Leadership Challenge&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=B000VIMF4K" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/0743269519?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0743269519"&gt;The 7 Habits of Highly Effective People&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=0743269519" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;&lt;/li&gt;

&lt;/li&gt;

&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-2632289850214151067?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/2632289850214151067/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/notes-on-leadership.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2632289850214151067'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2632289850214151067'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/notes-on-leadership.html' title='Notes on leadership'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-326918803412776474</id><published>2009-06-22T18:16:00.001-07:00</published><updated>2009-06-22T18:41:57.526-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='law'/><category scheme='http://www.blogger.com/atom/ns#' term='creative commons'/><category scheme='http://www.blogger.com/atom/ns#' term='copyright'/><category scheme='http://www.blogger.com/atom/ns#' term='intellectual property'/><title type='text'>Digital Copyright: Revisited</title><content type='html'>&lt;p&gt;Just over 12 years ago, I wrote a paper &lt;a href="http://www.u.arizona.edu/~gstoner/digital_copyright.html"&gt;Digital Horizons of the Copyright Frontier: Copyright and the Internet&lt;/a&gt;. A lot has changed since then to say the least. There has been plenty of new case law, that I'm not going to review. Yet the paper still though gives a good review of where copyright law developed and the challenges ahead. Since I wrote the paper, it is interesting to see the rise of open source movement/creative commons and social networking. &lt;/p&gt;

&lt;p&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Open source movement/creative commons&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;I think it is fair to say that the internet community came together around the issue of fair use, intellectual sharing, and respecting rights way better (and faster) than Congress. The lobbyist and corporations seek a world of protectionism. While those on the Net have a bit of a different perspective.  Code sharing sites and blogs are an excellent representation of that intellectual sharing spirit.&lt;/p&gt;

&lt;p&gt;I have been particular struck by &lt;a href="http://creativecommons.org/"&gt;Creative Commons&lt;/a&gt;.  Started about 4 years after my original paper, creative commons seeks a way to let individuals share and reuse content while acknowledging the creation and respecting the license they attach to their creative work. You can see a history of creative commons &lt;a href="http://creativecommons.org/about/history/"&gt;here&lt;/a&gt;. In my conclusion, I pondered what is fair use in a digital era. Creative Commons have answered this question.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Social Networking sites&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;A relatively newer issue has arisen with the rise of social networking sites and individuals sharing information, links, photos, etc. Who knows your photos on facebook? Does anyone read the fine print when signing up for the latest new site? This question I think the jury is still out on. While all these sites have their terms of use statements, I think the courts will eventually answer this question. Or as in the case with Facebook, user uproar will yield changes in policies.&lt;/p&gt;

&lt;p&gt;So what are your thoughts on digital copyright and fair use in the digital era? What are the implications for online learning? Let's discuss.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-326918803412776474?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/326918803412776474/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/digital-copyright-revisited.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/326918803412776474'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/326918803412776474'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/digital-copyright-revisited.html' title='Digital Copyright: Revisited'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-1247830999833420340</id><published>2009-06-21T19:26:00.000-07:00</published><updated>2009-06-21T19:40:20.063-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='presentations'/><category scheme='http://www.blogger.com/atom/ns#' term='powerpoint'/><category scheme='http://www.blogger.com/atom/ns#' term='visual aids'/><category scheme='http://www.blogger.com/atom/ns#' term='public speaking'/><title type='text'>Effectively Communicating with Visuals Aids</title><content type='html'>&lt;p&gt;&lt;a href="http://mattstoner.net/presentations/effective_visuals.pdf"&gt;&lt;img src="http://mattstoner.net/images/effective_visuals_cover.gif" align="right"&gt;&lt;/a&gt;I'm not &lt;a href="http://presentationzen.com"&gt;Garr Reynolds&lt;/a&gt; or&lt;a href="http://www.duarte.com/"&gt; Nancy Duarte&lt;/a&gt;, but I have been given presentations for a long time and lecturing students on effectively communicating with powerpoint. The following chapter is my thoughts on effectively using not only powerpoint, but visual aids in general. I hope you enjoy and let me know what you think.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://mattstoner.net/presentations/effective_visuals.pdf"&gt;Download PDF (1.8 megs)&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-1247830999833420340?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/1247830999833420340/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/effectively-communicating-with-visuals.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1247830999833420340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/1247830999833420340'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/effectively-communicating-with-visuals.html' title='Effectively Communicating with Visuals Aids'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-8039018441417008760</id><published>2009-06-21T11:05:00.000-07:00</published><updated>2009-06-21T11:39:16.927-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='degrafa'/><category scheme='http://www.blogger.com/atom/ns#' term='data visualization'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='engagement'/><title type='text'>Data Visualization with Flash</title><content type='html'>&lt;p&gt;Spreadsheets and raw data may appeal to accountants, but the typical person is not cognitively tuned to acquire data by such methods. Data visualization  and information design are critical to the modern era. Scholars such as &lt;a href="http://www.amazon.com/gp/product/0961392118?ie=UTF8&amp;amp;tag=mattstonernet-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0961392118"  target='_blank'&gt;Edward Tufte&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0961392118" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;
and
&lt;a href="http://www.amazon.com/gp/product/0970601980?ie=UTF8&amp;amp;tag=mattstonernet-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=0970601980"  target='_blank'&gt;Stephen Few&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=0970601980" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt; have wonderful books on the topic.&lt;/p&gt;

&lt;p&gt;
For a purely demo project, I wanted to help the learners engage with the data. I found a &lt;a href="http://www.nccaom.org/applicants/state_data/State_sheet.htm"  target='_blank'&gt;data set&lt;/a&gt; of  licensure requirements for acupuncture practitioners in the United States.  I could have also picked a data set from the new &lt;a href="http://data.gov/"&gt;data.gov&lt;/a&gt;. I took the table based information and converted it to XML to be read into a flash project.&lt;/p&gt;
&lt;p&gt;
Rather than display the data as a table, I envisioned a map of the United States like the CNN "&lt;a href="http://www.cnn.com/2008/TECH/11/04/magic.wall/index.html"  target='_blank'&gt;magic wal&lt;/a&gt;l". I knew of the awesome &lt;a href="http://www.degrafa.org/"  target='_blank'&gt;Degrafa&lt;/a&gt; library for Actionscript/Flex and on their website they had a demo section with exactly the sort of &lt;a href="http://www.degrafa.org/source/DegrafaMapSample/DegrafaMapDemo.html"  target='_blank'&gt;map&lt;/a&gt; I was looking for. Based on their demo source code, I was able to create an interactive map of the data set I found.&lt;/p&gt;

&lt;p align="center"&gt;Click on the map to see the Flash project in a new window&lt;br /&gt;&lt;a href="http://mattstoner.net/project_samples/map/main.html" target='_blank'&gt;&lt;img src="http://mattstoner.net/project_samples/map/usMap_sample.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-8039018441417008760?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/8039018441417008760/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/data-visualization-with-flash.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/8039018441417008760'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/8039018441417008760'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/data-visualization-with-flash.html' title='Data Visualization with Flash'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-2920540732725740378</id><published>2009-06-21T08:07:00.000-07:00</published><updated>2009-06-21T19:34:45.796-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='presentations'/><category scheme='http://www.blogger.com/atom/ns#' term='web design'/><category scheme='http://www.blogger.com/atom/ns#' term='book recommendations'/><category scheme='http://www.blogger.com/atom/ns#' term='data visualization'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='web usability'/><title type='text'>Book suggestions for the instructional designer</title><content type='html'>&lt;div&gt;
&lt;/div&gt;&lt;div&gt;Here is a list of some books I've been reading and how they are revelant to what I do.&lt;/div&gt;&lt;div&gt;
&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/014311526X?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=014311526X"&gt;Nudge: Improving Decisions About Health, Wealth, and Happiness&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=014311526X" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;

 ~ I really enjoyed this book for its insight on human decision making. While its suggestions about nudges are in other context areas, I think they offer valuable advice for the instructional designer.&lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/0321545370?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321545370"&gt;Creating Visual Experiences with Flex 3.0 (Developer's Library)&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=0321545370" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;
 ~  If you are new to Flex/Actionscript 3 this is a really good introduction. There are also lots of gems for the experienced programmer/designer.&lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/0596522347?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596522347"&gt;slide:ology: The Art and Science of Creating Great Presentations&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=0596522347" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;
 ~  Whether you are an instructor/trainer/speaker or an instructional designer, this book has a lot of excellence advice not only for presentations, but general user experience and information design.&lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/0596100167?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596100167"&gt;Information Dashboard Design: The Effective Visual Communication of Data&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=0596100167" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;
 ~ Stephen Few book is a leading expert on visual communication. This book provides great visual examples to reinforce the concepts he lays out. &lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.amazon.com/gp/product/0321344758?ie=UTF8&amp;tag=mattstonernet-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321344758"&gt;Don't Make Me Think: A Common Sense Approach to Web Usability, 2nd Edition&lt;/a&gt;&lt;img src="http://www.assoc-amazon.com/e/ir?t=mattstonernet-20&amp;l=as2&amp;o=1&amp;a=0321344758" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /&gt;
 ~  The title says it all. Web usability is vital for online course delivery. This book offers helpful reminders about your users and how they approach your interface design and functionality. &lt;/li&gt;


&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-2920540732725740378?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/2920540732725740378/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/book-suggestions-for-instructional.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2920540732725740378'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2920540732725740378'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/book-suggestions-for-instructional.html' title='Book suggestions for the instructional designer'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3181089536715520063</id><published>2009-06-20T09:03:00.000-07:00</published><updated>2009-06-20T13:41:03.811-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web design'/><category scheme='http://www.blogger.com/atom/ns#' term='adobe'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Links for week of June 21</title><content type='html'>&lt;p&gt;Just some links that caught my attention this week.&lt;/p&gt;

&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;
General Web Design&lt;/span&gt;&lt;/b&gt;

&lt;ul&gt;&lt;li&gt;&lt;a href="http://sixrevisions.com/tools/25-excellent-typography-tools-for-the-serious-designer/"&gt;25 Typography Tools for the Serious Designer&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://sixrevisions.com/tools/12-excellent-free-tools-for-monitoring-your-sites-uptime/"&gt;Tools to monitor your site's uptime&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://flowingdata.com/2009/06/15/6-easy-steps-to-make-your-graph-really-ugly/"&gt;6 ways to make your graphs really ugly&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://developer.yahoo.com/ypatterns/wireframes/"&gt;Yahoo! Design Pattern Library&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Elearning&lt;/span&gt;&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://blog.cathy-moore.com/2008/02/5-ways-to-make-linear-navigation-more-interesting/"&gt;5 ways to make linear navigation more interesting&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.articulate.com/rapid-elearning/heres-why-you-need-an-e-learning-portfolio/"&gt;Why you need an e-learning portfolio&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.elearningguild.com/transactions3/index.cfm?tid=52&amp;amp;selection=doc.1248"&gt;DevLearn 2009 (Nov San Jose)&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.trainingplace.com/building.htm"&gt;Building a strategic plan for e-learning&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Adobe&lt;/span&gt;&lt;/b&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://labs.adobe.com/technologies/blueprint/"&gt;Labs -- Blueprint&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://hansmuller-flex.blogspot.com/"&gt;Flex 4 Viewpoints&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3181089536715520063?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3181089536715520063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-for-week-of-june-21.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3181089536715520063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3181089536715520063'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-for-week-of-june-21.html' title='Links for week of June 21'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3573468935846709553</id><published>2009-06-20T05:06:00.000-07:00</published><updated>2009-06-20T05:33:53.704-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='evaluation'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='research methodology'/><title type='text'>Evaluation &amp; Instructional Design: What comes first</title><content type='html'>&lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Reader Question: Do you design the evaluation of a learning module first? Arguments for either approach?&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;From my perspective, all good instructional design begins with a clear understanding of the learning objectives for the activity. Since the learning objectives are what should drive your evaluation process, good instructional design is inherently tied to evaluation design. Sometimes I think online instructional design is driven by cool features/technology rather than serious attention to learning outcomes and the needs of the learner.&lt;/p&gt;
&lt;p&gt;Evaluation is more than did the learners "like" the activity (satisfaction measures). But can you measure that they met some objective criteria for knowledge acquisition and did better than those who didn't do an online module. Did learners actually spend time in the learning module or just give it a cursory viewing?&lt;/p&gt;
&lt;p&gt;One of the reasons for using outside evaluators in developing and measuring effectiveness and user satisfaction is the bias those involved in the development of a learning module bring to reviewing the data. It's only human to loathe criticism and revel in compliments. Thus, evaluation should be a collaborative process by those tasked with the design and evaluation of the learning module.&lt;/p&gt;
&lt;p&gt;So what are your thoughts? I look forward to your comments.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3573468935846709553?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3573468935846709553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/evaluation-instructional-design-what.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3573468935846709553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3573468935846709553'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/evaluation-instructional-design-what.html' title='Evaluation &amp; Instructional Design: What comes first'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-2238429250766746256</id><published>2009-06-17T18:41:00.000-07:00</published><updated>2009-06-17T18:55:22.044-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='flex component'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><title type='text'>Flash: Interactive Patient Waiting Room</title><content type='html'>&lt;p&gt;A recent project I worked on was to create a patient waiting room for a online medical course. The client wanted to present some patients to the students before they met them in an online course. The request was for something "flashy".&lt;/p&gt; 

&lt;p&gt;I knew of Doug McCune's &lt;a href="http://dougmccune.com/blog/2007/11/19/flex-coverflow-performance-improvement-flex-carousel-component-and-vertical-coverflow/"&gt;coverflow component&lt;/a&gt; for Flex and thought this might be an opportunity to meet the client's request and present the patients in an interesting interface. In order to demo the project, I have changed the patient pictures with photos I got off the web (you'll recognize some celebrities) and I have disabled the function to view the patient chart.&lt;/p&gt;

&lt;p&gt;Like most of my projects, this project reads in the display data via XML at runtime, so it is completely reusable. This project is not yet finalized so the background and some features may change. But it is a good example of implementing the coverflow carousel component into an elearning project.&lt;/p&gt;

&lt;iframe src="http://mattstoner.net/project_samples/waitingRoom/main.html" width="550" height="419"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-2238429250766746256?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/2238429250766746256/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/flash-interactive-patient-waiting-room.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2238429250766746256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2238429250766746256'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/flash-interactive-patient-waiting-room.html' title='Flash: Interactive Patient Waiting Room'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-9050211365983039367</id><published>2009-06-14T19:01:00.001-07:00</published><updated>2009-06-14T19:02:45.228-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='version control'/><category scheme='http://www.blogger.com/atom/ns#' term='adobe'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><title type='text'>Version Control</title><content type='html'>This spring I gave a talk to the Tucson Adobe Users Group on Version Control. If you are developing e-learning and not using a form a version control, I highly recommend you check it out. You can listen to the talk at this &lt;a href="https://admin.adobe.acrobat.com/_a200985228/p90659056/"&gt;link&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-9050211365983039367?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/9050211365983039367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/version-control.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/9050211365983039367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/9050211365983039367'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/version-control.html' title='Version Control'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-9027523872119183077</id><published>2009-06-14T10:06:00.000-07:00</published><updated>2009-06-14T10:24:32.433-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='agile'/><category scheme='http://www.blogger.com/atom/ns#' term='data visualization'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='elearning'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Links Week of June 14</title><content type='html'>&lt;p&gt;Just some links that caught my attention this week.&lt;/p&gt;

&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;E-Learning workflow&lt;/span&gt;&lt;/b&gt;

&lt;div&gt;A great series (and more posts to come) from Sumett Moghe.&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://cipher-quaker.blogspot.com/2009/06/blog-post.html"&gt;The Agile Elearning Design Manual: Problems with existing approaches&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://cipher-quaker.blogspot.com/2009/06/agile-elearning-design-manual-agile-re.html"&gt;The Agile Elearning Design Manual - Agile Re-explained&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Data Visualization&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.axiis.org/"&gt;Axiis framework  &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://flowingdata.com/"&gt;Flowing Data Blog&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://code.google.com/p/as3statslib/"&gt;Statistical Functions for actionscript&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div&gt;&lt;div&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;&lt;b&gt;General E-Learning&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.elearnmag.org/subpage.cfm?section=research&amp;amp;article=1-1"&gt;Digital Story Telling&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.slideshare.net/CathyMoore/design-lively-elearning-with-action-mapping?type=presentation"&gt;Designing elearning with action mapping&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.articulate.com/rapid-elearning/13-more-tips-to-help-you-record-narration-like-the-pros"&gt;Tips for recording narration&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://clearlytrained.com/portfolio/eLearning_Samples_of_Work.htm"&gt;Some flash elearning examples&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=xSljWUVIrNI"&gt;e-Learning Developers Need Therapy&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.slideshare.net/jcarswell/theories-of-instructional-design"&gt;Theories of instructional design&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://classweb.gmu.edu/ndabbagh/Resources/IDKB/instruct_design.htm"&gt;Doing Instructional Design&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-9027523872119183077?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/9027523872119183077/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-week-of-june-14.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/9027523872119183077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/9027523872119183077'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/links-week-of-june-14.html' title='Links Week of June 14'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3835878702330803399</id><published>2009-06-13T21:00:00.000-07:00</published><updated>2009-06-13T20:10:24.898-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='evaluation'/><category scheme='http://www.blogger.com/atom/ns#' term='effectiveness'/><category scheme='http://www.blogger.com/atom/ns#' term='online surveys'/><category scheme='http://www.blogger.com/atom/ns#' term='research methodology'/><category scheme='http://www.blogger.com/atom/ns#' term='response bias'/><title type='text'>Click versus Bic #2</title><content type='html'>Evaluation is a key component to interactive learning. Do these new strategies and techniques:&lt;p&gt;&lt;ul&gt;&lt;li&gt;work&lt;/li&gt;&lt;li&gt;yield better outcomes than other methods, and &lt;/li&gt;&lt;li&gt;meet the learning objectives for the activity/course?&lt;/li&gt;&lt;/ul&gt;&lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt; In other words, is online learning better?&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;
&lt;p&gt;
&lt;/p&gt;&lt;p&gt;In terms of answering this question, the research methods used could have a dramatic impact on the results. Do survey methods matter? Is there a response bias to answering an online survey in an online course? If a learner is using a learning management system (LMS) do they perceive anonymity? Are there other ways to assess online learning?
&lt;p&gt;
&lt;/p&gt;&lt;p&gt;In a meta-analysis of response distortion, Richman, Kiesler, Weisband, and Drasgrow (1999) found that using a computer instrument had no consistent effect on distortion and other factors, such as being alone, moderated the relationship. In their concluding remarks, they speculated whether web-based anonymous surveys would effect response distortion.  Social response distortion (SDR) is a tendency of inpiduals to answer questions in a more desirable manner than under other conditions, thus inpiduals engage in behaviors to intentionally look better (impression management). Studies of response distortion with computerized versus traditional instruments have reported conflicting findings -- less distortion (Evan &amp;amp; Miller, 1969; Kiesler &amp;amp; Sproull, 1986), more distortion (Lautenschalger &amp;amp; Faherty, 1990), and no differences (Booth-Kewley, Edwards &amp;amp; Rosenfeld, Whitner &amp;amp; Miller, 1995; Pinsoneault). Various claims have been offered for the nonequivalence of results, such as the ability to scan (Lautenshalger &amp;amp; Faherty, 1990), differences in the inputs/outputs of the interface (Moon, 1998), social context cues (Kiesler &amp;amp; Sproull, 1986), reduced feelings of privacy (Whitener &amp;amp; Miller, 1995) and the big brother syndrome (Rosenfeld, Booth-Kewley, Edwards, and Thomas, 1996).&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;&lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Survey format&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;Tourangeau and Smith (1996) argued that computerized surveys foster a greater sense of privacy thereby increasing respondents’ willingness to report sensitive information. Wright, Aquilino, and Supple (1998) found respondent characteristics, such as age, sex, and attitudes, also moderated the mode effect along with several significant interaction effects. Wright and colleagues suggested a possible sex difference in responses because of the differences for enthusiasm for computers between males and females for computers. In addition, they suggested other possible moderators such as respondents’ general trust in others, attitudes towards surveys, perceptions of privacy and attitudes of computers for influencing any mode differences in response distortion.&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;Beyond respondent characteristics, several researchers concluded the survey format (paper or computerized) affects response distortion because of the ability to “scan, preview, review, skip or change items on a test” (Whitener &amp;amp; Klein, 1995, p. 67). Respondents in paper surveys are able to scan and change answers, while this is not always the case with computerized surveys. Computerized surveys can be programmed to force responses before continuing to the next item, show only one item at a time, and to administer different items based on responses. &lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;In addition, web surveys can be formatted to look more similar to paper based surveys with advancements in web technologies. Previous computer based surveys had awkward text-based interfaces, which could be perceived as more an interview format (question, response, question, response) instead of a survey in which the respondent is able to scan, skip or change items. Richman and colleagues argued that “the effect will depend on how the interfaces makes respondents feel; the more a computer instruments resembles a traditional instruments, the more the two instruments should produce similar responses” (p. 756).&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;&lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;So does it matter?&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;The point of perceived differences in survey methods may be moot. For many online courses, the students are at a distant and an online survey is the only method available to collect feedback. All self report methods involve some bias error. Fortunately survey methods alone are not enough though to answer the questions posed at the start of this post.&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;Another method to evaluating online courses is web log analysis. Similar to consumer market research, web log analysis can yield crucial information on whether the learners are actually using the activities/course work being implemented. I have long felt the combination of surveys with an analysis of usage patterns is key to evaluating the effectiveness of online learning courses. Metrics of time spent, return visits, time per page, etc can provider instructors and instructional developers a wealth of information on usage patterns. Some might argue too much information. Thus distilling the major trends and key themes is quite important when face with a mountain of data.&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;References:&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;p&gt;Booth-Kewley, S., Edwards, J. E., &amp;amp; Rosenfield, P. (1992). Impression management, social desirability, and computer administration of attitude questionnaires: Does the computer make a difference? Journal of Applied Psychology, 77, 562-566.&lt;/p&gt;&lt;p&gt;Evan, W. M., Miller, J. R. (1969). Differential effects on response bias of computer vs. conventional administration of a social science questionnaire: An exploratory methodological experiment. Behavioral Science, 14, 215-227.&lt;/p&gt;&lt;p&gt;Kiesler, S., &amp;amp; Sproull, L. (1986). Response effects on the electronic survey. Public Opinion Quarterly, 50, 402-413.&lt;/p&gt;&lt;p&gt;Lautenschlager, G. J., &amp;amp; Flaherty, V. L. (1990). Computer administration of questions: More desirable or more social desirability? Journal of Applied Psychology, 75, 310-314.&lt;/p&gt;&lt;p&gt;Moon, Y. (1999). Impression management in computer-based interviews: The effect of input modality, output modality, and distance. Public Opinion Quarterly, 62, 610-622.&lt;/p&gt;&lt;p&gt;Paulhus, D. L. (1991). Measurement and control of response bias. In J. P. Robinson, P. R., Shaver, &amp;amp; L. S. Wrightsman (Eds.), Measures of personality and social psychological attitudes (pp. 17-59). San Diego, CA: Academic Press.&lt;/p&gt;&lt;p&gt;Rosenfield, P., Booth-Kewely, S., &amp;amp; Edwards, J.E. (1993). Computer-administered surveys in organizational settings. American Behavioral Scientist, 36, 485-511.&lt;/p&gt;&lt;p&gt;Rosenfield, P., Booth-Kewely, S., Edwards, J.E., &amp;amp; Thomas, M. (1996). Responses on computer surveys: Impression management, social desirability, and the Big Brother syndrome. Computers in Human Behavior, 12, 263-274.&lt;/p&gt;&lt;p&gt;Tourangeau, R., &amp;amp; Smith, T. (1996). Asking sensitive question: The impact of data collection mode, question format, and question context. Public Opinion Quarterly, 60, 275-304.&lt;/p&gt;&lt;p&gt;Weisband, S., &amp;amp; Kiesler, S. (1996). Self disclosure on computer forms: Meta-analysis and implications, Proceedings of CHI ‘96 &lt;/p&gt;&lt;p&gt;Whitener, E. M., &amp;amp; Klein, H. J. (1995). Equivalence of computerized and traditional research methods: The role of scanning, social environment, and social desirability. Computers in Human Behavior, 11, 65-75.&lt;/p&gt;&lt;p&gt;
&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3835878702330803399?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3835878702330803399/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/click-versus-bic-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3835878702330803399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3835878702330803399'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/click-versus-bic-2.html' title='Click versus Bic #2'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-384989228969064874</id><published>2009-06-13T10:39:00.000-07:00</published><updated>2009-06-13T13:52:08.026-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='reusability'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='actionscript'/><category scheme='http://www.blogger.com/atom/ns#' term='engagement'/><title type='text'>Building Engagement with Re-Usability</title><content type='html'>&lt;p&gt;In a recent project I had the opportunity to convert a learning activity developed in 2001 to be re-usabile and in Flash. The original learning activity used a image map and javascript popups to present information. The learner was presented a literal map from Winnie the Pooh and had to find 9 places to click. The activity was completely custom and thus not reusable. The presentation was very much HTML 1.0.&lt;/p&gt;

&lt;p&gt;The process of converting the activity to Flash could have involved simply using an actionscript library which would have read the HTML image map coordinates. Instead I designed with usability in mind and developed an XML data file with the content from the previous activity and some additional nodes of information to reference from actionscript. The programming was created so that the same project could be re-used with a different XML file loaded at runtime. A common technique in the projects I make is to specify an XML file to be loaded at runtime. The URL for the XML file is specified on the page in which the SWF is called instead of in the actual flash file.&lt;/p&gt;

&lt;pre class="brush: as3"&gt;
 public function initApp():void
 {

 var thisXML:String = Application.application.parameters.thisXML;

  var loader:URLLoader = new URLLoader(new URLRequest(thisXML));
  loader.addEventListener(Event.COMPLETE, loadNewXML);

 }

 public function loadNewXML(event:Event):void
        {
     
         loadedXML = new XML(event.target.data);
      
        }

&lt;/pre&gt;

&lt;p&gt;The first step in this project involved our graphic artist updating the map image to remove the iconography that users previously clicked on. The resulting image created the background for the interaction. While in this case the background was the same as the previous activity, it could have been any background image. In creating the Flash project, I set it up to dynamically place a background image specified in the XML file. &lt;/p&gt;

&lt;p&gt;The next step was to get the iconography overlayed onto the background like the original activity. The previous javascript popups already had the icon images that appeared on the map. Thus, I was able to use them to dynamically place them on the map in Flash. The XML was formed to include x,y coordinates for placement and a path to the image file. A sample node:

&lt;/p&gt;&lt;pre class="brush: xml"&gt;
&lt;node id="time"&gt; 
&lt;coordinates&gt;480,60&lt;/coordinates&gt;
 &lt;icon&gt;http://localhost/scribble.png&lt;/icon&gt;
&lt;popup&gt;
You may be afraid to ask questions because you know enough to realize that you can't "Do something" about the 
patient's problems.  The only person expecting you to have an answer for everything is you.  You can always refer the
patient to a competent mental health professional  if you need to, but you may also be surprised at how powerful
your listening.]]&gt; &lt;/popup&gt;
&lt;/node&gt;
&lt;/pre&gt;

&lt;p&gt;After the actionscript code loaded the XML the following two functions were executed to create a button that combined the icon and text title for each node and placed it as the specified coordinates.

&lt;/p&gt;&lt;pre class="brush: as3"&gt;
 public function setupStage(mapXML:XML):void{

 // loop thru XML and call function to add objects to stage
      for each (var node in mapXML..node)
  {

   var image = node.logo.toString();
   var imageLabel = node.@id.toString();
   var theseCoords =  node.coordinates;
   var title = node.title;
   var popupStyle = node.type;
   var coords = theseCoords.split(/,/);
 
   var x = coords[0];
   var y =  coords[1];

   // call function to create clickable object
      
   var thisFixture = setupFixture(image,imageLabel,x,y,title,popupStyle);
 
   // event listsener to call popup func
   thisFixture.addEventListener(MouseEvent.CLICK, viewItem);
 
   // add object to stage
   main_area.addChild(thisFixture);
   }

 }


 public function setupFixture(icon:String, label:String, x:int, y:int, title:String,popupStyle:String):HBox
 {

  //create Hbox to hold icon images and title of object
  var thisDodad:HBox = new HBox();
       thisDodad.x = x;
    thisDodad.y = y;
    thisDodad.data = label;
    thisDodad.buttonMode = true;
    thisDodad.useHandCursor = true;
    thisDodad.horizontalScrollPolicy = "off";
    thisDodad.verticalScrollPolicy = "off";
  
  var thisTitle:Text = new Text;
   thisTitle.text = title;
   thisTitle.data = label;
 
   thisTitle.buttonMode = true;
   thisTitle.useHandCursor = true;
   thisTitle.mouseChildren = false;
   thisTitle.selectable = false;
   thisTitle.setStyle("leading", "-3");
   thisTitle.styleName = popupStyle;

   //dimming text evaluation

   for each (var item:String in selectedArray) {

    if(item == thisTitle.data) {
     thisTitle.styleName = popupStyle + "Selected";
    }
  
   }

  var thisIcon:Image = new Image();
  thisIcon.source = icon;
  thisIcon.data = label;
  thisIcon.width = 25;
  thisIcon.height = 25;


  thisDodad.addChild(thisIcon);

  thisDodad.addChild(thisTitle);

  return(thisDodad);
 }
&lt;/pre&gt;

&lt;p&gt;In the previous HTML 1.0 design for this activity a learner had to remember what items they had clicked on. There was no visual feedback to indicate their progression thru exploring the map.  I created an array in which I captured each of the nodes a user clicked. Then you will notice on lines 59 I evaluated if the current node was on that list. Thru the use of CSS styles, I changed the color of the text label to be dimmed for those which had been selected.&lt;/p&gt;

&lt;p&gt;In the future, this same Flash SWF can be re-used with different visual assets and learning content. The design is very engaging for the user in that they can explore a visual space and receive information in a fun way. While I can't show the actual project here, I will try to make a derivative and post it soon.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-384989228969064874?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/384989228969064874/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/building-engagement-with-re-usability.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/384989228969064874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/384989228969064874'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/building-engagement-with-re-usability.html' title='Building Engagement with Re-Usability'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-2101404095085506417</id><published>2009-06-03T16:34:00.000-07:00</published><updated>2009-06-07T09:12:12.795-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='reusability'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='actionscript'/><title type='text'>Developing a reusable interactive pie chart</title><content type='html'>&lt;b&gt;&lt;i&gt;&lt;span class="Apple-style-span"  style="font-size:large;"&gt;&lt;span class="Apple-style-span"  style="color:#333399;"&gt;Begin with the end in mind&lt;/span&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;div&gt;
&lt;/div&gt;&lt;p&gt;In grad school I had a professor who in talking about research explained: "you can either do the work on the front end with planning or the back-end when you are dealing with #$*($&amp;amp;(*#$". I think the same wisdom holds for instructional design. You can plan for reusability and generalization or try to expand upon an instructional design (feature creep).&lt;/p&gt; 

&lt;p&gt;A new instructional design project often starts with the idea wouldn't it be cool/nice/useful/ fill in the blank to have a widget that does X. In my job, it is often translating that X into reality but also considering how the project could be a reusable learning object.&lt;/p&gt; 
&lt;p&gt;The planning process should consider how could this idea be used in other contexts/applications,  how does data flow to and from the learning object, and if technology is needed to support it. I always like to start with deciding if technology is really needed to support the learning idea or if non-technical means would yield better outcomes. A hybrid in-class and online approach or in-class only approach might work better than a strictly online approach. Not every learning idea translates well to an online context and in those cases if a classroom experience is possible, the idea would be better delivered in that manner.&lt;/p&gt;

&lt;p&gt;A recent request I had was for an interactive pie chart. The idea was for the user to click on the pie wedges and receive information. The course would be strictly online, so there was no need to consider delivery in other modalities. The next question to consider was how to populate the learning object with data. This easily could have been a custom flash animation. Instead though, I approach it with reusability in mind and created an actionscript project that outputted Flash based on an XML data file.&lt;/p&gt; &lt;p&gt;In designing the XML for the project, I wanted to make sure it could be re-used. Since the design was to show some topics and provided information on each, I named the top level node "topic. For each topic node, I gave it a label, percentage, color and the blurb. See below: &lt;/p&gt;
&lt;pre class="brush: xml"&gt;
&lt;&lt;data&gt;
&lt;topic label="Exercise"&gt;
&lt;label&gt;Exercise&lt;/label&gt;
&lt;content_percentage&gt;11&lt;/content_percentage&gt;
&lt;wedgecolor&gt;0x6A9DC3&lt;/wedgecolor&gt;
&lt;blurb&gt;Several large prospective studies have explored the association
between prostate cancer and physical activity, and the results are
surprising, as you will learn in the next step.&lt;/blurb&gt;
&lt;/topic&gt;
&lt;topic label="Stress"&gt;
&lt;label&gt;Stress&lt;/label&gt;
&lt;content_percentage&gt;10&lt;/content_percentage&gt;
&lt;wedgecolor&gt;0xE36438&lt;/wedgecolor&gt;
&lt;blurb&gt;Psychological stress has pronounced and well-documented effects
on the immune system through various mechanisms. The suspected (but
debated) hormone sensitivity of prostate cancer might, theoretically,
render it more susceptible to psychological states associated with
aberrant or altered hormonal environments.&lt;/blurb&gt;
&lt;/topic&gt;
&lt;topic label="Nutrition &amp;amp; Dietary Supplements"&gt;
&lt;label&gt;Nutrition/Supplements&lt;/label&gt;
&lt;content_percentage&gt;79&lt;/content_percentage&gt;
&lt;wedgecolor&gt;0x89AC62&lt;/wedgecolor&gt;
&lt;blurb&gt;Much research has focused on the role of nutrition in mitigating
the risk of developing prostate cancer. The role of both total dietary
fat intake as well as specific fats consumed may be critical to the
development of PC.

The role of macro- and micronutrients is
also important. These can be obtained in the form of whole foods in the
diet, or as dietary supplements. Herbs and other nutraceuticals may
impact the development and/or progression of PC. It is important to
examine the evidence behind specific nutritional recommendations, and
tailor them to suit an individual's lifestyle and willingness to make
dietary alterations.&lt;/blurb&gt;
&lt;/topic&gt;
&lt;/data&gt;&lt;/pre&gt;
 &lt;p&gt;With this XML structure, the learning object could be used again with just a different XML file. In creating the Flash project, I used Flash Vars to pass in a URL to the XML file. As such, the swf file could be loaded without having to be recompiled and just pointed to a different XML. Since I am passing into Flash the size and color for each wedge, a developer has complete flexility in the future to make changes.
&lt;/p&gt;
&lt;iframe src="http://mattstoner.net/project_samples/chart/chartSample.html" width="430" height="400"&gt;&lt;/iframe&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-2101404095085506417?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/2101404095085506417/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/best-practices-for-design-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2101404095085506417'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/2101404095085506417'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/best-practices-for-design-and.html' title='Developing a reusable interactive pie chart'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-3347892233436819139</id><published>2009-06-02T19:01:00.000-07:00</published><updated>2009-06-06T09:45:31.047-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='reusability'/><category scheme='http://www.blogger.com/atom/ns#' term='scorm'/><category scheme='http://www.blogger.com/atom/ns#' term='instruction design'/><category scheme='http://www.blogger.com/atom/ns#' term='learning objects'/><title type='text'>Reusability of learning objects</title><content type='html'>&lt;b&gt;&lt;i&gt;One of the paradox of multimedia and online learning is the lack of reusability.&lt;/i&gt;&lt;/b&gt;

&lt;p&gt;Incompatible programming languages, lack of universally &lt;i&gt;used&lt;/i&gt; standards, and specialized instructional designs have been barriers to reusability in interactive learning. Beyond these causes, often times instructional developers and faculty do not begin the process of brainstorming new projects with reusability in mind.&lt;/p&gt;

&lt;p&gt;When approached with a concept idea, one of the first things I consider is whether this is an opportunity to develop a reusable learning object or if it is appropriate to develop a custom solution. Reusability is more than &lt;a href="http://www.adlnet.gov/Technologies/scorm/default.aspx"&gt;SCORM&lt;/a&gt; or choosing a certain software development methodology/language.&lt;/p&gt;

&lt;p&gt;In software development, the concept of &lt;a href="http://en.wikipedia.org/wiki/Design_patterns"&gt;design patterns &lt;/a&gt;refers to common solutions to programming situations. Why reinvent the wheel when the blueprint for a wheel is available. &lt;a href="http://en.wikipedia.org/wiki/Learning_object"&gt;Learning objects&lt;/a&gt; are a lot like design patterns and have been used by instructors for centuries. The &lt;a href="http://en.wikipedia.org/wiki/Socratic_method"&gt;socratic method&lt;/a&gt; is an example of a learning object. In modern times, the socratic method can be facilitated with technology, such as a discussion board, but the design pattern remains the same.&lt;/p&gt;

&lt;p&gt;&lt;span class="Apple-style-span"  style="font-family:arial;"&gt;&lt;b&gt;Shinny Disco Ball Syndrome&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Some faculty and instructional developers can get enamored by technologies and features available to build into a course or instructional design. Often times the outcome is detrimental to learning, student adoption, and instructor effectiveness.  &lt;/p&gt;

&lt;p&gt;Instead of focusing on features (the shinny disco ball), good interactive learning should be premised on the learning goal and measurable outcomes. Reusable learning objects are a great starting point when brainstorming a new activity or course. Instead of "we could do this" the conversation could be applying this known and tested learning object to the instructional situation. Developing a new learning objects is always an option and should be informed by the success/failures of previous learning objects developed in-house or by others.&lt;/p&gt;

&lt;p&gt;&lt;span class="Apple-style-span"  style=" font-weight: bold; font-family:arial;"&gt;Open Source Learning&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;The&lt;a href="http://en.wikipedia.org/wiki/Open_source"&gt; open source movement&lt;/a&gt; has radically changed (for the better) software development. An open source approach to online learning development could offer similar benefits and in some ways this is one of the goals of SCORM. While SCORM provides useful standards it does not encourage or facilitate sharing of learning objects, and pedagogy. In our copyright society, the open source movement has yet to really take hold in the online learning community. Beyond copyright, major corporations (book publishers) have financial incentives to restrict such development efforts.&lt;/p&gt;

&lt;p&gt;In teaching, the open source sharing of information has existed for a long time. Faculty in-service days, mentorship, and other methods have been used to help new (and old) instructors improve upon their instruction methods. While the technologies and desires exist for the same to occur in higher education and interactive learning, my experience has been a dearth of such exchanges except for those active in academic conferences and publishing. Often times, this is tenure track faculty rather than the instructional designers who play a major role in innovation and development.&lt;/p&gt;

&lt;p&gt;&lt;i&gt;Next post will focus on best practices for the design and implementation of reusable learning objects.&lt;/i&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-3347892233436819139?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/3347892233436819139/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/reusability-of-learning-objects.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3347892233436819139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/3347892233436819139'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/06/reusability-of-learning-objects.html' title='Reusability of learning objects'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-406584318390919353.post-7864579247614898353</id><published>2009-05-31T15:14:00.000-07:00</published><updated>2009-06-06T09:46:58.877-07:00</updated><title type='text'>Blog Goals</title><content type='html'>&lt;p&gt;I'm going to write and catalog my thoughts on facilitating learning in higher ed thru the use of technology.&lt;/p&gt;
&lt;p&gt;I will focus on both technical/programming as well as pedagogy. When relevant I will share source code from projects I'm working on. I primarily use Adobe and Apple products for my projects. Currently, I program in actionscript 3, flex, and cold fusion. I am the first to point out that there is not always a good technological solution for a given situation.&lt;/p&gt;
&lt;p&gt;So who am I? &lt;/p&gt;
&lt;p&gt;I've been interested in computer technology since I was a kid with an Apple //. My first experience with multimedia was Apple Hypercard followed by Hyperstudio. In high school, I used my first mac to produce a video documentary and went to college wanting to be a communication major. My first year of college the world wide web was in its infancy and I was at point zero in Silicon Valley. Santa Clara U was far ahead other university in terms of the web and I created my first web page in the fall of 1994.&lt;/p&gt;
&lt;p&gt;While at SCU, I took courses on technology and society as well as distant learning. I further developed by HTML skills working on some dept websites. In 1998, I continued my studies at the University of Arizona with a focus on communication and technology. I have been instructing college students since 1998 and in each course I have used technology to facilitate learning.&lt;/p&gt;
&lt;p&gt;After graduate school, I continued on at the University working in the College of Medicine. For the last 8 years I have been developing continuing medical education courses. In my role as an Associate Specialist for Interactive Learning, I've have been able to combine my interest in online education with a real world laboratory of theory and application. I also teach an evening course in the Communication Department on business communication. It is from these experience that I will write.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/406584318390919353-7864579247614898353?l=highered-interactivelearning.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://highered-interactivelearning.blogspot.com/feeds/7864579247614898353/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/05/blog-goals.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/7864579247614898353'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/406584318390919353/posts/default/7864579247614898353'/><link rel='alternate' type='text/html' href='http://highered-interactivelearning.blogspot.com/2009/05/blog-goals.html' title='Blog Goals'/><author><name>Matt</name><uri>http://www.blogger.com/profile/06855787247284750970</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
