<?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"
	>

<channel>
	<title>Heimatdesign</title>
	<atom:link href="http://blog.heimatdesign.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.heimatdesign.com</link>
	<description>Free Flash-Tutorials, Design and Typography - Florian Klauer</description>
	<pubDate>Fri, 23 Jul 2010 14:23:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<item>
		<title>Heimat Grotesk - NEW FONT!</title>
		<link>http://blog.heimatdesign.com/2010/07/heimat-grotesk-new-font/</link>
		<comments>http://blog.heimatdesign.com/2010/07/heimat-grotesk-new-font/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 07:28:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemeines]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[Typografie]]></category>

		<category><![CDATA[Font]]></category>

		<category><![CDATA[Tag hinzufügen]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=31</guid>
		<description><![CDATA[Heimat Grotesk - a clean, symmetrical and modern typeface.
Buy on myFonts! -> http://new.myfonts.com/fonts/heimatdesign/heimat-grotesk]]></description>
			<content:encoded><![CDATA[<p>Heimat Grotesk - a clean, symmetrical and modern typeface.<br />
The font was developed by Florian Klauer for display and<br />
body copy uses. What stands out about this font is its<br />
large x-height and constant lineweight. Nearly all letters<br />
bend with a continuous unfaltering style, giving the impression<br />
all letters are cast from the same mold.<br />
Heimat Grotesk comes with two weights plus matching italics with<br />
268 glyphs each, and is available as TrueType and OpenType font.<br />
<img title="Heimat Grotesk" src="http://blog.heimatdesign.com/wp-content/uploads/2010/07/HeimatGrotesk-Poster_720x360_01.png" alt="Heimat Grotesk" width="720" height="360" /><br />
<img title="Characterset" src="http://blog.heimatdesign.com/wp-content/uploads/2010/07/HeimatGrotesk-Poster_720x360_02.png" alt="Characterset" width="720" height="360" /><br />
Buy on myFonts! -> http://new.myfonts.com/fonts/heimatdesign/heimat-grotesk<br />
<a href="http://new.myfonts.com/fonts/heimatdesign/heimat-grotesk"> </a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2010/07/heimat-grotesk-new-font/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Font embedding &#038; CSS [AS3]</title>
		<link>http://blog.heimatdesign.com/2009/06/font-embedding-css-as3/</link>
		<comments>http://blog.heimatdesign.com/2009/06/font-embedding-css-as3/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 07:24:18 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[class]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Font embedding]]></category>

		<category><![CDATA[Stylesheet]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=28</guid>
		<description><![CDATA[Hier eine Klasse zum Erstellen von CSS-formatierten Textfeldern.
In Flash sind lediglich drei Zeilen notwendig:
import com.heimatdesign.text.FormattedTextfield;
var tf:FormattedTextfield = new FormattedTextfield( string, "textStyles.css" );
addChild( tf );
...]]></description>
			<content:encoded><![CDATA[<p>Hier eine Klasse zum Erstellen von CSS-formatierten Textfeldern.<br />
In Flash sind lediglich drei Zeilen notwendig:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3 actionscript3" style="font-family:monospace;"><span style="color: #0033ff; font-weight: bold;">import</span> com.heimatdesign.<span style="color: #004993;">text</span>.FormattedTextfield;
<span style="color: #6699cc; font-weight: bold;">var</span> tf<span style="color: #000000; font-weight: bold;">:</span>FormattedTextfield = <span style="color: #0033ff; font-weight: bold;">new</span> FormattedTextfield<span style="color: #000000;">&#40;</span> cssFormattedString, <span style="color: #990000;">&quot;textStyles.css&quot;</span> <span style="color: #000000;">&#41;</span>;
<span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span> tf <span style="color: #000000;">&#41;</span>;</pre></div></div>

<p>Die Schriften müssen in der Bibliothek verknüpft werden.<br />
Zu beachten ist, dass Flash - abgesehen von Systemschriften - nur lizensierte Fonts einbettet!<br />
In der CSS muss der originale Fontname angegeben werden (nicht der Verknüpfungsname)</p>
<p><img title="font embedding" src="http://blog.heimatdesign.com/wp-content/uploads/2009/06/embedding.jpg" alt="font embedding" width="707" height="455" /></p>
<p><img class="alignnone" title="css" src="http://blog.heimatdesign.com/wp-content/uploads/2009/06/css.jpg" alt="" width="291" height="136" /></p>
<p>Zusätzlich kann ein Object mit vielen zusätzlichen Eigenschaften<br />
mit übergeben werden (zB: antiAliasType, gridFitType, autoSize<br />
selectable, width, height, etc.)<br />
In der ZIP findet Ihr die Klasse mit Anwendungsbeispiel<br />
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/FormattedTextfield.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a><span style="font-size: 10pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;"><br />
</span><span style="font-size: 10pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2009/06/font-embedding-css-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fullscreen Slideshow [AS2/PHP]</title>
		<link>http://blog.heimatdesign.com/2009/03/fullscreen-slideshow-as2php/</link>
		<comments>http://blog.heimatdesign.com/2009/03/fullscreen-slideshow-as2php/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 18:44:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Fullscreen]]></category>

		<category><![CDATA[Slideshow]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=26</guid>
		<description><![CDATA[Als Ergänzung zum Slideshow-Script, hier noch die
Fullscreen-Variante. Bilder könnte Ihr über XML oder
PHP pflegen.
]]></description>
			<content:encoded><![CDATA[<p>Als Ergänzung zum Slideshow-Script, hier noch die<br />
Fullscreen-Variante. Bilder könnte Ihr über XML oder<br />
PHP pflegen.<br />
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/fullscreenSlideshow.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2009/03/fullscreen-slideshow-as2php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Videoplayer Komponente [AS3]</title>
		<link>http://blog.heimatdesign.com/2009/03/videoplayer-komponente-as3/</link>
		<comments>http://blog.heimatdesign.com/2009/03/videoplayer-komponente-as3/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:25:52 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
		
		<category><![CDATA[Animation]]></category>

		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[Component]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[netStream]]></category>

		<category><![CDATA[Player]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=25</guid>
		<description><![CDATA[Endgeile Komponente zur Wiedergabe von Flashvideos!
Etwa 1045026824 mal schicker als die Flash-eigene Komponente,
dazu kinderleicht zu nutzen! Lediglich vier Zeilen Code sind nötig!]]></description>
			<content:encoded><![CDATA[<p>Endgeile Komponente zur Wiedergabe von Flashvideos!<br />
Etwa 1045026824 mal schicker als die Flash-eigene Komponente,<br />
dazu kinderleicht zu nutzen! Lediglich vier Zeilen Code sind nötig!</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript actionscript" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span> vpc:VideoplayerUI = <span style="color: #000000; font-weight: bold;">new</span> VideoplayerUI<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
addChild<span style="color: #66cc66;">&#40;</span> vpc <span style="color: #66cc66;">&#41;</span>;
vpc.<span style="color: #006600;">playlist</span>.<span style="color: #0066CC;">push</span><span style="color: #66cc66;">&#40;</span> <span style="color: #ff0000;">&quot;video1.flv&quot;</span>, <span style="color: #ff0000;">&quot;video2.flv&quot;</span> <span style="color: #66cc66;">&#41;</span>;
vpc.<span style="color: #006600;">playVideo</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>

<a class="downloadme" href="http://blog.heimatdesign.com/downloads/VideoplayerUI.swc"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a>
<p><span style="font-size: 10pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;"><object type="application/x-shockwave-flash" width="850" height="450">
<param name="movie" value="http://blog.heimatdesign.com/wp-content/uploads/2009/03/VideoplayerUI.swf" />
<embed type="application/x-shockwave-flash" width="850" height="450" src="http://blog.heimatdesign.com/wp-content/uploads/2009/03/VideoplayerUI.swf" >
</object>
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2009/03/videoplayer-komponente-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kacheln/Pattern [AS3]</title>
		<link>http://blog.heimatdesign.com/2009/01/kachelnpattern-as3/</link>
		<comments>http://blog.heimatdesign.com/2009/01/kachelnpattern-as3/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 14:02:54 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[Kacheln]]></category>

		<category><![CDATA[Muster]]></category>

		<category><![CDATA[Pattern]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=23</guid>
		<description><![CDATA[Mit der Klasse lassen sich externe Grafiken ganz leicht kacheln.
Nötig sind hierbei nur 3 Zeilen. Beispiele befinden sich der zip.

]]></description>
			<content:encoded><![CDATA[<p>Mit der Klasse lassen sich externe Grafiken ganz leicht kacheln.<br />
Nötig sind hierbei nur 3 Zeilen. Beispiele befinden sich der zip.<br />
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/Pattern.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a><br />
<img class="alignnone" title="Pattern" src="http://blog.heimatdesign.com/wp-content/uploads/2009/01/muster-screenshot.jpg" alt="" width="520" height="366" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2009/01/kachelnpattern-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scrollmenu für Flash [AS2]</title>
		<link>http://blog.heimatdesign.com/2008/12/scrollmenu-fur-flash-as2/</link>
		<comments>http://blog.heimatdesign.com/2008/12/scrollmenu-fur-flash-as2/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 17:49:37 +0000</pubDate>
		<dc:creator>Flo</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Scrollmenu]]></category>

		<category><![CDATA[Slidemenu]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=21</guid>
		<description><![CDATA[Diese Klasse erstellt ein Scrollmenü aus existierenden Movieclips.
Im Grunde gibt es nur zwei Methoden die zur Anwendung nötig sind.
Ein Beispiel mit Source findet ihr im Anhang!]]></description>
			<content:encoded><![CDATA[<p>Diese Klasse erstellt ein Scrollmenü aus existierenden Movieclips.<br />
Im Grunde gibt es nur zwei Methoden die zur Anwendung nötig sind.<br />
Ein Beispiel mit Source findet ihr im Anhang!<br />
<span style="font-size: 10pt; font-family: &quot;Arial&quot;,&quot;sans-serif&quot;;"><object type="application/x-shockwave-flash" width="300" height="300">
<param name="movie" value="http://blog.heimatdesign.com/wp-content/uploads/2008/12/slidemenu.swf" />
<embed type="application/x-shockwave-flash" width="300" height="300" src="http://blog.heimatdesign.com/wp-content/uploads/2008/12/slidemenu.swf" >
</object>
</span><br />
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/SlideMenu.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2008/12/scrollmenu-fur-flash-as2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Slideshow Script [Flash/PHP]</title>
		<link>http://blog.heimatdesign.com/2008/11/slideshow-flashphp/</link>
		<comments>http://blog.heimatdesign.com/2008/11/slideshow-flashphp/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 19:56:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Slideshow]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=20</guid>
		<description><![CDATA[Aufgrund vieler Serveranfragen nach einer vor längerer
Zeit geposteten Datei, hier nochmal das alte Zip-Archiv!
Die Slideshow läuft mit AS1/AS2 und kann über PHP
oder XML gefüttert werden&#8230;
]]></description>
			<content:encoded><![CDATA[<p>Aufgrund vieler Serveranfragen nach einer vor längerer<br />
Zeit geposteten Datei, hier nochmal das alte Zip-Archiv!<br />
Die Slideshow läuft mit AS1/AS2 und kann über PHP<br />
oder XML gefüttert werden&#8230;</p>
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/slideshow.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2008/11/slideshow-flashphp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MP3-Player Klassen [AS2/AS3]</title>
		<link>http://blog.heimatdesign.com/2008/11/mp3-player-klassen-as2as3/</link>
		<comments>http://blog.heimatdesign.com/2008/11/mp3-player-klassen-as2as3/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 20:58:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[as2]]></category>

		<category><![CDATA[as3]]></category>

		<category><![CDATA[class]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Flash]]></category>

		<category><![CDATA[mp3-Player]]></category>

		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=19</guid>
		<description><![CDATA[Die ersten Klassen stehen zum download bereit! Zunächst gibts die 
Audioplayer, jeweils in AS2 und AS3, aus der Klassensammlung. 
Die Player verfügen jedoch über verschiedene Eigenschaften und Methoden, 
können aber beliebig erweitert werden... ]]></description>
			<content:encoded><![CDATA[<p>Die ersten Klassen stehen zum download bereit! Zunächst gibts die<br />
Audioplayer, jeweils in AS2 und AS3, aus der Klassensammlung.<br />
Die Player verfügen jedoch über verschiedene Eigenschaften und Methoden,<br />
können aber beliebig erweitert werden&#8230;<br />
Eine Anleitung zur Verwendung steht natürlich mit im Script.<br />
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/Audioplayer.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a><br />
Hier die Source (AS2):</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript actionscript" style="font-family:monospace;"><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> caurina.<span style="color: #006600;">transitions</span>.<span style="color: #006600;">properties</span>.<span style="color: #006600;">SoundShortcuts</span>;
<span style="color: #0066CC;">import</span> mx.<span style="color: #006600;">utils</span>.<span style="color: #006600;">Delegate</span>;
&nbsp;
&nbsp;
&nbsp;
<span style="color: #000000; font-weight: bold;">class</span> com.<span style="color: #006600;">heimatdesign</span>.<span style="color: #006600;">media</span>.<span style="color: #006600;">Audioplayer</span> <span style="color: #0066CC;">extends</span> <span style="color: #0066CC;">Sound</span>
<span style="color: #66cc66;">&#123;</span>
	<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> acSong		:<span style="color: #0066CC;">Number</span>;
	<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">var</span> mainObj		:<span style="color: #0066CC;">Object</span>		= <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #0066CC;">public</span> 	<span style="color: #000000; font-weight: bold;">var</span> vol			:<span style="color: #0066CC;">Number</span>		= 0;
	<span style="color: #0066CC;">public</span> 	<span style="color: #000000; font-weight: bold;">var</span> song_arr	:<span style="color: #0066CC;">Array</span> 		= <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Array</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #808080; font-style: italic;">//_________________________________________________________________________________________________________________</span>
	<span style="color: #808080; font-style: italic;">//																								        Konstruktor</span>
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> playSong<span style="color: #66cc66;">&#40;</span>songID:<span style="color: #0066CC;">Number</span>, auto:<span style="color: #0066CC;">Boolean</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		SoundShortcuts.<span style="color: #006600;">init</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
		acSong = songID;
		<span style="color: #0066CC;">super</span>.<span style="color: #0066CC;">loadSound</span><span style="color: #66cc66;">&#40;</span>song_arr<span style="color: #66cc66;">&#91;</span>songID<span style="color: #66cc66;">&#93;</span>, <span style="color: #000000; font-weight: bold;">true</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #0066CC;">super</span>.<span style="color: #0066CC;">setVolume</span><span style="color: #66cc66;">&#40;</span>vol<span style="color: #66cc66;">&#41;</span>;
		fadeVol<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span>;
		mainObj = <span style="color: #0066CC;">super</span>;
&nbsp;
		<span style="color: #b1b100;">if</span><span style="color: #66cc66;">&#40;</span>auto<span style="color: #66cc66;">&#41;</span>
		<span style="color: #66cc66;">&#123;</span>
			<span style="color: #0066CC;">this</span>.<span style="color: #0066CC;">onSoundComplete</span> = Delegate.<span style="color: #006600;">create</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">this</span>,loop<span style="color: #66cc66;">&#41;</span>;
		<span style="color: #66cc66;">&#125;</span>
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #808080; font-style: italic;">//_________________________________________________________________________________________________________________</span>
	<span style="color: #808080; font-style: italic;">//																								             Volume</span>
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> fadeVol<span style="color: #66cc66;">&#40;</span>_vol<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		Tweener.<span style="color: #006600;">addTween</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">super</span>, <span style="color: #66cc66;">&#123;</span>_sound_volume:_vol, transition:<span style="color: #ff0000;">&quot;easeinoutcubic&quot;</span>, <span style="color: #0066CC;">time</span>:<span style="color: #cc66cc;">3</span><span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #808080; font-style: italic;">//_________________________________________________________________________________________________________________</span>
	<span style="color: #808080; font-style: italic;">//																							   stop/start Functions</span>
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> stopSound<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		Tweener.<span style="color: #006600;">addTween</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">super</span>, <span style="color: #66cc66;">&#123;</span>_sound_volume:0, transition:<span style="color: #ff0000;">&quot;easeinoutcubic&quot;</span>, <span style="color: #0066CC;">time</span>:<span style="color: #cc66cc;">3</span>, onComplete:stopSnd<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
	<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> stopSnd<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		mainObj.<span style="color: #0066CC;">stop</span><span style="color: #66cc66;">&#40;</span><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> startSound<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		<span style="color: #0066CC;">super</span>.<span style="color: #0066CC;">loadSound</span><span style="color: #66cc66;">&#40;</span>song_arr<span style="color: #66cc66;">&#91;</span>acSong<span style="color: #66cc66;">&#93;</span>, <span style="color: #000000; font-weight: bold;">true</span><span style="color: #66cc66;">&#41;</span>;
		<span style="color: #0066CC;">super</span>.<span style="color: #0066CC;">setVolume</span><span style="color: #66cc66;">&#40;</span>vol<span style="color: #66cc66;">&#41;</span>;
		fadeVol<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">100</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #808080; font-style: italic;">//_________________________________________________________________________________________________________________</span>
	<span style="color: #808080; font-style: italic;">//																								          skip Song</span>
	<span style="color: #0066CC;">public</span> <span style="color: #000000; font-weight: bold;">function</span> skipSong<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		Tweener.<span style="color: #006600;">addTween</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">super</span>, <span style="color: #66cc66;">&#123;</span>_sound_volume:0, transition:<span style="color: #ff0000;">&quot;easeinoutcubic&quot;</span>, <span style="color: #0066CC;">time</span>:<span style="color: #cc66cc;">3</span>, onComplete:nextSong<span style="color: #66cc66;">&#125;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
	<span style="color: #0066CC;">private</span> <span style="color: #000000; font-weight: bold;">function</span> nextSong<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		<span style="color: #b1b100;">switch</span> <span style="color: #66cc66;">&#40;</span>acSong<span style="color: #66cc66;">&#41;</span>
		<span style="color: #66cc66;">&#123;</span>
			<span style="color: #b1b100;">case</span> song_arr.<span style="color: #006600;">length</span>-<span style="color: #cc66cc;">1</span> :
				acSong = 0;
			<span style="color: #b1b100;">break</span>;
&nbsp;
			<span style="color: #000000; font-weight: bold;">default</span> :
				acSong += <span style="color: #cc66cc;">1</span>;
			<span style="color: #b1b100;">break</span>;
		<span style="color: #66cc66;">&#125;</span>
&nbsp;
		mainObj.<span style="color: #0066CC;">loadSound</span><span style="color: #66cc66;">&#40;</span>song_arr<span style="color: #66cc66;">&#91;</span>acSong<span style="color: #66cc66;">&#93;</span>, <span style="color: #000000; font-weight: bold;">true</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> loop<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">Void</span>
	<span style="color: #66cc66;">&#123;</span>
		nextSong<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
	<span style="color: #66cc66;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>Hier die Source (AS3):</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3 actionscript3" style="font-family:monospace;"><span style="color: #9900cc; font-weight: bold;">package</span> com.heimatdesign.media
<span style="color: #000000;">&#123;</span>
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">Event</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">EventDispatcher</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">IOErrorEvent</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">ProgressEvent</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">SecurityErrorEvent</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.events</span>.<span style="color: #004993;">TimerEvent</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">ID3Info</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">Sound</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">SoundTransform</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">SoundChannel</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">SoundLoaderContext</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.media</span>.<span style="color: #004993;">SoundMixer</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.net</span>.<span style="color: #004993;">URLRequest</span>;
	<span style="color: #0033ff; font-weight: bold;">import</span> <span style="color: #004993;">flash.utils</span>.<span style="color: #004993;">Timer</span>;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #9900cc; font-weight: bold;">class</span> Audioplayer extends <span style="color: #004993;">EventDispatcher</span>
	<span style="color: #000000;">&#123;</span>
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> s						<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Sound</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> sc						<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">SoundChannel</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> idx						<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">uint</span>			= 0;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> TRACKLIST_ARRAY			<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Array</span>			= <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Array</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">bufferTime</span>				<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> 			= <span style="color: #000000; font-weight:bold;">1000</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> isLoaded					<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> 		= <span style="color: #0033ff; font-weight: bold;">false</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> isReadyToPlay			<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> 		= <span style="color: #0033ff; font-weight: bold;">false</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> isPlaying				<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> 		= <span style="color: #0033ff; font-weight: bold;">false</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> isStreaming				<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> 		= <span style="color: #0033ff; font-weight: bold;">true</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> autoPlay					<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> 		= <span style="color: #0033ff; font-weight: bold;">true</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> pausePosition			<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> 			= 0;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> progressInterval			<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> 			= <span style="color: #000000; font-weight:bold;">1000</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> static const PLAY_PROGRESS	<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> 		= <span style="color: #990000;">&quot;playProgress&quot;</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> playTimer				<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Timer</span>;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #6699cc; font-weight: bold;">var</span> transf					<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">SoundTransform</span>;
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> Audioplayer<span style="color: #000000;">&#40;</span>autoPlay<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> = <span style="color: #0033ff; font-weight: bold;">true</span>, streaming<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span> = <span style="color: #0033ff; font-weight: bold;">true</span>, <span style="color: #004993;">bufferTime</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = <span style="color: #000000; font-weight: bold;">-</span><span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
		    <span style="color: #0033ff; font-weight: bold;">this</span>.autoPlay = autoPlay;
		    <span style="color: #0033ff; font-weight: bold;">this</span>.isStreaming = streaming;
&nbsp;
		    <span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #004993;">bufferTime</span> <span style="color: #000000; font-weight: bold;">&lt;</span> 0<span style="color: #000000;">&#41;</span>
		    <span style="color: #000000;">&#123;</span>
		        <span style="color: #004993;">bufferTime</span> = <span style="color: #004993;">SoundMixer</span>.<span style="color: #004993;">bufferTime</span>;
		    <span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
		    <span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">bufferTime</span> = <span style="color: #004993;">Math</span>.<span style="color: #004993;">min</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Math</span>.<span style="color: #004993;">max</span><span style="color: #000000;">&#40;</span>0, <span style="color: #004993;">bufferTime</span><span style="color: #000000;">&#41;</span>, <span style="color: #000000; font-weight:bold;">30</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> startPlaying<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isReadyToPlay<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">resume</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
			<span style="color: #0033ff; font-weight: bold;">else</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span>pos<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = 0<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #000000; font-weight: bold;">!</span><span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isReadyToPlay<span style="color: #000000;">&#41;</span>
				<span style="color: #000000;">&#123;</span>
					<span style="color: #0033ff; font-weight: bold;">this</span>.sc = <span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span>pos<span style="color: #000000;">&#41;</span>;
					<span style="color: #0033ff; font-weight: bold;">this</span>.sc.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">SOUND_COMPLETE</span>, onPlayComplete<span style="color: #000000;">&#41;</span>;
					<span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying = <span style="color: #0033ff; font-weight: bold;">true</span>;
&nbsp;
					<span style="color: #0033ff; font-weight: bold;">this</span>.playTimer = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Timer</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.progressInterval<span style="color: #000000;">&#41;</span>;
					<span style="color: #0033ff; font-weight: bold;">this</span>.playTimer.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">TimerEvent</span>.<span style="color: #004993;">TIMER</span>, onPlayTimer<span style="color: #000000;">&#41;</span>;
					<span style="color: #0033ff; font-weight: bold;">this</span>.playTimer.<span style="color: #004993;">start</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
				<span style="color: #000000;">&#125;</span>
				<span style="color: #0033ff; font-weight: bold;">else</span> <span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isStreaming <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #000000; font-weight: bold;">!</span><span style="color: #0033ff; font-weight: bold;">this</span>.isLoaded<span style="color: #000000;">&#41;</span>
				<span style="color: #000000;">&#123;</span>
					<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
					<span style="color: #0033ff; font-weight: bold;">return</span>;
				<span style="color: #000000;">&#125;</span>
			<span style="color: #000000;">&#125;</span> 
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span>pos<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = 0<span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">this</span>.pausePosition = pos;
				<span style="color: #0033ff; font-weight: bold;">this</span>.sc.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.playTimer.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying = <span style="color: #0033ff; font-weight: bold;">false</span>;
			<span style="color: #000000;">&#125;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isStreaming <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #000000; font-weight: bold;">!</span><span style="color: #0033ff; font-weight: bold;">this</span>.isLoaded<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
			    <span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">close</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			    <span style="color: #0033ff; font-weight: bold;">this</span>.isReadyToPlay = <span style="color: #0033ff; font-weight: bold;">false</span>;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">pause</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.sc.<span style="color: #004993;">position</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">resume</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.pausePosition<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> skipForward<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>idx <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.TRACKLIST_ARRAY.<span style="color: #004993;">length</span> <span style="color: #000000; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				idx<span style="color: #000000; font-weight: bold;">++</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span> <span style="color: #0033ff; font-weight: bold;">else</span>
			<span style="color: #000000;">&#123;</span>
				idx = 0;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> skipBackward<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>idx <span style="color: #000000; font-weight: bold;">&gt;</span> 0<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				idx<span style="color: #000000; font-weight: bold;">--</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span><span style="color: #0033ff; font-weight: bold;">else</span>
			<span style="color: #000000;">&#123;</span>
				idx = <span style="color: #0033ff; font-weight: bold;">this</span>.TRACKLIST_ARRAY.<span style="color: #004993;">length</span> <span style="color: #000000; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> skipTo<span style="color: #000000;">&#40;</span>_no<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">uint</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			idx = _no;
			<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> setVol<span style="color: #000000;">&#40;</span>_vol<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Number</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span>_vol <span style="color: #000000; font-weight: bold;">&gt;</span>= 0 <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> _vol <span style="color: #000000; font-weight: bold;">&lt;</span>= <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				transf = sc.<span style="color: #004993;">soundTransform</span>;
            	transf.<span style="color: #004993;">volume</span> = _vol;
            	sc.<span style="color: #004993;">soundTransform</span> = transf;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.pausePosition = 0;
			<span style="color: #000000;">&#125;</span>
			<span style="color: #0033ff; font-weight: bold;">this</span>.isLoaded = <span style="color: #0033ff; font-weight: bold;">false</span>;
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">Sound</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">ProgressEvent</span>.<span style="color: #004993;">PROGRESS</span>, onLoadProgress<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">OPEN</span>, onLoadOpen<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">COMPLETE</span>, onLoadComplete<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">Event</span>.<span style="color: #004993;">ID3</span>, onID3<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">IOErrorEvent</span>.<span style="color: #004993;">IO_ERROR</span>, onIOError<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">addEventListener</span><span style="color: #000000;">&#40;</span><span style="color: #004993;">SecurityErrorEvent</span>.<span style="color: #004993;">SECURITY_ERROR</span>, onIOError<span style="color: #000000;">&#41;</span>;
&nbsp;
			<span style="color: #6699cc; font-weight: bold;">var</span> req<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">URLRequest</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">URLRequest</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.TRACKLIST_ARRAY<span style="color: #000000;">&#91;</span>idx<span style="color: #000000;">&#93;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
			<span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;::::: &quot;</span> <span style="color: #000000; font-weight: bold;">+</span> TRACKLIST_ARRAY<span style="color: #000000;">&#91;</span>idx<span style="color: #000000;">&#93;</span> <span style="color: #000000; font-weight: bold;">+</span> <span style="color: #990000;">&quot; wird geladen :::::&quot;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #6699cc; font-weight: bold;">var</span> context<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">SoundLoaderContext</span> = <span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">SoundLoaderContext</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">bufferTime</span>, <span style="color: #0033ff; font-weight: bold;">true</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span>req, context<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onLoadOpen<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.isStreaming<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #0033ff; font-weight: bold;">this</span>.isReadyToPlay = <span style="color: #0033ff; font-weight: bold;">true</span>;
				<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>autoPlay<span style="color: #000000;">&#41;</span>
				<span style="color: #000000;">&#123;</span>
					<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
				<span style="color: #000000;">&#125;</span>
			<span style="color: #000000;">&#125;</span>
			<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">clone</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onLoadProgress<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">ProgressEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>   
			<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">clone</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onLoadComplete<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">this</span>.isReadyToPlay = <span style="color: #0033ff; font-weight: bold;">true</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.isLoaded = <span style="color: #0033ff; font-weight: bold;">true</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">clone</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">if</span> <span style="color: #000000;">&#40;</span>autoPlay <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #000000; font-weight: bold;">!</span>isPlaying<span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				<span style="color: #004993;">play</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
        <span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #0033ff; font-weight: bold;">get</span> isPaused<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Boolean</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0033ff; font-weight: bold;">return</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.pausePosition <span style="color: #000000; font-weight: bold;">&gt;</span> 0<span style="color: #000000;">&#41;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
        <span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onPlayComplete<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
        <span style="color: #000000;">&#123;</span>
            <span style="color: #0033ff; font-weight: bold;">this</span>.pausePosition = 0;
            <span style="color: #0033ff; font-weight: bold;">this</span>.playTimer.<span style="color: #004993;">stop</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
            <span style="color: #0033ff; font-weight: bold;">this</span>.isPlaying = <span style="color: #0033ff; font-weight: bold;">false</span>;
&nbsp;
            <span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">clone</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
&nbsp;
			<span style="color: #0033ff; font-weight: bold;">if</span><span style="color: #000000;">&#40;</span>idx == TRACKLIST_ARRAY.<span style="color: #004993;">length</span> <span style="color: #000000; font-weight: bold;">-</span> <span style="color: #000000; font-weight:bold;">1</span><span style="color: #000000;">&#41;</span>
			<span style="color: #000000;">&#123;</span>
				idx = 0;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
			<span style="color: #0033ff; font-weight: bold;">else</span>
			<span style="color: #000000;">&#123;</span>
				idx <span style="color: #000000; font-weight: bold;">+</span>= <span style="color: #000000; font-weight:bold;">1</span>;
				<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">load</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #000000;">&#125;</span>
        <span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> onID3<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">Event</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
		    <span style="color: #0033ff; font-weight: bold;">try</span>
		    <span style="color: #000000;">&#123;</span>
    		    <span style="color: #6699cc; font-weight: bold;">var</span> <span style="color: #004993;">id3</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">ID3Info</span> = event.<span style="color: #004993;">target</span>.<span style="color: #004993;">id3</span>;
&nbsp;
    		    <span style="color: #0033ff; font-weight: bold;">for</span> <span style="color: #000000;">&#40;</span><span style="color: #6699cc; font-weight: bold;">var</span> propName<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">String</span> <span style="color: #0033ff; font-weight: bold;">in</span> <span style="color: #004993;">id3</span><span style="color: #000000;">&#41;</span>
    		    <span style="color: #000000;">&#123;</span>
    		        <span style="color: #009900;">//trace(propName + &quot; = &quot; + id3[propName]);</span>
    		    <span style="color: #000000;">&#125;</span>
    		<span style="color: #000000;">&#125;</span>
    		<span style="color: #0033ff; font-weight: bold;">catch</span> <span style="color: #000000;">&#40;</span>err<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">SecurityError</span><span style="color: #000000;">&#41;</span>
    		<span style="color: #000000;">&#123;</span>
    		    <span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;Could not retrieve ID3 data.&quot;</span><span style="color: #000000;">&#41;</span>;
    		<span style="color: #000000;">&#125;</span>
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">public</span> <span style="color: #339966; font-weight: bold;">function</span> <span style="color: #0033ff; font-weight: bold;">get</span> <span style="color: #004993;">id3</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">ID3Info</span>
		<span style="color: #000000;">&#123;</span>
			<span style="color: #0033ff; font-weight: bold;">return</span> <span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">id3</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onIOError<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">IOErrorEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span>
		<span style="color: #000000;">&#123;</span>
		    <span style="color: #004993;">trace</span><span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;SoundFacade.onIOError: &quot;</span> <span style="color: #000000; font-weight: bold;">+</span> event.<span style="color: #004993;">text</span><span style="color: #000000;">&#41;</span>;
		    <span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>event.<span style="color: #004993;">clone</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
		<span style="color: #0033ff; font-weight: bold;">private</span> <span style="color: #339966; font-weight: bold;">function</span> onPlayTimer<span style="color: #000000;">&#40;</span>event<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">TimerEvent</span><span style="color: #000000;">&#41;</span><span style="color: #000000; font-weight: bold;">:</span><span style="color: #0033ff; font-weight: bold;">void</span> 
		<span style="color: #000000;">&#123;</span>
			<span style="color: #6699cc; font-weight: bold;">var</span> estimatedLength<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">int</span> = 
				<span style="color: #004993;">Math</span>.<span style="color: #004993;">ceil</span><span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">length</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000;">&#40;</span><span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">bytesLoaded</span> <span style="color: #000000; font-weight: bold;">/</span> <span style="color: #0033ff; font-weight: bold;">this</span>.s.<span style="color: #004993;">bytesTotal</span><span style="color: #000000;">&#41;</span><span style="color: #000000;">&#41;</span>;
			<span style="color: #6699cc; font-weight: bold;">var</span> progEvent<span style="color: #000000; font-weight: bold;">:</span><span style="color: #004993;">ProgressEvent</span> = 
				<span style="color: #0033ff; font-weight: bold;">new</span> <span style="color: #004993;">ProgressEvent</span><span style="color: #000000;">&#40;</span>PLAY_PROGRESS, <span style="color: #0033ff; font-weight: bold;">false</span>, <span style="color: #0033ff; font-weight: bold;">false</span>, <span style="color: #0033ff; font-weight: bold;">this</span>.sc.<span style="color: #004993;">position</span>, estimatedLength<span style="color: #000000;">&#41;</span>;
			<span style="color: #0033ff; font-weight: bold;">this</span>.<span style="color: #004993;">dispatchEvent</span><span style="color: #000000;">&#40;</span>progEvent<span style="color: #000000;">&#41;</span>;
		<span style="color: #000000;">&#125;</span>
&nbsp;
&nbsp;
&nbsp;
	<span style="color: #000000;">&#125;</span>
<span style="color: #000000;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2008/11/mp3-player-klassen-as2as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flash erweitern [AS3/Javascript]</title>
		<link>http://blog.heimatdesign.com/2008/11/flash-erweitern-as3javascript/</link>
		<comments>http://blog.heimatdesign.com/2008/11/flash-erweitern-as3javascript/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 20:07:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Flash/Actionscript]]></category>

		<category><![CDATA[Component]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=16</guid>
		<description><![CDATA[Als Erweiterung zu Lee Brimelows Flashpanels gibts jetzt die Source
zur Kompnente für Flash CS3. Mit einem Klick die Animation
einrichten, Methoden generieren und Scripte speicher/abrufen.
Runterladen und installieren!

]]></description>
			<content:encoded><![CDATA[<p>Als Erweiterung zu Lee Brimelows Flashpanels gibts jetzt die Source<br />
zur Kompnente für Flash CS3. Mit einem Klick die Animation<br />
einrichten, Methoden generieren und Scripte speicher/abrufen.<br />
Runterladen und installieren!</p>
<a class="downloadme" href="http://blog.heimatdesign.com/downloads/setupFlash2.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a>
<p><img src="http://blog.heimatdesign.com/wp-content/uploads/2008/11/setupFlash.jpg" alt="screenshot" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2008/11/flash-erweitern-as3javascript/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Typo zum download!</title>
		<link>http://blog.heimatdesign.com/2008/11/typo-zum-download/</link>
		<comments>http://blog.heimatdesign.com/2008/11/typo-zum-download/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 19:40:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Design]]></category>

		<category><![CDATA[Downloads]]></category>

		<category><![CDATA[Typografie]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[Typo]]></category>

		<guid isPermaLink="false">http://blog.heimatdesign.com/?p=14</guid>
		<description><![CDATA[Die 2007 für Heimatdesign entworfene Typo gibts jetzt zum download.
Die Schrift besteht aus 161 Glyphen, ist jedoch aufgrund des fehlenden
Hintings weniger für die Darstellung am Monitor zu gebrauchen.
Bilder zur Entwicklung, Leseproben sowie die Zeichntabelle sind in einem
PDF beigefügt.

]]></description>
			<content:encoded><![CDATA[<p>Die 2007 für Heimatdesign entworfene Typo gibts jetzt zum download.<br />
Die Schrift besteht aus 161 Glyphen, ist jedoch aufgrund des fehlenden<br />
Hintings weniger für die Darstellung am Monitor zu gebrauchen.<br />
Bilder zur Entwicklung, Leseproben sowie die Zeichntabelle sind in einem<br />
PDF beigefügt.</p>
<p><a class="downloadme" href="http://blog.heimatdesign.com/downloads/typo.zip"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/aufe_platte.gif" alt="" /></a><br />
<a class="flashme" href="http://blog.heimatdesign.com/downloads/type.pdf"><img src="http://blog.heimatdesign.com/wp-content/themes/heimatdesign/images/ansehen.gif" alt="" /></a><br />
<img src="http://blog.heimatdesign.com/wp-content/uploads/2008/11/fontlab.jpg" alt="fontlab" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.heimatdesign.com/2008/11/typo-zum-download/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
