<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>hydrotik &#124; flash development &#124; actionscript &#124; creative &#187; Flash Forward 07</title>
	<atom:link href="http://blog.hydrotik.com/category/flash-forward-07/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hydrotik.com</link>
	<description>actionscript and creative playground of Donovan Adams</description>
	<lastBuildDate>Tue, 04 May 2010 15:24:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>AS3 Papervision + Sound Visualizer + Line3D + Tweener &#8211; Part 2 FF07</title>
		<link>http://blog.hydrotik.com/2007/09/20/as3-papervision-sound-visualizer-line3d-tweener-part-2/</link>
		<comments>http://blog.hydrotik.com/2007/09/20/as3-papervision-sound-visualizer-line3d-tweener-part-2/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 01:43:31 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Forward 07]]></category>
		<category><![CDATA[Papervision]]></category>
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://blog.hydrotik.com/2007/09/20/as3-papervision-sound-visualizer-line3d-tweener-part-2/</guid>
		<description><![CDATA[So here's my Flash Forward inspired piece!
Once again used Andy's great Line3D class and gave it a Flash Forward 07 twist.

package com.hydrotik &#123;
&#160;
	import flash.events.Event;
	import flash.display.*;
	import flash.net.URLRequest;
	import flash.media.Sound;
	import flash.media.SoundChannel;
	import flash.media.SoundMixer;
	import flash.utils.ByteArray;
	import caurina.transitions.Tweener;
	import org.papervision3d.core.proto.*;
	import org.papervision3d.core.geom.*;
	import org.papervision3d.scenes.*;
	import org.papervision3d.cameras.*;
	import org.papervision3d.objects.*;
	import org.papervision3d.materials.*;
&#160;
	public class Hydro3D extends Sprite &#123;
&#160;
		private static const LOOP:String = &#34;../flashassets/mp3/jens_buchert.mp3&#34;;
&#160;
		private const STAGE_WIDTH		:Number = 600;
		private const STAGE_HEIGHT		:Number = 300;
		private [...]]]></description>
			<content:encoded><![CDATA[<p>So here's my Flash Forward inspired piece!</p>
<p>Once again used <a href="http://blog.zupko.info/" target="_blank">Andy's</a> great Line3D class and gave it a Flash Forward 07 twist.</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">package com.<span style="color: #006600;">hydrotik</span> <span style="color: #66cc66;">&#123;</span>
&nbsp;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #006600;">Event</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">display</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">net</span>.<span style="color: #006600;">URLRequest</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">media</span>.<span style="color: #0066CC;">Sound</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">media</span>.<span style="color: #006600;">SoundChannel</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">media</span>.<span style="color: #006600;">SoundMixer</span>;
	<span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">utils</span>.<span style="color: #006600;">ByteArray</span>;
	<span style="color: #0066CC;">import</span> caurina.<span style="color: #006600;">transitions</span>.<span style="color: #006600;">Tweener</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">core</span>.<span style="color: #006600;">proto</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">core</span>.<span style="color: #006600;">geom</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">scenes</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">cameras</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">objects</span>.<span style="color: #66cc66;">*</span>;
	<span style="color: #0066CC;">import</span> org.<span style="color: #006600;">papervision3d</span>.<span style="color: #006600;">materials</span>.<span style="color: #66cc66;">*</span>;
&nbsp;
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">class</span> Hydro3D <span style="color: #0066CC;">extends</span> Sprite <span style="color: #66cc66;">&#123;</span>
&nbsp;
		<span style="color: #0066CC;">private</span> <span style="color: #0066CC;">static</span> const LOOP:<span style="color: #0066CC;">String</span> = <span style="color: #ff0000;">&quot;../flashassets/mp3/jens_buchert.mp3&quot;</span>;
&nbsp;
		<span style="color: #0066CC;">private</span> const STAGE_WIDTH		:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">600</span>;
		<span style="color: #0066CC;">private</span> const STAGE_HEIGHT		:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">300</span>;
		<span style="color: #0066CC;">private</span> const ANIMATION_TIME	:<span style="color: #0066CC;">Number</span> = <span style="color: #cc66cc;">1</span>;
		<span style="color: #0066CC;">private</span> const ANIMATION_TYPE	:<span style="color: #0066CC;">String</span> = <span style="color: #ff0000;">&quot;easeoutquad&quot;</span>;
		<span style="color: #0066CC;">private</span> const MULT				:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">10</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> controlPoints		:<span style="color: #0066CC;">Array</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> itemArray			:<span style="color: #0066CC;">Array</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> trailArray			:<span style="color: #0066CC;">Array</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> currTrailArray		:<span style="color: #0066CC;">Array</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> lineArray			:<span style="color: #0066CC;">Array</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> count				:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> container 			:Sprite;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> scene     			:MovieScene3D;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> <span style="color: #0066CC;">camera</span>    			:Camera3D;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> sc					:SoundChannel;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> s					:<span style="color: #0066CC;">Sound</span>;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> lines	  			:Line3D;
&nbsp;
		<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> Hydro3D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
&nbsp;
			controlPoints = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
			itemArray = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
			trailArray = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
			currTrailArray = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
			lineArray = <span style="color: #66cc66;">&#91;</span><span style="color: #66cc66;">&#93;</span>;
&nbsp;
			s = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Sound</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			s.<span style="color: #0066CC;">load</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">new</span> URLRequest<span style="color: #66cc66;">&#40;</span>LOOP<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
			sc = s.<span style="color: #0066CC;">play</span><span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">0</span>, <span style="color: #cc66cc;">1000</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
			<span style="color: #808080; font-style: italic;">//container</span>
			container = <span style="color: #000000; font-weight: bold;">new</span> Sprite<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			container.<span style="color: #006600;">cacheAsBitmap</span> = <span style="color: #000000; font-weight: bold;">true</span>;
			addChild<span style="color: #66cc66;">&#40;</span> container <span style="color: #66cc66;">&#41;</span>;
			container.<span style="color: #006600;">x</span> = STAGE_WIDTH<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">2</span>;
			container.<span style="color: #006600;">y</span> = STAGE_HEIGHT<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">2</span>;
&nbsp;
			<span style="color: #808080; font-style: italic;">//scene</span>
			scene = <span style="color: #000000; font-weight: bold;">new</span> MovieScene3D<span style="color: #66cc66;">&#40;</span> container <span style="color: #66cc66;">&#41;</span>;
&nbsp;
			<span style="color: #808080; font-style: italic;">//camera</span>
			<span style="color: #0066CC;">camera</span> = <span style="color: #000000; font-weight: bold;">new</span> Camera3D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			<span style="color: #0066CC;">camera</span>.<span style="color: #006600;">z</span> = -<span style="color: #cc66cc;">200</span>;
&nbsp;
			addEventListener<span style="color: #66cc66;">&#40;</span> Event.<span style="color: #006600;">ENTER_FRAME</span>, <span style="color: #0066CC;">onEnterFrame</span> <span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #0066CC;">onEnterFrame</span><span style="color: #66cc66;">&#40;</span> event: Event <span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span>
			<span style="color: #0066CC;">camera</span>.<span style="color: #006600;">x</span> +=<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>container.<span style="color: #006600;">mouseX</span><span style="color: #66cc66;">*</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">&#41;</span> - <span style="color: #0066CC;">camera</span>.<span style="color: #006600;">x</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">0.005</span>;
			<span style="color: #0066CC;">camera</span>.<span style="color: #006600;">y</span> +=<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>container.<span style="color: #006600;">mouseY</span><span style="color: #66cc66;">*</span><span style="color: #cc66cc;">10</span><span style="color: #66cc66;">&#41;</span> - <span style="color: #0066CC;">camera</span>.<span style="color: #006600;">y</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">0.005</span>;
&nbsp;
			<span style="color: #000000; font-weight: bold;">var</span> bytes:ByteArray = <span style="color: #000000; font-weight: bold;">new</span> ByteArray<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
			SoundMixer.<span style="color: #006600;">computeSpectrum</span><span style="color: #66cc66;">&#40;</span>bytes, <span style="color: #000000; font-weight: bold;">false</span>, <span style="color: #cc66cc;">0</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
			<span style="color: #000000; font-weight: bold;">var</span> amp:<span style="color: #0066CC;">Number</span> = <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>sc.<span style="color: #006600;">leftPeak</span> + sc.<span style="color: #006600;">rightPeak</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">/</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
			lineArray<span style="color: #66cc66;">&#91;</span>count<span style="color: #66cc66;">&#93;</span> = <span style="color: #000000; font-weight: bold;">new</span> Line3D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#91;</span><span style="color: #000000; font-weight: bold;">new</span> Vertex3D<span style="color: #66cc66;">&#40;</span>-<span style="color: #cc66cc;">128</span>, <span style="color: #cc66cc;">0</span>, -<span style="color: #66cc66;">&#40;</span>count <span style="color: #66cc66;">*</span> MULT<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#93;</span>, rgbToHex<span style="color: #66cc66;">&#40;</span>count<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">4</span>, count<span style="color: #66cc66;">/</span><span style="color: #cc66cc;">6</span>, count<span style="color: #66cc66;">&#41;</span>, <span style="color: #cc66cc;">1</span>, <span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span>;
			scene.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>lineArray<span style="color: #66cc66;">&#91;</span>count<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
			<span style="color: #b1b100;">for</span><span style="color: #66cc66;">&#40;</span><span style="color: #000000; font-weight: bold;">var</span> i:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>; i <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">256</span>; i++<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">var</span> v:Vertex3D = <span style="color: #000000; font-weight: bold;">new</span> Vertex3D<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span>i<span style="color: #66cc66;">*</span><span style="color: #cc66cc;">2</span><span style="color: #66cc66;">&#41;</span> - <span style="color: #cc66cc;">128</span>, bytes.<span style="color: #006600;">readFloat</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">300</span>, -<span style="color: #66cc66;">&#40;</span>count <span style="color: #66cc66;">*</span> MULT<span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span>;
				lineArray<span style="color: #66cc66;">&#91;</span>count<span style="color: #66cc66;">&#93;</span>.<span style="color: #006600;">addVertex</span><span style="color: #66cc66;">&#40;</span>v<span style="color: #66cc66;">&#41;</span>;
			<span style="color: #66cc66;">&#125;</span>
&nbsp;
			Tweener.<span style="color: #006600;">addTween</span><span style="color: #66cc66;">&#40;</span>lineArray<span style="color: #66cc66;">&#91;</span>count<span style="color: #66cc66;">&#93;</span>, <span style="color: #66cc66;">&#123;</span>
						alpha:<span style="color: #cc66cc;">0</span>,
						<span style="color: #0066CC;">time</span>:ANIMATION_TIME,
						transition:ANIMATION_TYPE,
						onComplete:removeLine,
						onCompleteParams:<span style="color: #66cc66;">&#91;</span>lineArray<span style="color: #66cc66;">&#91;</span>count<span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span>
					<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
			scene.<span style="color: #006600;">renderCamera</span><span style="color: #66cc66;">&#40;</span> <span style="color: #0066CC;">camera</span> <span style="color: #66cc66;">&#41;</span>;
			count = <span style="color: #66cc66;">&#40;</span>count <span style="color: #66cc66;">&lt;</span> <span style="color: #cc66cc;">50</span><span style="color: #66cc66;">&#41;</span> ? count + <span style="color: #cc66cc;">1</span> : <span style="color: #cc66cc;">0</span>;
		<span style="color: #66cc66;">&#125;</span>;
&nbsp;
		<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> removeLine<span style="color: #66cc66;">&#40;</span>l:Line3D = <span style="color: #000000; font-weight: bold;">null</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><span style="color: #66cc66;">&#123;</span>
			scene.<span style="color: #006600;">removeChild</span><span style="color: #66cc66;">&#40;</span>l<span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
&nbsp;
		<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> rgbToHex<span style="color: #66cc66;">&#40;</span>uR:uint, uG:uint, uB:uint<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">int</span><span style="color: #66cc66;">&#123;</span>
            <span style="color: #000000; font-weight: bold;">var</span> uColor:uint;
            uColor =  <span style="color: #66cc66;">&#40;</span>uR <span style="color: #66cc66;">&amp;</span> <span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&lt;&lt;</span> <span style="color: #cc66cc;">16</span>;
            uColor += <span style="color: #66cc66;">&#40;</span>uG <span style="color: #66cc66;">&amp;</span> <span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&lt;&lt;</span> <span style="color: #cc66cc;">8</span>;
            uColor += <span style="color: #66cc66;">&#40;</span>uB <span style="color: #66cc66;">&amp;</span> <span style="color: #cc66cc;">255</span><span style="color: #66cc66;">&#41;</span>;
            <span style="color: #b1b100;">return</span> uColor;
        <span style="color: #66cc66;">&#125;</span>
&nbsp;
	<span style="color: #66cc66;">&#125;</span>
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>I didn't do anything with the amplitude but I left it in there if you decide you want to play with it. It's somewhat processor intensive. I wish external mp3's would loop. You'd think Adobe would have addressed that by now. Because of that, you'd want to attach it from your library, but I think it's ok for testing. Helps you find a good loop that gives you good results when playing with a visualizer. Just overwrite the mp3 file or switch the path.</p>
<p>Once again the loop I'm using: </p>
<p><a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewAlbum?id=184808563&#038;s=143441" target="_blank"><img src="http://a1.phobos.apple.com/r10/Music/dc/f9/46/mzi.pglxnrzy.170x170-75.jpg" alt="Jens Buchert" /></a><br />
The music is the song "Mélange Eléctrique" from Jens Buchert's album <em>Spa Lounge</em>. Great downtempo album.</p>
<hr />
<p><a href='http://blog.hydrotik.com/wp-content/lines3d_part2.zip' title='Lines3D Part 2 Source'>Lines3D Part 2 Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hydrotik.com/2007/09/20/as3-papervision-sound-visualizer-line3d-tweener-part-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>FF &#8211; Day 2</title>
		<link>http://blog.hydrotik.com/2007/09/20/ff-day-2/</link>
		<comments>http://blog.hydrotik.com/2007/09/20/ff-day-2/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 01:28:57 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Forward 07]]></category>

		<guid isPermaLink="false">http://blog.hydrotik.com/2007/09/20/ff-day-2/</guid>
		<description><![CDATA[Today was more to my liking, which is why I'm posting only once today. Was kept busy and enjoyed all of the seminars I attended. I'm not going to get into too much detail yet as I was working on a Flash Forward inspired Papervision/Sound visualizer. Check back any minute for that.
]]></description>
			<content:encoded><![CDATA[<p>Today was more to my liking, which is why I'm posting only once today. Was kept busy and enjoyed all of the seminars I attended. I'm not going to get into too much detail yet as I was working on a Flash Forward inspired Papervision/Sound visualizer. Check back any minute for that.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hydrotik.com/2007/09/20/ff-day-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FF &#8211; Day 1 &#8211; In Closing</title>
		<link>http://blog.hydrotik.com/2007/09/19/ff-day-1-in-closing/</link>
		<comments>http://blog.hydrotik.com/2007/09/19/ff-day-1-in-closing/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 02:49:12 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Forward 07]]></category>

		<guid isPermaLink="false">http://blog.hydrotik.com/2007/09/19/ff-day-1-in-closing/</guid>
		<description><![CDATA[Did John Say's Video Game Op. for the beginning of the afternoon block. John's done some great game work but I have to be honest this one was making me sleepy. The Wii Remote peaked my interest as I am in the process of working with OSC and  Making Things. I found myself drifting [...]]]></description>
			<content:encoded><![CDATA[<p>Did John Say's <em>Video Game Op.</em> for the beginning of the afternoon block. John's done some great game work but I have to be honest this one was making me sleepy. The Wii Remote peaked my interest as I am in the process of working with OSC and  Making Things. I found myself drifting off thinking about what kind of development I could do for my shiny new PS3 and the controllers. Are they truly USB? Could I connect them into the mac and use middleware to talk to flash? Interesting things to ponder. Most of his presentation was about statistics and casual game play. The MIT work with including the blind into the world of gaming was great.</p>
<p>Caught Dave Schroeder's <em>Designing With Sound</em> presentation. Having experience as an audio engineer, I thought this would be an interesting presentation and didn't know what to expect. I was hoping he would do more with the code end of it. Examples of x/y/z effects. Maybe some stuff on the 909 sampling project and doing real-time synthesis in flash, but it was straight up sound design. There were a couple key things he brought up that I'd like to share with you. Many of these are things I new before, but didn't really appreciate as formal terminology and practices.</p>
<p>Types of Sounds:</p>
<ul>
<li>On screen &#8211; What you see is what you hear in front of you</li>
<li>Off screen &#8211; You hear something outside of your viewing area</li>
<li>Non-diegetic &#8211; A voice over explaining something</li>
</ul>
<p>Sonic Relationship:</p>
<ul>
<li>Sympathetic Relationship &#8211; Sound equates to what you are seeing</li>
<li>Contrasting Relationship &#8211; Another and often totally different sound replacing what you would expect to hear</li>
<li>Abstract/Emotive &#8211; The sound, usually a score or passage that sort of captions the visuals. Like a Michael Mann montage</li>
</ul>
<p>Another interesting thing he mentioned is how the pacing or tempo of the audio can change a persons focus on the visuals. People tend to group things together and what you hear will draw you to movement that matches the audio. Very cool stuff. He also made it clear that planning is key, the power of audio to detract from the visuals, and how to strip down your sound work.</p>
<p>Finally the Film Festival. Kudos to Seb Lee-Delisle getting two mentions and to Carlos for getting the 3D category. I have to say there was some amazing work shown. I have to be honest though. I would have picked different winners for some of the categories.</p>
<p>I wanted to meet up at the after party and say hi to Andy Zupko, but I'm beat&#8230; I also had to debug something at the office.  Lovely.</p>
<p>All in all it was a good day. No light bulbs went off, other then seeing some great work being done by others. I'm hoping tomorrow and Fr are more code intensive. I was inpsired to do a Papervision 3D sound visualizer using the line class Andy did. Something very organic. I think I'll make it my nod to the Flash Forward experience. So on that note&#8230; off to work I go&#8230; and bed&#8230; T.B.C.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hydrotik.com/2007/09/19/ff-day-1-in-closing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FF &#8211; Day 1 &#8211; Adobe Mobile Roundtable Lunch</title>
		<link>http://blog.hydrotik.com/2007/09/19/ff-day-1-adobe-mobile-roundtable-lunch/</link>
		<comments>http://blog.hydrotik.com/2007/09/19/ff-day-1-adobe-mobile-roundtable-lunch/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 18:44:30 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Forward 07]]></category>

		<guid isPermaLink="false">http://blog.hydrotik.com/2007/09/19/ff-day-1-adobe-mobile-roundtable-lunch/</guid>
		<description><![CDATA[Had lunch with a number of fellow developers, many familiar names. We all met with Adobe reps regarding Flash Lite and mobile devices. It was largely a marketing research discussion, but good to give input on something I will be getting more into and I feel will be a strong direction for flash. Mario Klingemann [...]]]></description>
			<content:encoded><![CDATA[<p>Had lunch with a number of fellow developers, many familiar names. We all met with Adobe reps regarding Flash Lite and mobile devices. It was largely a marketing research discussion, but good to give input on something I will be getting more into and I feel will be a strong direction for flash. Mario Klingemann (Quasimondo), Joshua Hirsch (Big Spaceship), Alessandro Pace (biskero), and a few other talented and heavy Flash Lite users. Didn't when the phone, but I got a free Friends of Ed Flash Mobile book.. shweeet</p>
<p>The major points seemed to be centered around the penetration of Flash Light on mobile devices. My biggest gripe is that I don't have a phone that supports it, which isn't really Adobe's fault. No flash for the iPhone until Apple gets its act together, but you can expect a strong push from Adobe to revamp their approach to Mobile.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hydrotik.com/2007/09/19/ff-day-1-adobe-mobile-roundtable-lunch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>FF &#8211; Day 1 &#8211; 8:28</title>
		<link>http://blog.hydrotik.com/2007/09/19/ff-day-1-828/</link>
		<comments>http://blog.hydrotik.com/2007/09/19/ff-day-1-828/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 12:28:33 +0000</pubDate>
		<dc:creator>djdonovan</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Forward 07]]></category>

		<guid isPermaLink="false">http://blog.hydrotik.com/2007/09/19/ff-day-1-828/</guid>
		<description><![CDATA[Well here it is! Flash Forward otherwise known as FnF (Flash Nerd Fest) and I'm ready to get my nerd on. I'm excited to be here as it's nice to take my mind off of day to day flash work and get creative. About to hit the keynote speech and looking forward to the festivities [...]]]></description>
			<content:encoded><![CDATA[<p>Well here it is! Flash Forward otherwise known as FnF (Flash Nerd Fest) and I'm ready to get my nerd on. I'm excited to be here as it's nice to take my mind off of day to day flash work and get creative. About to hit the keynote speech and looking forward to the festivities today. I want to slap myself as I forgot my power cord to my laptop charger but I think I can round one up down the street. Posts might be sparce today. Oh look I got Colin Moock's Essential AS3 book for free! <img src='http://blog.hydrotik.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hydrotik.com/2007/09/19/ff-day-1-828/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
