<?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>Hello. My name is Václav Vančura. &#187; animation</title>
	<atom:link href="http://vaclav.vancura.org/tag/animation/feed" rel="self" type="application/rss+xml" />
	<link>http://vaclav.vancura.org</link>
	<description></description>
	<lastBuildDate>Sat, 31 Jul 2010 12:47:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Dummy Tween Plugin</title>
		<link>http://vaclav.vancura.org/dummy-tween-plugin</link>
		<comments>http://vaclav.vancura.org/dummy-tween-plugin#comments</comments>
		<pubDate>Sun, 02 May 2010 21:26:39 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[falanxia]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=2433</guid>
		<description><![CDATA[As I said before, last few months I&#8217;ve been working for Falanxia.com, where I help to develop social games in Flash (and more platforms coming). I was not very happy with the way how to periodically call a method: var timer:Timer = new Timer(10, 100); // call a method 100 times with 10 ms delay) [...]]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A somewhat different approach to periodical calling of a method. This time with TweenLite/TweenMax by <a href="http://greensock.com">Greensock</a></span>
</p>

<p>As I said before, last few months I&#8217;ve been working for <a href="http://falanxia.com">Falanxia.com</a>, where I help to develop social games in Flash (and more platforms coming). I was not very happy with the way how to periodically call a method:</p>

<pre class="brush:as3">
var timer:Timer = new Timer(10, 100); // call a method 100 times with 10 ms delay)
timer.addEventListener(TimerEvent.TIMER, method);
timer.start();
</pre>

<p>Is there a shorter approach to do the same thing? While we already use TweenLite/TweenMax a lot, I thought there has to be a plugin which should handle this task (no, I don&#8217;t need TweenLite.delayedCall(). Well, nope, there&#8217;s not. But sure it can be handled this way:</p>

<pre class="brush:as3">
var tweenObj:Object = {pass:0};
TweenLite.to(tweenObj, 1, {ease:Liner.easeNone, onUpdate:method}); // 100 * 10 ms = 1 second
</pre>

<p>IMHO this way is a bit cumbersome and you need to create an Object to be tweened. I came up with a simple TweenLite plugin to do the job:</p>

<pre class="brush:as3">
/*
 * Falanxia Utilitaris.
 *
 * Copyright (c) 2010 Falanxia (http://falanxia.com)
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

package com.falanxia.utilitaris.plugins {
    import com.greensock.*;
    import com.greensock.plugins.*;



    /**
     * Dummy tween plugin.
     *
     * @author Vaclav Vancura @ Falanxia a.s. vaclav@falanxia.com
     * @author Falanxia (<a href="http://falanxia.com">falanxia.com</a>, <a href="http://twitter.com/falanxia">@falanxia</a>)
     * @since 1.0
     */
    public class DummyTweenPlugin extends TweenPlugin {


        public static const API:Number = 1.0;

        protected var _target:Object;



        /**
         * Constructor.
         */
        public function DummyTweenPlugin() {
            super();
            this.propName = "dummy";
            this.overwriteProps = ["dummy"];
        }



        /**
         * Tween initialization.
         * Gets called when any tween of the special property begins. Store any initial values
         * and/or variables that will be used in the "changeFactor" setter when this method runs.
         * @param target Target object of the TweenLite instance using this plugin
         * @param value The value that is passed in through the special property in the tween.
         * @param tween The TweenLite or TweenMax instance using this plugin.
         * @return If the initialization failed, it returns false. Otherwise true. It may fail if, for example, the plugin requires that the target be a DisplayObject or has some other unmet criteria in which case the plugin is skipped and a normal property tween is used inside TweenLite
         */
        override public function onInitTween(target:Object, value:*, tween:TweenLite):Boolean {
            return true;
        }
    }
}
</pre>

<p>How to use it?</p>

<pre class="brush:as3">
TweenPlugin.activate([DummyTweenPlugin]); // first you need to activate the plugin, but only once in the whole app
TweenLite.to(this, 1.0, {dummy:{}, onUpdate:method});
</pre>

<p>This way there&#8217;s no need to create an Object variable. I think it&#8217;s a bit simpler. Actually this article took much more time to write than to code the DummyTweenPlugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/dummy-tween-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Involver Media Player</title>
		<link>http://vaclav.vancura.org/involver-media-player-featured</link>
		<comments>http://vaclav.vancura.org/involver-media-player-featured#comments</comments>
		<pubDate>Wed, 21 Oct 2009 09:38:47 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[sideshow]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1852</guid>
		<description><![CDATA[The request sent from Sideshow and Involver was clear: to prepare the most advanced video player today. With plugin support, skinning, color theming (to fit any client color combination), advanced error recovery and other bleeding edge features.]]></description>
			<content:encoded><![CDATA[<p>The request sent from Sideshow and Involver was clear: to prepare the most advanced video player today. With plugin support, skinning, color theming (to fit any client color combination), advanced error recovery and other bleeding edge features.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/involver-media-player-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Involver Media Player</title>
		<link>http://vaclav.vancura.org/involver-media-player</link>
		<comments>http://vaclav.vancura.org/involver-media-player#comments</comments>
		<pubDate>Wed, 21 Oct 2009 08:07:32 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[sideshow]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1834</guid>
		<description><![CDATA[The request sent from Sideshow and Involver was clear: to prepare the most advanced video player today. With plugin support, skinning, color theming (to fit any client color combination), advanced error recovery and other bleeding edge features.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">The request sent from Sideshow and Involver was clear: to prepare the most advanced video player today. With plugin support, skinning, color theming (to fit any client color combination), advanced error recovery and other bleeding edge features.</span>
</p>

<p>
<div class="fullsize-image"><img src="http://vaclav.vancura.org/data/2009/10/involver-logo.png" class="transparent " /></div>

</p>

<p>The Involver Media Player is coded in pure ActionScript 3 (to save space and hence bandwidth), with a help by PureMVC, BulkLoader, TweenMax libraries and a lot of my own open source classes.</p>

<p>Today you can meet this player on Facebook and other social networks. I worked on this player for several months and I think the request was successfully fulfilled. As you can see below, the feature set is pretty comprehensive.</p>

<h3>Features:</h3>

<ul>
<li>Skinning with custom loaded skins saved as SWFs, easily compiled in Adobe Flash (no Flex and AS3 coding needed, so it&#8217;s very easy to prepare new skins),</li>
<li>Color theming of all skin elements (via config XML),</li>
<li>Configuration from config XML, overriding any settings via FlashVars and remoting,</li>
<li>Plugins (external in remote SWFs, internal bundled with player),</li>
<li>Advanced system and network error recovery,</li>
<li>Logging locally via LocalConnection, trace() and remotely to logging remoting endpoint,</li>
<li>JavaScript events to invoke on a certain event (play, pause, stop, checkpoint spotted, plugin widget clicked, etc.),</li>
<li>Player can be fully controlled from JavaScript,</li>
<li>Full playback support (play, pause, skip, seek, load progress, playback progress, volume, mute),</li>
<li>Full playlist support (sequential playback, random playback, intro playback),</li>
<li>Fullscreen support,</li>
<li>Titles, logos and other graphics on screen while playing, with animation and precise positioning,</li>
<li>Mouse wheel support to control volume and/or seeking,</li>
<li>Set checkpoints in video and playlist to call a function or plugin,</li>
<li>Plugins can add custom buttons to the toolbar, footer and &#8220;More&#8221; screen,</li>
<li>Advanced animation when resizing player window,</li>
<li>Plugin tickers during video playback,</li>
<li>Preroll / postroll plugins and actions,</li>
<li>Popup blocker handler and ticker,</li>
<li>Galleries of images and videos,</li>
<li>Carousel to navigate images and videos,</li>
<li>Facebook application plugin,</li>
<li>Discussion plugin (with a playback ticker),</li>
<li>Link plugin (with a list of links and playback ticker),</li>
<li>Playlist navigator plugin,</li>
<li>Image viewer plugin,</li>
<li>Slideshow plugin,</li>
<li>RSS reader plugin,</li>
<li>Share this video plugin,</li>
<li>Signup plugin,</li>
<li>Stream listing plugin.</li>
</ul>

<h3>Examples:</h3>

<ul>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/1-basic-small.php" rel="zoombox 300 300">Basic player with two plugins</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/2-larger.php" rel="zoombox 600 400">Larger player with two plugins</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/3-full-page-resize.php" target="_blank">Scaling full window player (opens a new window)</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/6-try-clicking-the-video.php" rel="zoombox 800 600">Player with mouse click handler to show a page</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/10-more-plugins.php" rel="zoombox 800 600">More plugins</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/11-link-plugin-previews.php" rel="zoombox 800 480">Notification bar handled by the Link plugin</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/12-quiz-plugin-previews.php" rel="zoombox 800 480">Notification bar handled by the Quiz plugin</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/13-rss-plugin-previews.php" rel="zoombox 800 480">Notification bar handled by the RSS plugin</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/14-resize-plugin-menu.php" target="_blank">A lot of plugins, try resizing browser window after clicking &#8220;More&#8221; button (opens a new window)</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/15-theming.php" rel="zoombox 800 480">Color theming from configuration XML</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/16-muppets.php" rel="zoombox 800 480">Muppets skin by Alex Schleifer</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-1/17-theming-muppets.php" rel="zoombox 800 480">Theming Muppets skin by Alex Schleifer</a></li>
<li><a href="http://mirror.vaclav.vancura.org/involver-player-2/sunkist-skin.php" rel="zoombox 300 250">Sunkist skin by Sunkist Soda</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/involver-media-player/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ve víru velkoměst</title>
		<link>http://vaclav.vancura.org/ve-viru-velkomest-featured</link>
		<comments>http://vaclav.vancura.org/ve-viru-velkomest-featured#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:01:43 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[frognfly]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[jiglib]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1772</guid>
		<description><![CDATA[Staropramen asked Flier Creation and me to create a visually expressive game called "Ve víru velkoměst". We thought isometric view would be awesome for a game of this type. My part of job was to bring to life the whole client side, except drawings (done by Vladimír 'Frognfly' Chalupa) - that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work. I really enjoyed this job, as I was able to do what I love, from scratch to finish.]]></description>
			<content:encoded><![CDATA[<p>Staropramen asked Flier Creation and me to create a visually expressive game called &#8220;Ve víru velkoměst&#8221;. We thought isometric view would be awesome for a game of this type. My part of job was to bring to life the whole client side, except drawings (done by Vladimír &#8216;Frognfly&#8217; Chalupa) &#8211; that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work. I really enjoyed this job, as I was able to do what I love, from scratch to finish.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/ve-viru-velkomest-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Young &amp; Rubicam Prague</title>
		<link>http://vaclav.vancura.org/young-rubicam-prague-featured</link>
		<comments>http://vaclav.vancura.org/young-rubicam-prague-featured#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:37:57 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1623</guid>
		<description><![CDATA[Young &#038; Rubicam Prague site created together with Flier Creation. I've prepared whole client side, client-server bridge, tweaked media recompression settings and helped to design parts of UI and UX.]]></description>
			<content:encoded><![CDATA[<p>Young &#038; Rubicam Prague site created together with Flier Creation. I&#8217;ve prepared whole client side, client-server bridge, tweaked media recompression settings and helped to design parts of UI and UX.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/young-rubicam-prague-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Midsummer</title>
		<link>http://vaclav.vancura.org/midsummer-featured</link>
		<comments>http://vaclav.vancura.org/midsummer-featured#comments</comments>
		<pubDate>Sun, 18 Oct 2009 16:46:05 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Illustration]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1468</guid>
		<description><![CDATA[Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short "animation" done in one night for the project Jsem.cz.]]></description>
			<content:encoded><![CDATA[<p>Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short &#8220;animation&#8221; done in one night for the project Jsem.cz.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/midsummer-featured/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ve víru velkoměst</title>
		<link>http://vaclav.vancura.org/ve-viru-velkomest</link>
		<comments>http://vaclav.vancura.org/ve-viru-velkomest#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:00:09 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[frognfly]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[jiglib]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[papervision3d]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1719</guid>
		<description><![CDATA[Staropramen asked Flier Creation and me to create a visually expressive game called "Ve víru velkoměst".]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Staropramen asked Flier Creation and me<br />to create a visually expressive game called<br />&#8220;Ve víru velkoměst&#8221;.</span>
</p>

<p>
<img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-logo.png" class="transparent inserted " />

We thought isometric view would be awesome for a game of this type. My part of this job was to bring to life the whole client side, except drawings (done by Vladimír &#8216;Frognfly&#8217; Chalupa) &#8211; that means all user interface graphics, icons, animations, Flash, Papervision3D and interactivity is my work.</p>

<p>I really enjoyed this job as I was able to do what I love, from scratch to finish. While designing skinning core, I developed a new skinning library I will open for public use soon. Watch my space on <a href="http://github.com/vancura">GitHub</a>.</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/staropramen-1-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Initial game screen"><img src="http://vaclav.vancura.org/data/2009/10/staropramen-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Initial game screen.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-1-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Basic screen elements"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Basic screen elements.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-2-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="First game mockups"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-2-poster.jpg" class="" /></a><br />
<span class="image-description"><em>First game mockups.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-3-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Overall map with an already bought house and current avatar position"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-3-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Overall map with an already bought house and current avatar position.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-4-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original overall map"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-4-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original overall map.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-5-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original character designer screen, page 1"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-5-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original character designer screen, page 1.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-6-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Original character designer screen, page 2"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-6-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Original character designer screen, page 2.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-7-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Defect window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-7-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Defect window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-8-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Jackpot window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-8-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Jackpot window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-9-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Casino window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-9-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Casino window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-10-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Help a Friend window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-10-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Help a Friend window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-11-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Job window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-11-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Job window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-12-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="New Message window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-12-poster.jpg" class="" /></a><br />
<span class="image-description"><em>New Message window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-13-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Taxi window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-13-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Taxi window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-14-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Jail window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-14-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Jail window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-15-fullsize.jpg" rel="zoombox[ve-viru-velkomest] " title="Webcafe window"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-mockup-15-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Webcafe window.</em> Click the image to see the full resolution screenshot.</span>
</p>

<h3>Animated preloader preview</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-preloader.swf" rel="zoombox[ve-viru-velkomest] 913 472" title="Animated preloader"><img src="http://vaclav.vancura.org/data/2009/06/ve-viru-velkomest-preloader-poster.png" class="" /></a><br />
<span class="image-description">Click to see the preloader preview.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/ve-viru-velkomest/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Myousica Multitrack Editor</title>
		<link>http://vaclav.vancura.org/myousica-multitrack-editor</link>
		<comments>http://vaclav.vancura.org/myousica-multitrack-editor#comments</comments>
		<pubDate>Wed, 31 Dec 2008 22:00:14 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adelao]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1856</guid>
		<description><![CDATA[For this project I prepared online multitrack audio editor, video and audio player and other solutions.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">For this project I prepared online multitrack audio editor, video and audio player and a web site ticker.</span>
</p>

<p>Unfortunately the project is not alive anymore. However all these subprojects were pretty complex and made me much better programmer.</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2009/10/myousica-1-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/01/myousica-1-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<div class="fullsize-image"><a href="http://vaclav.vancura.org/data/2009/10/myousica-2-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/10/myousica-2-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/myousica-3-fullsize.png" rel="zoombox[myousica-multitrack-editor] "><img src="http://vaclav.vancura.org/data/2009/10/myousica-3-poster.png" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/myousica-multitrack-editor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papervision3D: Cube</title>
		<link>http://vaclav.vancura.org/papervision3d-cube</link>
		<comments>http://vaclav.vancura.org/papervision3d-cube#comments</comments>
		<pubDate>Fri, 23 Nov 2007 19:35:21 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[papervision3d]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=161</guid>
		<description><![CDATA[Poslední týden jsem strávil studiem knihovny Papervision3D...]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Poslední týden jsem strávil studiem knihovny <a href="http://wiki.papervision3d.org">Papervision3D</a>&#8230;</span>
</p>

<p><em>Prosím čtěte před spuštěním kostky:</em> Právě jsme s Kaplickem zjistili, že vám kostka pravděpodobně shodí browser, pokud nemáte nejnovější Flash Player. Aktuální build je 9.0.98.0, verzi vašeho pluginu zjistíte <a href="http://www.mediacollege.com/flash/player/version/show.html">zde</a> a aktuální betu Flash Playeru stáhnete <a href="http://labs.adobe.com/downloads/flashplayer9.html">zde</a>.</p>

<p>
<a href="http://vaclav.vancura.org/data/2007/11/Cube.swf" rel="zoombox 600 600" title="Papervision3D: Cube" class="modal"><img src="http://vaclav.vancura.org/data/2009/10/cube.jpg" /></a>
<br /><span class="modal-description">Click the image to launch Flash.</span>
</p>

<p><span id="more-161"></span></p>

<p>Nemůžu se nepodělit o své nadšení, popravdě nečekal jsem, že to s ní půjde tak hladce. Již <a href="http://vaclav.vancura.org/paper-vision">minule</a> jsem dal k dispozici zdroják na animující se koberec, ale vzhledem k tomu, že jsem nepřibalil samotný Papervision, tak to asi nikdo z vás nezkompiloval (pokud si nestáhnul PV3D z SVN nebo jiného zdroje).</p>

<p>V <a href="http://vaclav.vancura.org/data/2007/11/Cube.zip">dnešním balíčku</a> naleznete i kompletní aktuální knihovnu a okomentovaný zdroják. Jediné co potřebujete, je Adobe Flash CS3 (a unzip).</p>

<p>Pokud máte nějaké dotazy, formulář níže je vám k dispozici.</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/papervision3d-cube/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Paper Vision</title>
		<link>http://vaclav.vancura.org/paper-vision</link>
		<comments>http://vaclav.vancura.org/paper-vision#comments</comments>
		<pubDate>Thu, 08 Nov 2007 17:29:32 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[papervision3d]]></category>

		<guid isPermaLink="false">http://localhost/Homepage/Vaclav.Vancura.org-wordpress/?p=156</guid>
		<description><![CDATA[Dlouho mi vrtalo hlavou, proč se knihovna Papervision3D jmenuje jak se jmenuje. Už to vím.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Dlouho mi vrtalo hlavou, proč se knihovna <a href="http://www.papervision3d.org">Papervision3D</a> jmenuje jak se jmenuje. Už to vím.</span>
</p>

<p>Včera jsem se pustil do 3D ve Flashi a dost mne to vzalo. Klikejte, zdroják je <a href="http://vaclav.vancura.org/data/2007/11/Test4.zip">zde</a>.</p>

<p>
<a href="http://vaclav.vancura.org/data/2007/11/Test4.swf" rel="zoombox 744 600" title="Paper Vision" class="modal"><img src="http://vaclav.vancura.org/data/2007/11/Test4.jpg" /></a>
<br /><span class="modal-description">Click the image to launch Flash.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/paper-vision/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Young &amp; Rubicam Prague</title>
		<link>http://vaclav.vancura.org/young-rubicam-prague</link>
		<comments>http://vaclav.vancura.org/young-rubicam-prague#comments</comments>
		<pubDate>Sun, 21 Oct 2007 22:00:34 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[User Interface Coding]]></category>
		<category><![CDATA[User Interface Design]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flier creation]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1604</guid>
		<description><![CDATA[Young &#038; Rubicam Prague site created together with Flier Creation. I've prepared whole client side, client-server bridge, tweaked media recompression settings and helped to design parts of UI and UX.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Young &#038; Rubicam Prague site created together with <a href="http://flier.cz">Flier Creation</a>. I&#8217;ve prepared whole client side, client-server bridge, tweaked media recompression settings and helped to design parts of UI and UX.</span>
</p>

<p>The visual quality and animation experience scales nicely with hardware being used. So when your computer is not powerful enough, you won&#8217;t see so many animations. But well, the site is rather old now, so I suppose you got it with all bells and whistles.</p>

<p>Site is bilingual, so choose your language in the footer.</p>

<h3>Click the images below to view<br />full resolution screenshots.</h3>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-1-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="Initial screen"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-1-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Initial screen.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-2-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="Menu overlay"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-2-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Menu overlay.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-6-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="About us section"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-6-poster.jpg" class="" /></a><br />
<span class="image-description"><em>About Us section</em>. Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-3-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="Video player"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-3-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Video player.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-5-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="Audio player"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-5-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Audio player.</em> Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2009/10/yr-cz-4-fullsize.jpg" rel="zoombox[young-rubicam-prague] " title="Image viewer"><img src="http://vaclav.vancura.org/data/2009/10/yr-cz-4-poster.jpg" class="" /></a><br />
<span class="image-description"><em>Image viewer.</em> Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/young-rubicam-prague/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Síla skupiny</title>
		<link>http://vaclav.vancura.org/sila-skupiny-2</link>
		<comments>http://vaclav.vancura.org/sila-skupiny-2#comments</comments>
		<pubDate>Wed, 20 Jul 2005 22:00:10 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1692</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/sila-skupiny.swf" rel="zoombox 1200 630"><img src="http://vaclav.vancura.org/data/2009/10/neurobion-skila-skupiny-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/sila-skupiny-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Večernyj Zvon</title>
		<link>http://vaclav.vancura.org/vecernyj-zvon</link>
		<comments>http://vaclav.vancura.org/vecernyj-zvon#comments</comments>
		<pubDate>Thu, 23 Dec 2004 22:00:16 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1673</guid>
		<description><![CDATA[Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/vecernyj-zvon.swf" rel="zoombox 1400 1000"><img src="http://vaclav.vancura.org/data/2004/12/neurobion-vecernyj-zvon-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/vecernyj-zvon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Boneyard of Heroes</title>
		<link>http://vaclav.vancura.org/the-boneyard-of-heroes</link>
		<comments>http://vaclav.vancura.org/the-boneyard-of-heroes#comments</comments>
		<pubDate>Mon, 29 Dec 2003 22:00:25 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1679</guid>
		<description><![CDATA[A sad animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">A sad animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/the-boneyard-of-heroes.swf" rel="zoombox 890 540"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-boneyard-of-heroes-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/the-boneyard-of-heroes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xma$</title>
		<link>http://vaclav.vancura.org/xmas</link>
		<comments>http://vaclav.vancura.org/xmas#comments</comments>
		<pubDate>Tue, 23 Dec 2003 22:00:17 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1356</guid>
		<description><![CDATA[Another Christmas animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another Christmas animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/xmas.swf" rel="zoombox 741 766"><img src="http://vaclav.vancura.org/data/2003/12/neurobion-xmas-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/xmas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Love Car</title>
		<link>http://vaclav.vancura.org/love-car</link>
		<comments>http://vaclav.vancura.org/love-car#comments</comments>
		<pubDate>Tue, 23 Sep 2003 22:00:19 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1697</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/lufcar.swf" rel="zoombox 800 680"><img src="http://vaclav.vancura.org/data/2003/09/neurobion-lufcar-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/love-car/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>666</title>
		<link>http://vaclav.vancura.org/666</link>
		<comments>http://vaclav.vancura.org/666#comments</comments>
		<pubDate>Mon, 13 Jan 2003 22:00:18 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1708</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/666.swf" rel="zoombox 946 624"><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-1-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>

<p>
<a href="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-fullsize.png" rel="zoombox "><img src="http://vaclav.vancura.org/data/2003/01/neurobion-666-download-2-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/666/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snowy Zizkov</title>
		<link>http://vaclav.vancura.org/snowy-zizkov</link>
		<comments>http://vaclav.vancura.org/snowy-zizkov#comments</comments>
		<pubDate>Sun, 29 Dec 2002 22:00:16 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[neurobion]]></category>
		<category><![CDATA[pour feliciter]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1685</guid>
		<description><![CDATA[Another animation for the Neurobion.com project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Another animation for the <a href="http://vaclav.vancura.org/tag/neurobion">Neurobion.com</a> project.</span>
</p>

<p>
<a href="http://mirror.vaclav.vancura.org/neurobion/snowy-zizkov.swf" rel="zoombox 721 510"><img src="http://vaclav.vancura.org/data/2002/12/neurobion-snowy-zizkov-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/snowy-zizkov/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hardworker</title>
		<link>http://vaclav.vancura.org/hardworker</link>
		<comments>http://vaclav.vancura.org/hardworker#comments</comments>
		<pubDate>Sun, 15 Sep 2002 22:00:48 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1383</guid>
		<description><![CDATA[I am happy to be a freelancer! A short animation done in one night for the Jsem.cz project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">I am happy to be a freelancer!</span>
</p>

<p>A short animation done in one night for the <a href="http://vaclav.vancura.org/tag/jsem-cz">Jsem.cz</a> project.</p>

<p>
<a href="http://mirror.vaclav.vancura.org/hardworker" rel="zoombox 598 595"><img src="http://vaclav.vancura.org/data/2002/09/hardworker-poster.jpg" class="" /></a><br />
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/hardworker/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Midsummer</title>
		<link>http://vaclav.vancura.org/midsummer</link>
		<comments>http://vaclav.vancura.org/midsummer#comments</comments>
		<pubDate>Tue, 25 Jun 2002 22:00:30 +0000</pubDate>
		<dc:creator>Václav Vančura</dc:creator>
				<category><![CDATA[Illustration]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[jsem.cz]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://vaclav.vancura.org/?p=1357</guid>
		<description><![CDATA[Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half. A short "animation" done in one night for the Jsem.cz project.]]></description>
			<content:encoded><![CDATA[<p>
<span class="perex">Sitting near the pond, waiting to get a chance to drown a drunk coming from the town. The summer splits in half.</span>
</p>

<p>A short &#8220;animation&#8221; done in one night for the <a href="http://vaclav.vancura.org/tag/jsem-cz">Jsem.cz</a> project.</p>

<p>
<div class="fullsize-image"><a href="http://mirror.vaclav.vancura.org/midsummer" rel="zoombox 576 569" title="Midsummer"><img src="http://vaclav.vancura.org/data/2002/01/jsem-midsummer-poster.png" class="transparent " /></a></div>
<span class="image-description">Click the image to see the full resolution.</span>
</p>
]]></content:encoded>
			<wfw:commentRss>http://vaclav.vancura.org/midsummer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
