<?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>apanbepan</title>
	<atom:link href="http://www.apanbepan.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.apanbepan.se</link>
	<description>independent spacegurks inc.</description>
	<lastBuildDate>Tue, 14 Feb 2012 10:33:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Converting AS2 to AS3, an art of casting.</title>
		<link>http://www.apanbepan.se/2012/02/converting-as2-to-as3-an-art-of-casting/</link>
		<comments>http://www.apanbepan.se/2012/02/converting-as2-to-as3-an-art-of-casting/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 09:51:58 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=371</guid>
		<description><![CDATA[Years ago when I started coding, I didn&#8217;t actually know how to code. Thankfully it has made all my old AS2 project perfectly compatible with the very restricted ways of building iPhone-apps using the new 5.5 techniques. I just need &#8230; <a href="http://www.apanbepan.se/2012/02/converting-as2-to-as3-an-art-of-casting/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/wp-content/uploads/2012/02/searchRep.png"><img class="alignnone size-full wp-image-372"  src="http://www.apanbepan.se/wp-content/uploads/2012/02/searchRep.png" alt="" width="525" height="330" /></a></p>
<p>Years ago when I started coding, I didn&#8217;t actually know how to code. Thankfully it has made all my old AS2 project perfectly compatible with the very restricted ways of building iPhone-apps using the new 5.5 techniques. I just need to convert everything to AS3 first, and the Search and Replace tool is by far the most powerful tool which I tend to forget. ( I assume it&#8217;s also available in other verisons than mine CS4) Just bring it up from the EDIT menu and don&#8217;t confuse it with the regular Search which also have a replace-function, but only for the text you are currently editing. This Sucker can search and replace through your whole project, on every frame in every object.</p>
<p><strong>So what are we looking at?<br />
</strong><em>_parent</em> refeers to the movieClip&#8217;s <em>parent</em>. In most cases I got a movieClip lying on the stage in flash and if I enter them, this <em>_parent</em> refeers to the main stage from where I was.</p>
<p><em>Problem</em> with getting that garbage working in AS3 is first, that the name is parent without the underscore.<br />
Second that it doesn&#8217;t know <em>what</em> the parent <em>is</em> wich generates an error. By telling Flash <em>(parent as MovieClip)</em> it goes. &#8221;oh!  fine, thanks!&#8221; and then goes about, unknowing of the horrors I&#8217;ve just unleached.</p>
<p>This solves most problems.<br />
Second thing to do is to define all variables for real.<br />
<em>apan=1;</em><br />
now becomes<br />
<em>var apan:Boolean=true;</em><br />
or<br />
<em>var apan:int=1;</em><br />
Depending on what I need apan for.</p>
<p>Thirdly I change the name of the onEnterFrame() function or functions to something unique, and add a listener.</p>
<p>like<br />
addEventListener(Event.ENTER_FRAME,onEveryMothaFacknnFrameBitch);<br />
function onEveryMothaFacknnFrameBitch():void<br />
{<br />
trace(&#8221;hello world&#8221;);<br />
}</p>
<p>And then I export, and of course get a ton of more errors but most of them variant&#8217;s of these solutions. I just step through the errors one at the time using some wits and lots of google.</p>
<p>Please do abuse these tips and spread awesome haxx onto the world and keep away from lazy helpers like &#8221;Builders&#8221;. All you need is a very good memory on where everything is in your project, and how it works. This will also make it hack-free since noone will be able to read your code. It will take some hours everytime you need to get back to it in the future but it&#8217;s totally worth it.</p>
<p>k thnkz bye.</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=371&amp;md5=c25fcbec2b5c3e0998f7ce5b17107475" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2012/02/converting-as2-to-as3-an-art-of-casting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wireframe line intersection &amp;&amp; z-sorting.</title>
		<link>http://www.apanbepan.se/2011/09/wireframe-line-intersection-z-sorting/</link>
		<comments>http://www.apanbepan.se/2011/09/wireframe-line-intersection-z-sorting/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 04:42:40 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=366</guid>
		<description><![CDATA[Clock is 06:08 , I&#8217;m of to work any minute now, just woke up an hour ago and really wanted to finish this before the &#8221;weekend&#8221; ends. And hey. It finally works! 3D wireframe line intersection So what are we &#8230; <a href="http://www.apanbepan.se/2011/09/wireframe-line-intersection-z-sorting/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/bobhaxx/3d-ext227.html"><img src="http://www.apanbepan.se/wp-content/uploads/2011/09/3dcube.png" alt=""  width="372" height="198" class="alignnone size-full wp-image-356" /></a></p>
<p>Clock is 06:08 , I&#8217;m of to work any minute now, just woke up an hour ago and really wanted to finish this before the &#8221;weekend&#8221; ends. And hey. It finally works!</p>
<p><a href="http://www.apanbepan.se/bobhaxx/3d-ext227.html">3D wireframe line intersection</a><br />
So what are we looking at?</p>
<p>- First it backcull like I described last time.<br />
- Then, I remove all dubplicate lines, most polygon share edges with other polygons and I don&#8217;t want to draw those edges twice.<br />
- Sort all the lines based on their combined Z-value of it&#8217;s two cordinates.<br />I&#8217;ve made the first drawn line THICKER so it&#8217;s visible. For once I actually used a built in flash function called &#8221;sort&#8221; which defaulted to sorting alfabetical. I did not notice that at first which led to very strange behaviours.<br />
myArray.sort(Array.NUMERIC); // is the way to go.</p>
<p>- Then, I draw the lines, from my sorted line-array, front to back. For each line I draw I compare to already drawn lines to see if they intersect. If they do, I draw a little rectangle at that spot.</p>
<p>I had big help from this nice article <a href="http://www.geog.ubc.ca/courses/klink/gis.notes/ncgia/u32.html#OUT32.5.3">http://www.geog.ubc.ca/courses/klink/gis.notes/ncgia/u32.html#OUT32.5.3</a><br />
that in the end helped me solve the math a bit more elegant than my initial approuch. I have issues with using math and algorithms that I don&#8217;t understand so I can be a bit slow sometimes. But it&#8217;s important for me to understand it all. Otherwise I will not be able to use it later.</p>
<p>And that&#8217;s it for now.<br />
Next step is cutting the lines at those spots. Since I know all visible triangles on the scene are clockwise, I will be able to calculate which side of the line should be visible.</p>
<p>Then I&#8217;m gonna built in a check to see if a line starts inside a polygon using the Barycentric algoritm described here :<br />
<a href="http://www.blackpawn.com/texts/pointinpoly/default.html">http://www.blackpawn.com/texts/pointinpoly/default.html</a></p>
<p>I will try to build it so that a line can be cut off several time during it&#8217;s course and still function. For instance, if both ends of a line should start inside a polygon it still is possible that parts of the line is visible. So, <img src='http://www.apanbepan.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>Yeah, that&#8217;s it for now.</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=366&amp;md5=2d01e49ab99fea4c636c8bea10350726" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/09/wireframe-line-intersection-z-sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D wireframe clockwise clipping</title>
		<link>http://www.apanbepan.se/2011/09/3d-wireframe-clockwise-clipping/</link>
		<comments>http://www.apanbepan.se/2011/09/3d-wireframe-clockwise-clipping/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 08:21:52 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=355</guid>
		<description><![CDATA[I&#8217;ve been continuing on my wireframe 3D-engine. You can steer the cube X &#038;&#038; Y with arrow-keys . in the edges of the screen it clip&#8217;s the edges right off, per edge. in the edges of the screen it tries &#8230; <a href="http://www.apanbepan.se/2011/09/3d-wireframe-clockwise-clipping/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/bobhaxx/3d-ext223.html"><img src="http://www.apanbepan.se/wp-content/uploads/2011/09/3dcube.png" alt=""  width="372" height="198" class="alignnone size-full wp-image-356" /></a></p>
<p>I&#8217;ve been continuing on my <a href="http://www.apanbepan.se/bobhaxx/3d-ext223.html">wireframe 3D-engine</a>. </p>
<p>You can steer the cube X &#038;&#038; Y with arrow-keys .<br />
in the edges of the screen it clip&#8217;s the edges right off, per edge. <br />
<del datetime="2011-09-07T06:55:51+00:00">in the edges of the screen it tries to do it in two directions and it bugs the hell out.</del> UPDATED!</p>
<p>Then I tried to solve depthsorting, so it wouldn&#8217;t render the backside of the object. This was a painful process of trying to invent something new and exciting that could cut edges nicely anywhere on the edge that ended up with me throwing away the edge-drawer and made a proper polygon-drawer instead, cause I needed surfaces to calculate normals. I even ended up with triangles, so now I feel like a conformist asshole.</p>
<p>What it does is calculate wheter the surface rendered has it&#8217;s vertex on the screen clockwise or counterclockwise, since the cube is built with all polygons constructed clockwise if you where standing on each one of them when constructing. Thus the only reason a surface would end up counterclockwise on screen is if it&#8217;s pointed AWAY from it, thus it&#8217;s not tagged for the render-pass.<br />
I had great help from this article when understanding the principle and math of it.: <a href="http://paulbourke.net/geometry/clockwise/index.html">http://paulbourke.net/geometry/clockwise/index.html </a></p>
<p>This kind of depth-sort will not cull away polygons that are just overlapped, and by far does not help with render a partly-overlapped polygon, since it just draws whatever is pointed at the viewer, so I have a long road ahead of me, but it&#8217;s a nice start. <img src='http://www.apanbepan.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For the more advanced clipping I first must solve the edge-clipping routine that&#8217;s still a bit unstable, since if I can&#8217;t even cut the edges of the screen properly, how could I ever cut of an overlapping surface? . </p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=355&amp;md5=ae812ec9550ab3881d2f7a7e4ace0546" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/09/3d-wireframe-clockwise-clipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G*P CAVE++</title>
		<link>http://www.apanbepan.se/2011/08/gp-cave/</link>
		<comments>http://www.apanbepan.se/2011/08/gp-cave/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 13:39:42 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=342</guid>
		<description><![CDATA[we made a little SFCave-clone, with some helpers. Now it featured zoomed in bullettime when you are close to walls, &#038;&#038; extra lifes so you can bounce around a bit. UPDATE: coloured levels. (it&#8217;s fun to feel progress) Lifes are &#8230; <a href="http://www.apanbepan.se/2011/08/gp-cave/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/gpcave3.html"><img src="http://www.apanbepan.se/wp-content/uploads/2011/08/gpcave.png" alt=""  width="372" height="198" class="alignnone size-full wp-image-343" /></a></p>
<p>we made a little SFCave-clone, with some helpers.<br />
Now it featured zoomed in bullettime when you are close to walls, &#038;&#038; extra lifes so you can bounce around a bit.</p>
<p>UPDATE:<br />
coloured levels. (it&#8217;s fun to feel progress)<br />
Lifes are replaced by a auto-regenerate shield (it&#8217;s fun to bounce)<br />
gamespeed slowed down a bit. (it&#8217;s fun to navigate)</p>
<p>yeah.<br />
Also here&#8217;s the executable, without the browser lag, (better framerate) <br />
<a href="http://apanbepan.se/gpcave.zip">version 1.3 (pc &#038;&#038; mac executable)</a><br />
<a href="http://apanbepan.se/gpcave3.html">version 1.3</a><br />
<a href="http://apanbepan.se/gpcave2.html">version 1.2</a></p>
<p>The bullettime is achieved by splitting up the graphic-render timer with the gamelogic. A strange bug occured in the browser however, locking the gamelogic timer to slower value than I demanded. Quick fixed by putting everything in the gamelogic through a small forloop to force it to update quicker, resulting in a somewhat jaggy experience.</p>
<p>Well, it&#8217;s a quick n dirty 3hour take on <a href="http://www2.sunflat.net/en/">SFCave</a> / <a href="http://noname.c64.org/csdb/release/?id=7947&#038;show=notes">DWCave (c64)</a> .<br />
enjoy.</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=342&amp;md5=db9c5d7c64b182ab0f96b4f6bcfb118e" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/08/gp-cave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sound Generator Special Oscilator Button</title>
		<link>http://www.apanbepan.se/2011/06/sound-generator-special-oscilator-button/</link>
		<comments>http://www.apanbepan.se/2011/06/sound-generator-special-oscilator-button/#comments</comments>
		<pubDate>Tue, 14 Jun 2011 12:05:13 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=332</guid>
		<description><![CDATA[I&#8217;m in the process of something big now I feel. One big step before going further has been to make the oscilator a bit more usable. So I added an &#8221;osc&#8221;-button. What it does is nail the latest soundwave to &#8230; <a href="http://www.apanbepan.se/2011/06/sound-generator-special-oscilator-button/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://apanbepan.se/bobhaxx/sound9.html"><img class="alignnone size-full wp-image-333"  src="http://www.apanbepan.se/wp-content/uploads/2011/06/soundgener.png" alt="" width="525" height="330" /></a></p>
<p>I&#8217;m in the process of something big now I feel. One big step before going further has been to make the oscilator a bit more usable.</p>
<p>So I added an &#8221;osc&#8221;-button. What it does is nail the latest soundwave to the left side of the oscilatorwindow and then draws it out. If it&#8217;s high freq it&#8217;s short, and if it&#8217;s low it&#8217;s of course longer than the actual screen. This will be MY GREATEST TOOL YET for analyzing exactly what I do with the bytearray. It&#8217;s also a bit more sane than a regular spectrum-view.</p>
<p>Next up, sliders for all attributes available attributes, some strange compressorstyle normalizer and finally, vowels. Vowels are my current main goal so what I need to do now is really dig into the math and algorithms surrounding curve-generation and make some kind of soundwave-editor.</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=332&amp;md5=44d276d561b7dcc140ab7ba211b5bed9" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/06/sound-generator-special-oscilator-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outline 2011</title>
		<link>http://www.apanbepan.se/2011/06/outline-2011/</link>
		<comments>http://www.apanbepan.se/2011/06/outline-2011/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 14:03:59 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[xnitzy && xnutzi]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=328</guid>
		<description><![CDATA[We went to Outline 2011 and won the animation compo! Special Guest star Puryx and the Danish Underpants Brigade. entry on pouet.net]]></description>
			<content:encoded><![CDATA[<p><iframe width="560" height="349" src="http://www.youtube.com/embed/e-_F5oWK_rc" frameborder="0" allowfullscreen></iframe></p>
<p>We went to Outline 2011 and won the animation compo!  Special Guest star Puryx and the Danish Underpants Brigade.</p>
<p><a href="http://www.pouet.net/prod.php?which=57105">entry on pouet.net</a></p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=328&amp;md5=9d74af0803fcb9ae017cc42faf0b8b5d" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/06/outline-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>copyPixel &amp;&amp; G¤P</title>
		<link>http://www.apanbepan.se/2011/05/copypixel-g%c2%a4p/</link>
		<comments>http://www.apanbepan.se/2011/05/copypixel-g%c2%a4p/#comments</comments>
		<pubDate>Wed, 18 May 2011 15:33:08 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=316</guid>
		<description><![CDATA[Finally with help from my 1337friends, I managed to solve an AS3 copyPixel problems I wasn&#8217;t aware of. I was copying the Starscroller bitmap to itself with a little offset, which worked great in a negative direction, but in positive &#8230; <a href="http://www.apanbepan.se/2011/05/copypixel-g%c2%a4p/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/bobhaxx/starscroller2.html"><img class="alignnone size-full wp-image-317"  src="http://www.apanbepan.se/wp-content/uploads/2011/05/starscroller2.png" alt="" width="372" height="198" /></a></p>
<p>Finally with help from my 1337friends, I managed to solve an AS3 copyPixel problems I wasn&#8217;t aware of.</p>
<p>I was copying the Starscroller bitmap to itself with a little offset, which worked great in a negative direction, but in positive the CPU took almost 3-4 times longer each call. Problem got solved with an extra screenBuffer so that it never copy Pixels from itself to itself. Now it works great in both direction. (use arrows to change) . Then it&#8217;s slow anyway but that&#8217;s because it&#8217;s 720 paralaxxed layers right now for for the hell of it.</p>
<p>And in other news, we today became a part of the demogroup Genesis¤Project! Together we will be able to rock the scene all the way up to 11 . <img src='http://www.apanbepan.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=316&amp;md5=254c75ec0dd304f055fd63bad8606c74" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/05/copypixel-g%c2%a4p/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>starscroller</title>
		<link>http://www.apanbepan.se/2011/05/starscroller/</link>
		<comments>http://www.apanbepan.se/2011/05/starscroller/#comments</comments>
		<pubDate>Sun, 15 May 2011 19:17:50 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=309</guid>
		<description><![CDATA[Here&#8217;s a little paralaxxed starscroller for you. It&#8217;s based around a function that inputs an array with numbers which do.: + the arraylength divide up the bitmap in as many layers. + scrolls each layer in the speed specified in &#8230; <a href="http://www.apanbepan.se/2011/05/starscroller/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://apanbepan.se/bobhaxx/starscroller.html"><img class="alignnone size-full wp-image-310"  src="http://www.apanbepan.se/wp-content/uploads/2011/05/starscroller.png" alt="" width="372" height="198" /></a></p>
<p>Here&#8217;s a little paralaxxed starscroller for you.<br />
It&#8217;s based around a function that inputs an array with numbers which do.:</p>
<p>+ the arraylength divide up the bitmap in as many layers.<br />
+ scrolls each layer in the speed specified in that array.<br />
+ randomize colors and then juggles them around a bit using bitwise operations which tint it to cyan.<br />
+ and of course the input array is also randomized. <img src='http://www.apanbepan.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And it&#8217;s all outputtet to a stretched out 320&#215;180 bitmap.<br />
Plan is to replace the starscroller in the back of Xnitzy&amp;&amp;Xnutzi to this one which hopefully wont eat up so much CPU. Backside is that it moves one huge pixel per frame, which make smooth movement impossible at this resolution.  Gonna try full 720p asap, just need to go buy some potatoes first before the store closes <img src='http://www.apanbepan.se/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://apanbepan.se/bobhaxx/starscroller2.html">Nope I did not. Full720 test here.</a></p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=309&amp;md5=f2df3444c4b06dbc4db4190147566e4c" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/05/starscroller/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>and cont&#8230;</title>
		<link>http://www.apanbepan.se/2011/05/and-cont/</link>
		<comments>http://www.apanbepan.se/2011/05/and-cont/#comments</comments>
		<pubDate>Tue, 10 May 2011 11:04:45 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=304</guid>
		<description><![CDATA[almost a synth Got some nice ADSR-Envelopes going on now. Only connected to the volume at the moment. Added a keyboard function + some buttons to play with. Try it out with the usual Q-P  .]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/bobhaxx/sound6.html">almost a synth</a></p>
<p>Got some nice ADSR-Envelopes going on now. Only connected to the volume at the moment.<br />
Added a keyboard function + some buttons to play with.</p>
<p>Try it out with the usual Q-P  .</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=304&amp;md5=9fb424f7c07ae46b2356246ddc305ef3" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/05/and-cont/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sound generator cont&#8230;</title>
		<link>http://www.apanbepan.se/2011/05/sound-generator-cont/</link>
		<comments>http://www.apanbepan.se/2011/05/sound-generator-cont/#comments</comments>
		<pubDate>Mon, 09 May 2011 12:02:26 +0000</pubDate>
		<dc:creator>bob</dc:creator>
				<category><![CDATA[haxx]]></category>

		<guid isPermaLink="false">http://www.apanbepan.se/?p=301</guid>
		<description><![CDATA[Sound generator I have now switched to a square wave. And created a proper low pass filter thanks to the mighty Steffo! Then I went on and made a sinus LFO that controls it. Now we have an LFO that &#8230; <a href="http://www.apanbepan.se/2011/05/sound-generator-cont/">Läs mer <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apanbepan.se/bobhaxx/sound5.html">Sound generator<br />
</a></p>
<p>I have now switched to a square wave.<br />
And created a proper low pass filter thanks to the mighty Steffo!<br />
Then I went on and made a sinus LFO that controls it.</p>
<p>Now we have an LFO that you control with UP &amp;&amp; DOWN.<br />
And as last time, change wavelengths with LEFT &amp;&amp; RIGHT .</p>
 <p><a href="http://www.apanbepan.se/?flattrss_redirect&amp;id=301&amp;md5=bbe7b5e93238d5da9950106c6beca567" title="Flattr" target="_blank"><img src="http://www.apanbepan.se/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.apanbepan.se/2011/05/sound-generator-cont/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

