<?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>ArKaos Blog &#187; flash</title>
	<atom:link href="http://www.arkaos.net/blog/tag/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arkaos.net/blog</link>
	<description>The corporate blog of ArKaos, a leader in technology for live visual performances.</description>
	<lastBuildDate>Tue, 15 Nov 2011 09:06:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Using Flash ActionScript 3 in GrandVJ 1.2b1</title>
		<link>http://www.arkaos.net/blog/2009/10/engineering/using-flash-actionscript-3-in-grandvj/</link>
		<comments>http://www.arkaos.net/blog/2009/10/engineering/using-flash-actionscript-3-in-grandvj/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 12:41:56 +0000</pubDate>
		<dc:creator>nostromo</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grandvj]]></category>

		<guid isPermaLink="false">http://www.arkaos.net/blog/?p=775</guid>
		<description><![CDATA[As you might have seen from the list of new features in GrandVJ 1.2, we now have support for Flash ActionScript 3. Here's the tech talk on how to code your Flash animations in ActionScript 3 for use with GrandVJ 1.2.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" src="http://www.arkaos.net/blog/wp-content/uploads/2009/08/flash-logo.jpg" alt="" width="150" height="150" /><br />
As you might have seen from the list of <a href="http://www.arkaos.net/blog/2009/10/engineering/grandvj-supports-flash-as3-quartz-composer-apc40/">new features in GrandVJ 1.2</a>, we now have support for Flash ActionScript 3.<br />
(<em>Update:</em> <a title="MediaMaster - DMX video software for lighting designers" href="http://www.arkaos.net/show-lighting/mediamaster/" target="_blank">MediaMaster</a> also supports AS3 as of <a title="ArKaos MediaMaster 1.2 beta1 with audio" href="http://www.arkaos.net/blog/2010/01/engineering/arkaos-mediamaster-1-2-beta1-with-audio/">version 1.2</a>, so this is valid for <a title="MediaMaster - DMX video software for lighting designers" href="http://www.arkaos.net/show-lighting/mediamaster/" target="_blank">MediaMaster</a> also).</p>
<p>The issue that prevented previous version to support ActionScript 3 was that Adobe has upgraded their security mechanism preventing global variable declarations to be exposed to external parties (as explained in <a href="http://www.arkaos.net/blog/2009/10/tips/create-dynamic-flash-text-for-grandvj/">this great tutorial</a> by Ben Guerrette).</p>
<p>However, in ActionScript 3, you can declare functions to act as external interface, allowing to communicate with the Flash movie through a specified channel.<span id="more-775"></span></p>
<p>So in order to retrieve/set variables in ActionScript 3, you need to create two functions &#8220;arkSetVariable&#8221; &amp; &#8220;arkGetVariable&#8221; and declare them as external interface:</p>
<p><code>import flash.external.ExternalInterface;</code></p>
<p><code>ExternalInterface.addCallback("arkSetVariable",arkSetVariable);<br />
ExternalInterface.addCallback("arkGetVariable",arkGetVariable);</code></p>
<p><code>function arkSetVariable(varname:String, varval:String):void {<br />
...<br />
}</code></p>
<p><code>function arkGetVariable(varname:String):String {<br />
}</code></p>
<p><code> </code></p>
<p>The way you decide to implement these function is pretty much up to you. Since ActionScript 3 supports named arrays, an easy implementation would be:</p>
<p><code>function arkSetVariable(varname:String, varval:String):void {<br />
arkVariable[varname]=varval ;<br />
}</code></p>
<p><code> </code></p>
<p><code>function arkGetVariable(varname:String):String {<br />
return arkVariable[varname] ;<br />
}<br />
</code></p>
<p>As these function use an array <em>arkVariable</em> using the variable name as index.</p>
<p>One last thing we need to do is to make sure the variable we need are initialised at startup. Failing to do this, they won&#8217;t exist in the array and <a title="vj software grandvj arkaos video mixing" href="http://www.arkaos.net/vj-dj/grandvj/" target="_blank">GrandVJ</a> will think they don&#8217;t exist and won&#8217;t update them.</p>
<p>Something like:</p>
<p><code>arkSetVariable("text","undefined") ;<br />
</code></p>
<p>Will call our function to set the &#8220;text&#8221; variable to &#8220;undefined&#8221; so that it is seen and updated by <a title="vj software grandvj arkaos video mixing" href="http://www.arkaos.net/vj-dj/grandvj/" target="_blank">GrandVJ</a>.</p>
<p><a href="ftp://ftp.arkaos.net/pub/Support/AS3Template.zip">Here&#8217;s a little zip file</a> containing a Flash file and it&#8217;s source code so you have a place to start with.</p>
<p>Let us know how it works for you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arkaos.net/blog/2009/10/engineering/using-flash-actionscript-3-in-grandvj/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>GrandVJ 1.2b1 supports Flash AS3, Quartz Composer, APC40 and more</title>
		<link>http://www.arkaos.net/blog/2009/10/engineering/grandvj-supports-flash-as3-quartz-composer-apc40/</link>
		<comments>http://www.arkaos.net/blog/2009/10/engineering/grandvj-supports-flash-as3-quartz-composer-apc40/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 12:48:05 +0000</pubDate>
		<dc:creator>FraKtus</dc:creator>
				<category><![CDATA[Engineering]]></category>
		<category><![CDATA[akai]]></category>
		<category><![CDATA[controller]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grandvj]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://www.arkaos.net/blog/?p=762</guid>
		<description><![CDATA[GrandVJ 1.2b1 is out for testing! It comes with ton's of cool new toys such Actionscript 3 support, Quartz Composer player, Akai APC40 template and much, much more!]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.arkaos.net/vj-dj/grandvj/"><img class="alignright" src="http://www.arkaos.net/medias/press/grandvj2.gif" alt="" width="264" height="78" /></a>We just released a new beta version of <a title="GrandVJ - Eight channels VJ software for real time HD video mixing" href="http://www.arkaos.net/vj-dj/grandvj/" target="_blank">GrandVJ</a>, you can download it from our forums:</p>
<p><a href="http://www.arkaos.net/forum/viewtopic.php?f=26&amp;t=6828">http://www.arkaos.net/forum/viewtopic.php?f=26&amp;t=6828</a></p>
<p>This version has many new cool things which are detailed in the forum post, here is a recap:</p>
<ul>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">New ultra smooth engine</span></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">Support for Akai APC40 &amp; Generic midi feedback<br />
<span style="font-weight: normal;"> (also for Behringer BCR2000/BCF2000, Livid OHM, ..)</span></span></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">Quartz composer player </span><span style="font-weight: bold; padding: 0px; margin: 0px;">(Mac OS X)</span></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">Support for Flash Actionscript 3</span></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">Cell layer assignment</span></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">Mixer state saving</span></li>
<li><strong>Added master blackout button</strong></li>
<li><strong>New enhanced soft-edging algorithm</strong></li>
<li><strong>Added vertical/horizontal position presets for TripleHead2Go</strong></li>
<li><strong>Several Bug fixes.</strong></li>
<li><span style="font-weight: bold; padding: 0px; margin: 0px;">New fullscreen option </span><span style="font-weight: bold; padding: 0px; margin: 0px;">(PC)</span></li>
</ul>
<p>We plan to ship the final version at the end of this month so we encourage you to check if this new version is working fine and to report any problems or suggestions by creating a topic in the <a title="GrandVJ forum" href="http://www.arkaos.net/forum/viewforum.php?f=26" target="_blank">GrandVJ forum</a>.</p>
<p>Happy testing, we hope you will have as much fun using this version as we had to code it!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arkaos.net/blog/2009/10/engineering/grandvj-supports-flash-as3-quartz-composer-apc40/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>How To: Create audio-reactive Flash for GrandVJ</title>
		<link>http://www.arkaos.net/blog/2009/09/tips/create-audio-reactive-flash-for-grandvj/</link>
		<comments>http://www.arkaos.net/blog/2009/09/tips/create-audio-reactive-flash-for-grandvj/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 10:02:48 +0000</pubDate>
		<dc:creator>ECIN</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grandvj]]></category>
		<category><![CDATA[mediamaster]]></category>
		<category><![CDATA[nuvj]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[visuals]]></category>

		<guid isPermaLink="false">http://www.arkaos.net/blog/?p=590</guid>
		<description><![CDATA[Here’s the first in a series of tutorials showing how to take advantage of the Flash capabilities within ArKaos GrandVJ. Note that it will also work for NuVJ and MediaMaster since the variables are the same. In this tutorial Ben Guerrette explains how to tap into the EQ data to create some simple audio-reactive animations.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-388" src="http://www.arkaos.net/blog/wp-content/uploads/2009/08/flash-logo.jpg" alt="flash logo" width="150" height="150" /><em>A post by Guest Author VJ Ecin (Ben Guerrette), find more about him at the end of this article..</em></p>
<p>As promised, here’s the first in a series of tutorials showing how to take advantage of the Flash capabilities within ArKaos <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj/grandvj/" target="_blank">GrandVJ</a>. Note that it will also work for <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/nuvj/" target="_blank">NuVJ</a> and <a title="MediaMaster video dmx media server software" href="http://www.arkaos.net/show-lighting/mediamaster/" target="_blank">MediaMaster</a> since the variables are the same.</p>
<p>In this tutorial I’ll explain how to tap into the EQ data to create some simple audio-reactive animations. We’ll be using some basic ActionScript 2.0 for the inexperienced Flash programmer. I won’t go into much detail on the how the code works but it should be enough of an introduction to allow some experimentation in creating new content for your VJ arsenal.</p>
<p>You can download the <a title="Audioreactive Flash for GrandVJ" href="http://www.arkaos.net/blog/wp-content/uploads/2009/09/ArKaos_GrandVJ_Flash_EQ1.zip">final .fla and .swf files here</a> or follow along the video tutorial below.<span id="more-590"></span></p>
<p style="text-align: center;">
<object id='monFlash' type='application/x-shockwave-flash' data='http://www.arkaos.net/blog/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' width='640' height='360'><param name='movie' value='http://www.arkaos.net/blog/wp-content/plugins/hana-flv-player/template_maxi_1.6.0/template_maxi/player_flv_maxi.swf' /><param name='allowFullScreen' value='true' /><param name='wmode' value='transparent'><param name='FlashVars' value='flv=http://www.arkaos.net/blog/wp-content/uploads/2009/09/ArKaos_GrandVJ_Flash_EQ1.flv&amp;width=640&amp;height=360&amp;autoplay=&amp;autoload=1&amp;loop=&amp;showstop=1&amp;showvolume=1&amp;showtime=1&amp;showfullscreen=1&amp;srt=1' />

</object></p>
<div class="promote">
<h4>About the author: VJ Ecin (Ben Guerrette):</h4>
<p>Ben Guerrette is an interactive motion graphics designer and VJ from Los Angeles, he has developed audio-reactive Flash animations that comes bundled with <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/grandvj/" target="_blank">GrandVJ</a> and <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/nuvj/" target="_blank">NuVJ</a>. He is also the founder of <a title="Portal for sharing and trading of Flash visuals" href="http://www.triggermotion.com/" target="_blank">TriggerMotion</a>, a portal for sharing and trading of Flash visuals.</p>
<p>Ben is spending a lot of time making these cool tutorials, if you like them, let him know and spread the word! Also, be sure to check out his links below..</p>
<ul>
<li>Flash Fileshare: <a href="http://triggermotion.com/fileshare.php" target="_blank">http://triggermotion.com/fileshare.php</a></li>
<li>Flash Development: <a href="http://www.merj.com" target="_blank">http://www.merj.com</a></li>
<li>VJ Demo Reel from 04’: <a href="http://triggermotion.com/video/reel.htm" target="_blank">http://triggermotion.com/video/reel.htm</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arkaos.net/blog/2009/09/tips/create-audio-reactive-flash-for-grandvj/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Advantages of using Flash for VJ content</title>
		<link>http://www.arkaos.net/blog/2009/08/tips/flash-for-vj-content/</link>
		<comments>http://www.arkaos.net/blog/2009/08/tips/flash-for-vj-content/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 12:20:19 +0000</pubDate>
		<dc:creator>ECIN</dc:creator>
				<category><![CDATA[Hints & Tips]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grandvj]]></category>
		<category><![CDATA[nuvj]]></category>

		<guid isPermaLink="false">http://www.arkaos.net/blog/?p=383</guid>
		<description><![CDATA[While a lot of VJ content is produced with high-end motion graphics, 3D modeling, and video editing software, Flash provides some advantages over these platforms not immediately obvious.]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-388" src="http://www.arkaos.net/blog/wp-content/uploads/2009/08/flash-logo.jpg" alt="flash logo" width="150" height="150" /><em>A post by Guest Author VJ Ecin (Ben Guerrette), find more about him at the end of this article..</em></p>
<p>While a lot of VJ content is produced with high-end motion graphics, 3D modeling, and video editing software, Flash provides some advantages over these platforms not immediately obvious. Although its primarily purpose is as a tool for web development and user interface design, its now a portable weapon of choice that fits nicely into any VJ’s arsenal. Besides its scalability, small file size and custom programming abilities, many video mixing software companies like ArKaos, are now embracing its capabilities by adding the ability to feed Flash EQ and text data for real-time visual manipulation.<span id="more-383"></span></p>
<p>Adobe’s Flash has grown significantly since its initial 1.0 release that focused solely around animation. Not until version 4.0 did it receive full scripting implementation allowing for some exciting new visual opportunities. It was widely considered nothing more than a toy by serious programmers until the release of ActionScript 2.0. With the recent release of ActionScript 3.0, the majority of new Flash users typically come from a development background. Animators attracted in to 1.0 have likely moved on to other packages or embraced ActionScript for all of its frustration and glory. Even then, Flash still attracts all forms of designers, developers animators and dabblers.</p>
<p>Since my discovery of VJ’ing I immediately saw the advantages of using Flash. With the majority of my content being video I shot with my Sony Digitial8 camcorder, the juxtaposition between the gritty scenery I filmed and the hard crisp lines of vector objects of Flash, provided the visual style I was aiming to achieve. Some simple vector animations on a black or white background are great matte’s for luma key effects showing the footage in or behind those animations.</p>
<p>One of Flashes strengths lies in its ability to be completely resolution independent. As we grow to higher resolution standards, Flash grows with us. Additionally, changing aspect ratios to accommodate various display environments is as simple as opening the source file, changing the document properties and publishing. No need for re-renders or rebuilds with higher resolution source material.</p>
<p>Compared to After Effects, Flash may seem limited in its abilities. The seasoned motion graphics artist might gawk at the simplicity of the Flash timeline and tools available. Its strengths lie in the simplicity of its vector animation tools. With a little bit of ActionScript knowledge combined with a few timeline tweens you can create some pretty incredible particle style effects. I’ve found trying to achieve similar effects in After Effects using mask layers &amp; plugins tedious and time consuming. Don’t get me wrong, After Effects is still damn incredible, but they each excel in their own way.</p>
<p><a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/grandvj/" target="_blank">ArKaos GrandVJ</a> provides some new Flash functionality not available in <a title="ArKaos VJ MIDI - MIDI video software" href="http://www.arkaos.net/vj-dj/vjmidi/" target="_blank">ArKaos VJ Midi</a> by way of a 9 band audio EQ. Additionally, it no longer relies on the Flash 5 player and ActionScript 2.0 can now be utilized. <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/grandvj/" target="_blank">GrandVJ</a> works best with timeline based scripting so the class based system of ActionScript 3.0 isn’t recommended. In addition to the 9 band EQ there’s also variables for Low, Mid &amp; High. Tying movie clip properties, X position, Y position, rotation, etc, to any of these variables gives some pretty cool audio-reactive effects. Crawl outside of the standard EQ style audio-responsive box and you can build objects that grow and populate based on any of the 9 bands values. Consider a simple rain animation where the speed and size of the rain drops increase exponentially. Use an additional band to control the direction of the rain and you end up with a raining life form that reacts and grows with the music.</p>
<p>I spend my day job as a web developer so I continually see new ways Flash can be used in my VJ sets. It’s sometimes difficult to stay focused on work when all I wanted to do is spend my time building new content. Fortunately there’s a trade-off in that the ideas I have for Flash VJ content sometimes carry over into the websites I build and can provide a new approach to the execution of my projects. With a little ActionScript and some simple vector shapes, the opportunities are endless.</p>
<p>Keep an eye out for a future article covering the basics on creating audio-reactive Flash animations for use with <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/grandvj/" target="_blank">ArKaos GrandVJ</a></p>
<div class="promote">
<h4>About the author: VJ Ecin (Ben Guerrette):</h4>
<p>Ben Guerrette is an interactive motion graphics designer and VJ from Los Angeles, he has developed audio-reactive Flash animations that comes bundled with <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/grandvj/" target="_blank">GrandVJ</a> and <a title="GrandVJ - VJ software" href="http://www.arkaos.net/vj-dj-/nuvj/" target="_blank">NuVJ</a>. He is also the founder of <a title="Portal for sharing and trading of Flash visuals" href="http://www.triggermotion.com/" target="_blank">TriggerMotion</a>, a portal for sharing and trading of Flash visuals.</p>
<ul>
<li>Flash Fileshare: <a href="http://triggermotion.com/fileshare.php" target="_blank">http://triggermotion.com/fileshare.php</a></li>
<li>Flash Development: <a href="http://www.merj.com" target="_blank">http://www.merj.com</a></li>
<li>VJ Demo Reel from 04’: <a href="http://triggermotion.com/video/reel.htm" target="_blank">http://triggermotion.com/video/reel.htm</a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.arkaos.net/blog/2009/08/tips/flash-for-vj-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LaVa &#8211; Flash Video Mixing Workshop</title>
		<link>http://www.arkaos.net/blog/2009/07/events/lava-flash-video-mixing/</link>
		<comments>http://www.arkaos.net/blog/2009/07/events/lava-flash-video-mixing/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 15:13:51 +0000</pubDate>
		<dc:creator>polanri</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[grandvj]]></category>
		<category><![CDATA[visuals]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://www.arkaos.net/blog/?p=191</guid>
		<description><![CDATA[ArKaos is pleased to sponsor La-Va.org's Flash Video Mixing Workshop: an afternoon of lectures, live demonstrations, and discussions of programming techniques, platform quirks, and methods of creating interactive Flash visuals in a live setting.]]></description>
			<content:encoded><![CDATA[<table style="border: 1px solid #DDDDDD; margin-left:10px;" border="0" cellspacing="6" cellpadding="0" width="162" align="right">
<tbody>
<tr>
<td style="border:none;" align="center" valign="top"><a href="http://la-va.org/rev/147/"><img title="la-va-flash150x175" src="http://www.arkaos.net/blog/wp-content/uploads/2009/07/la-va-flash150x175.jpg" alt="la-va-flash150x175" width="150" height="175" /></a></td>
</tr>
<tr>
<td style="border:none;" align="center" valign="top">
<p align="center"><strong>July 21, 2009<br />
5:00 pm to 8:00 pm</strong><br />
Rich Media Institute<br />
525 Venezia Ave.,<br />
Venice, CA, 90291</td>
</tr>
</tbody>
</table>
<h5>How to create interactive Flash animations for <a title="GrandVJ - VJ Software" href="http://www.arkaos.net/vj-dj/grandvj/ ">GrandVJ</a>?<br />
Learn with the pros and raffle a free license!</h5>
<p>ArKaos is pleased to sponsor <a title="La-Va.org: Flash Video Mixing Workshop" href="http://la-va.org/rev/147/">La-Va.org&#8217;s Flash Video Mixing Workshop</a>: an afternoon of lectures, live demonstrations, and discussions of programming techniques, platform quirks, and methods of creating interactive Flash visuals in a live setting.</p>
<p>Flash animation has become a weapon of choice in a VJ’s arsenal due to its small file size, flexible scalability, and (most importantly) the potential for interactive programmatic elements.</p>
<p>Ben Guerrette (VJ ECIN &#8211; creator of <a title="Trigger Motion" href="http://www.triggermotion.com/" target="_blank">Trigger Motion</a>), will demonstrate developing audio reactive Flash visuals for use with Arkaos <a title="GrandVJ - VJ Software" href="http://www.arkaos.net/vj-dj/grandvj/ ">GrandVJ</a>. Ben has worked with ArKaos to integrate Flash into <a title="GrandVJ - VJ Software" href="http://www.arkaos.net/vj-dj/grandvj/ ">GrandVJ</a> and the <a title="NuVJ Video Mixer" href="http://www.arkaos.net/vj-dj/nuvj/ ">Numark NuVJ</a> in addition to providing stock Flash visuals included with both releases.</p>
<p><a title="Eric Medine" href="http://www.ericmedine.com/" target="_blank">Eric Medine</a> (MkUltra) will be demonstrating the interactive and dynamic text capabilities of Flash as well as MIDI-reactive Flash animation.</p>
<p>Following the lectures and technical demonstrations will be a raffle for a licensed version of Arkaos <a title="GrandVJ - VJ Software" href="http://www.arkaos.net/vj-dj/grandvj/ ">GrandVJ</a> and Resolume v3, and a live Vj battle between MkUltra and ECIN.</p>
<p>Check out the announcement on the <a title="LaVa Blog" href="http://la-va.org/rev/147/">Lav-Va.org Blog</a> for more info!<span id="more-191"></span></p>
<h5>About LaVa (Los Angeles Video Artists)</h5>
<p>La-Va (Los Angeles Video Artists) is a loosely organized communtiy of video artists working primarily in the field of live video mixing and improvised visuals. The goal of the LaVa community is to promote and nurture the movement of video mixing and improvisational video art in the greater Los Angeles area.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.arkaos.net/blog/2009/07/events/lava-flash-video-mixing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

