User grapefrukt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:35:36Zhttp://stackoverflow.com/feeds/user/914http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1491902/flex-http-request-error-2032/1790829#17908290Answer by grapefrukt for Flex: HTTP request error #2032grapefrukt2009-11-24T15:33:44Z2009-11-24T15:33:44Z<p>Try listening for the HTTP-status of the request, using <code>flash.events.HTTPStatusEvent.HTTP_STATUS</code><br>
That might give you some more info about what's going wrong. </p>
http://stackoverflow.com/questions/1752549/preloader-in-actionscript-3-reference-error-on-getdefinition/1754680#17546802Answer by grapefrukt for Preloader in actionscript 3 - Reference Error on getDefinition()grapefrukt2009-11-18T09:18:47Z2009-11-23T12:15:05Z<p>When you're making a preloader in this "style" what really happens is that the preloader is put in the first frame of the application, and the rest in a second frame. What you're missing here is to tell the compiler that you want your Main class compiled in, so right now it doesn't even exist in the swf. That's why getDefinition won't work. </p>
<p>Nor can you simply refer to it in the preloader since that would make it load in the first frame before the preloader can be shown. So, you need a little custom argument magic.</p>
<p>Add this line to your compiler options and you should be good to go:</p>
<pre><code>-frame start Main
</code></pre>
<p>Remember that if your Main class is in a package you need to get a full reference in there:</p>
<pre><code>-frame start com.grapefrukt.examples.Main
</code></pre>
<p>Same goes for the getDefinition call. </p>
<p>EDIT:</p>
<p>When looking over my code that does this I see that I use a different approach from what you did, maybe this works better:</p>
<pre><code>var mainClass:Class = getDefinitionByName("com.grapefrukt.examples.Main") as Class;
addChild(new mainClass() as DisplayObject);
</code></pre>
<p>EDIT AGAIN:
If it works using a button I'd guess the complete event is fired too early for some reason. It may be so that everything is not inited properly event though all the bytes are loaderd. Try using this code to check for completion instead:</p>
<pre><code>if (currentFrame == totalFrames) onLoadingCompleted()
</code></pre>
<p>It might also be a good idea to add a stop() command in your onLoadingCompleted() method just to make the playhead won't be screwing things up, but that's a later issue really.</p>
http://stackoverflow.com/questions/1754423/3d-paralax-layers-impeding-flash-framerate/1754630#17546302Answer by grapefrukt for 3D paralax layers impeding Flash framerategrapefrukt2009-11-18T09:06:35Z2009-11-18T09:06:35Z<p>Rendering text in pixelbender would be completely crazy. There is a much easier way. </p>
<p>Don't use the z axis, instead do the parallax yourself, as long as the clips are not transformed, but only translated flash can cache them and everything will be nice and fast.</p>
<p>What I'd do is add them to an array and then update all of the positions each frame. To conveniently have them in an array I'd make a small class to associate the offset to each sprite:</p>
<pre><code>class Parallax
{
public var sprite:DisplayObject;
public var offset:Number = 1;
public function ParallaxedSprite(sprite:DisplayObject, offset:Number) {
this.sprite = sprite;
this.offset = offset;
}
}
</code></pre>
<p>Once that class is made we add each of the clips/sprites we want to parallax to an array:</p>
<pre><code>var _sprites:Array = [ new ParallaxedSprite(foo, 1),
new ParallaxedSprite(bar, .75),
new ParallaxedSprite(baz, .5) ];
</code></pre>
<p>(the square brackets are shorthand for creating an array)</p>
<p>Then, each frame we loop over the list and set the offsets accordingly:</p>
<pre><code>var offsetX:Number = 100;
var offsetY:Number = 100;
for each (var parallax:Parallax in _sprites) {
parallax.sprite.x = offsetX * parallax.offset;
parallax.sprite.y = offsetY * parallax.offset;
}
</code></pre>
<p>And finally, to get that last speed boost, set the cacheAsBitmap property on your sprites:</p>
<pre><code>foo.cacheAsBitmap = true;
bar.cacheAsBitmap = true;
baz.cacheAsBitmap = true;
</code></pre>
<p>Note that cacheAsBitmap will speed up the drawing of your sprites as long as they are not transformed, but once you DO transform them with this set you will have an added overhead of recreating this cache, so if you plan to rotate/scale alot it's better to leave it off. </p>
http://stackoverflow.com/questions/1745291/getting-error-when-trying-to-use-stage-height-to-place-a-graphic/1749908#17499081Answer by grapefrukt for Getting error when trying to use stage.height to place a graphicgrapefrukt2009-11-17T16:07:37Z2009-11-17T16:07:37Z<p>Using a custom event is a bit overkill, especially when you have the listener for added to stage already in there. I would do it like this:</p>
<pre><code>package src.display{
import flash.text.*;
import flash.display.*;
import flash.geom.Matrix;
import flash.events.Event;
public class Frame extends Sprite {
// don't instantiate your sprite here, it's weird! :)
private var footer:Sprite;
// this is the same as in your example
public function Frame():void {
this.addEventListener(Event.ADDED_TO_STAGE, handleAddedToStage);
}
// i renamed this to reflect what it does
private function handleAddedToStage(event:Event) {
trace("Frame added to stage --- √"+"\r");
this.removeEventListener(Event.ADDED_TO_STAGE, handleAddedToStage);
init();
}
// this is also essentially the same, except for private since it shouldn't be called from the outside
private function init():void {
footer = new Sprite();
footer.graphics.beginFill(0x000);
footer.graphics.drawRect(0,0,800,56);
footer.graphics.endFill();
footer.y = (stage.height - footer.height);
addChild(footer);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1744541/embedding-fonts-in-as3-dynamic-text-field-disappears/1749834#17498341Answer by grapefrukt for Embedding Fonts in AS3 - Dynamic Text Field disappearsgrapefrukt2009-11-17T15:55:40Z2009-11-17T15:55:40Z<p>I wrote a long talkative entry on possible reasons as why this would not work. But as I re-read you code I think i spotted the error.
Change the row: </p>
<pre><code>year.setTextFormat(newFormat);
</code></pre>
<p>To:</p>
<pre><code>year.defaultTextFormat = newFormat;
</code></pre>
<p>That should do it! </p>
http://stackoverflow.com/questions/1746631/choosing-a-class-dynamically-in-actionscript-3/1749787#17497870Answer by grapefrukt for Choosing a Class Dynamically in Actionscript 3grapefrukt2009-11-17T15:46:52Z2009-11-17T15:46:52Z<p>This is what <a href="http://stackoverflow.com/users/209605/just-somebody">just somebody</a>'s answer would look like in proper AS3 syntax. </p>
<pre><code>var classes:Array = [Foo, Bar, Baz];
var myObj:YourSuperclass = new classes[int(Math.random() * classes.length)];
</code></pre>
<p>If the classes do not have a common superclass you can keep myObj untyped. </p>
http://stackoverflow.com/questions/1650714/actionscript-3-init/1652780#16527800Answer by grapefrukt for actionscript 3 init()grapefrukt2009-10-30T23:30:20Z2009-10-30T23:30:20Z<p>Another reason can be that you need a reference to the stage or a parent container and is too lazy to set up a <code>ADDED_TO_STAGE</code> listener. Then you would have instantiate the class first, add it to the container and then call <code>init()</code> once it's on the displaylist. </p>
http://stackoverflow.com/questions/1625420/advanced-chroma-key-code-samples2Advanced chroma key code samplesgrapefrukt2009-10-26T15:15:05Z2009-10-27T16:07:25Z
<p>I'm working on an application that needs to key out the background from an image taken by a webcam in front of a green screen. I figured this would be a very common task, but to my surprise i'm having trouble finding code samples for anything more advanced than a simple color-threshold and those do not quite cut it quality wise. </p>
<p>I've found a few pdf-papers, but I'm having trouble translating these rather high concepts into actual implementations, I'd much rather look at some code. </p>
<p>Focus here is on quality, having a second or more of processing time is not a problem.<br />
I will be using actionscript 3 (and possibly pixel bender) to implement this, but I'll happily look at other languages aswell.</p>
<p>If you have any good samples doing this, the whole process or parts, please do post them!</p>
http://stackoverflow.com/questions/1585975/as3-shared-objects-that-can-be-accessed-by-swfs-on-different-html-pages/1588978#15889780Answer by grapefrukt for AS3 shared objects that can be accessed by swfs on different html pages?grapefrukt2009-10-19T14:25:05Z2009-10-19T14:25:05Z<p>Check out the <code>localPath</code> parameter of <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/SharedObject.html#getLocal%28%29" rel="nofollow">SharedObject.getLocal()</a>:</p>
<blockquote>
<p>The most permissive approach is to set localPath to / (slash), which makes the shared object available to all SWF files in the domain, but increases the likelihood of name conflicts with other shared objects in the domain.</p>
</blockquote>
http://stackoverflow.com/questions/1528707/1080p30-dvi-to-flash-player/1537117#15371170Answer by grapefrukt for 1080p30 DVI to Flash Playergrapefrukt2009-10-08T11:09:02Z2009-10-08T11:09:02Z<p>I think your only option is to use somekind of bridge to get the camera to show up as a webcam. It might also be possible to do some sort of local streaming solution, maybe using <a href="http://www.videolan.org/vlc/" rel="nofollow">VLC</a>. </p>
http://stackoverflow.com/questions/1537069/flash-storing-strings-as-keys-in-array/1537093#15370931Answer by grapefrukt for Flash storing strings as keys in arraygrapefrukt2009-10-08T11:01:27Z2009-10-08T11:01:27Z<p>Arrays are indexed by integers in Flash, if you want to index on a string use an Object instead.</p>
http://stackoverflow.com/questions/1498553/workaround-for-as3-language-bug/1499981#14999812Answer by grapefrukt for Workaround for AS3 language bug?grapefrukt2009-09-30T18:48:21Z2009-09-30T18:48:21Z<p>This is a <a href="http://www.johanvanmol.org/content/view/47/41/" rel="nofollow">known problem</a> when using special wmodes in combination with firefox. the simplest solution by far is to avoid those wmodes. </p>
http://stackoverflow.com/questions/1480942/how-to-reduce-my-flash-games-background-engine-600mb-memory-usage-peaks/1483514#14835141Answer by grapefrukt for How to reduce my flash game's background engine 600MB memory usage peaks?grapefrukt2009-09-27T12:44:02Z2009-09-27T12:44:02Z<p>Don't worry about memory consumption. All those graphics will eat a lot of space regardless of how small the actual files are, they will be decompressed as you load them. </p>
<p>That means a 500x500 image in 32bits will take up 500x500x32 = 7.6mb's of memory. So yes, you will go through alot of memory. </p>
<p><strong>The thing is that the person(s) who wrote the garbage collector and memory management are smarter than us. They know more about the flash player intricacies than we do, so just trust their better judgement.</strong> </p>
<p>Flash will naturally use as much memory as it can, it's what memory is for after all, it's not very much use if it's free all the time. So having 8GB of ram will make the GC run less often. </p>
http://stackoverflow.com/questions/1479304/can-i-get-vector-data-back-out-out-of-a-graphics-object/1482307#14823071Answer by grapefrukt for Can I get vector data back out out of a Graphics object?grapefrukt2009-09-26T22:10:57Z2009-09-26T22:10:57Z<p>No and yes. </p>
<p>There's no especially convenient way, but it <em>is</em> possible. Check out <a href="http://wahlers.com.br/claus/blog/hacking-swf-1-shapes-in-flash/" rel="nofollow">Claus Wahlers blog post</a> on the subject. It's a great read.</p>
http://stackoverflow.com/questions/1455128/bitwise-ops-on-bitmaps-in-flex-as3/1459520#14595201Answer by grapefrukt for Bitwise ops on bitmaps in Flex/AS3grapefrukt2009-09-22T11:33:07Z2009-09-22T11:33:07Z<p>I'm not very experienced using bitwise operations, but i threw together a quick test case using the fancy new Flash player 10 vectors which are very nice for this type of data wrangling. </p>
<p>This runs through the 2000x2000 pixels in 115ms using the standalone debug player on my computer, it'll likely be a bit faster in the release player. </p>
<p>I'm not sure if this is fast enough since I don't know how often or on how large images you need to run it, but it might at least be a starting point. </p>
<pre><code>package {
import flash.display.BitmapData;
import flash.display.Sprite;
import flash.geom.Rectangle;
import flash.text.TextField;
import flash.utils.getTimer;
/**
* ...
* @author Martin Jonasson
*/
public class Test extends Sprite {
public function Test() {
var output:TextField = new TextField();
output.autoSize = "left";
addChild(output);
var bmpB:BitmapData = new BitmapData(2000, 2000, false, 0xff00ff);
var bmpS:BitmapData = new BitmapData(2000, 2000, false, 0xffffff);
var bmpF:BitmapData = new BitmapData(2000, 2000, false, 0x000000);
var rect:Rectangle = new Rectangle(0, 0, 2000, 2000)
var vecB:Vector.<uint> = bmpB.getVector(rect);
var vecS:Vector.<uint> = bmpS.getVector(rect);
var vecF:Vector.<uint> = bmpF.getVector(rect);
var vecFinal:Vector.<uint> = new Vector.<uint>(vecB.length, true);
var startTime:int = getTimer();
for (var i:int = vecB.length - 1; i >= 0; --i) {
vecFinal[i] = (vecB[i] & vecS[i]) | (vecF[i] & ~vecS[i]);
}
output.appendText("bitwise stuff done, took: " + (getTimer() - startTime) + "ms \n");
startTime = getTimer();
var bmpFinal:BitmapData = new BitmapData(2000, 2000, false);
bmpFinal.setVector(rect, vecFinal);
output.appendText("created bitmapdata, took: " + (getTimer() - startTime) + "ms \n");
}
}
}
</code></pre>
http://stackoverflow.com/questions/1450670/dynamic-audio-generation-actionscript-3/1450807#14508071Answer by grapefrukt for Dynamic Audio Generation Actionscript 3grapefrukt2009-09-20T11:15:15Z2009-09-20T11:15:15Z<p>From Flash Player 10 and onwards you don't need to do any hacky type stuff. There is an API to generate sound dynamically. </p>
<p>This <a href="http://www.kaourantin.net/2008/05/adobe-is-making-some-noise-part-3.html" rel="nofollow">blog post has a quick introduction</a>. His code reads samples from an mp3 but you can write samples any way you want to. </p>
<p>As always <a href="http://livedocs.adobe.com/flex/3/langref/flash/events/SampleDataEvent.html" rel="nofollow">the docs</a> have lots of info too, along with this code sample which should get you going pretty quickly. </p>
<pre><code>var mySound:Sound = new Sound();
function sineWaveGenerator(event:SampleDataEvent):void {
for ( var c:int=0; c<8192; c++ ) {
event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);
event.data.writeFloat(Math.sin((Number(c+event.position)/Math.PI/2))*0.25);
}
}
mySound.addEventListener(SampleDataEvent.SAMPLE_DATA,sineWaveGenerator);
mySound.play();
</code></pre>
http://stackoverflow.com/questions/1446244/drawing-on-a-cartesiandatacanvas-any-way-to-draw-an-ellipse-that-is-partially-o/1449847#14498470Answer by grapefrukt for Drawing on a CartesianDataCanvas - Any way to draw an ellipse that is partially off the chart?grapefrukt2009-09-19T23:55:52Z2009-09-19T23:55:52Z<p>You can't draw with negative size values, I guess you've mixed up the order of the arguments somehow. This is the proper order: </p>
<pre><code>public function drawEllipse(x:Number, y:Number, width:Number, height:Number):void
</code></pre>
<p>Read more in the <a href="http://livedocs.adobe.com/flex/3/langref/flash/display/Graphics.html#drawEllipse%28%29" rel="nofollow">docs</a>. </p>
http://stackoverflow.com/questions/1408224/how-do-you-access-a-stage-instance-name-from-a-swf-embedded-w-the-flex-compiler/1410245#14102450Answer by grapefrukt for How do you access a stage instance name from a SWF embedded w/ the Flex compiler?grapefrukt2009-09-11T10:54:06Z2009-09-11T10:54:06Z<p>you need to both give them instance names in the IDE and declare them in the class you've embedded them on. </p>
<p>So say that you have instances of <em>baz</em> and <em>frr</em> on your embedded class InfoPopup, you need to declare them like this:</p>
<pre><code>package foo {
import flash.display.Sprite;
[Embed(source='../../../../../../assets/Assets.swf', symbol='InfoPopup')]
public class InfoPopup extends Sprite {
public var baz:Sprite;
public var baz:MovieClip;
public function InfoPopup(){
trace("constructor!");
}
}
}
</code></pre>
<p>When added like this they have to be public properties or else the compiler will complain.</p>
http://stackoverflow.com/questions/1408091/intermittent-bitmapdata-draw-with-scaling-matrix/1409573#14095731Answer by grapefrukt for intermittent bitmapdata draw with scaling matrixgrapefrukt2009-09-11T07:58:05Z2009-09-11T07:58:05Z<p>The <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/display/BitmapData.html" rel="nofollow">docs</a> say:</p>
<blockquote>
<p>The maximum width and maximum height
of a BitmapData object is 2880 pixels.</p>
</blockquote>
<p>I'd guess it's that limit you're hitting.</p>
http://stackoverflow.com/questions/1403882/unrolling-var-args-in-as3/1405317#14053172Answer by grapefrukt for Unrolling var args in AS3grapefrukt2009-09-10T13:29:04Z2009-09-10T19:51:56Z<p>The <a href="http://livedocs.adobe.com/flex/201/langref/Function.html#apply%28%29" rel="nofollow">apply()</a> method on all functions lets you pass in the arguments in an array instead of the "normal" way.</p>
<pre><code>package {
import flash.display.Sprite;
public class Foo extends Sprite {
public function Foo() {
var args:Array = ["a", "b", "c"];
// "normal" call
varArgsFunc(args);
// what you wanted:
varArgsFunc.apply(null, args);
}
public function varArgsFunc(...args):Array {
trace("got", args);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1406595/an-extra-wrapper-or-decorator-class-needed-when-using-swc-assets/1407319#14073190Answer by grapefrukt for An extra wrapper or decorator class needed when using SWC assets?grapefrukt2009-09-10T19:44:44Z2009-09-10T19:44:44Z<p>To associate a symbol directly to a class do like this. This works for all kinds of subclasses aswell (as long as they extend the appropriate base class):</p>
<pre><code>package foo {
import flash.display.Sprite;
[Embed(source='../../../../../../assets/Assets.swf', symbol='InfoPopup')]
public class InfoPopup extends Sprite {
public function InfoPopup(){
trace("constructor!");
}
}
}
</code></pre>
http://stackoverflow.com/questions/1371979/ieventdispatcher/1372224#13722242Answer by grapefrukt for IEventDispatchergrapefrukt2009-09-03T08:51:26Z2009-09-03T08:51:26Z<p>LoaderInfo extends EventDispatcher which in turn implements the interface IEventDispatcher. I don't think there's any reason for having it like that except that it's the most generic way to send an event dispatcher around. </p>
<p>This means that you could change the function to accept a LoaderInfo instead and it will work exactly the same, but not be as generic if you ever want to use that very function for something else that dispatches events. </p>
http://stackoverflow.com/questions/1366732/same-domain-but-security-error/1367694#13676944Answer by grapefrukt for Same domain but security errorgrapefrukt2009-09-02T13:29:12Z2009-09-02T17:25:58Z<p>If your Flex app is on the server with ip 5.6.7.8 you need to allow <em>that</em> ip in the crossdomain for the 1.2.3.4 server. This let's the Flash running from 5.6.7.8 know that 1.2.3.4 allows connections from that specific adress.</p>
<p>If you still have the same problem a quick way to find out what's going on is to use a debug proxy (i like <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a>). That way you'll see flash' request for the crossdomain.xml and what the response looks like, most likely the request is going somewhere you didn't expect or the server messes it up somehow.</p>
http://stackoverflow.com/questions/1349615/resize-a-movieclip-wihout-messing-up-mouse-coordinates/1350989#13509891Answer by grapefrukt for Resize a movieclip wihout messing up mouse coordinates.grapefrukt2009-08-29T09:44:32Z2009-08-29T09:44:32Z<p>Just scale against the original width you had. Say that you've got a 100px wide bar, just go:</p>
<pre><code>var seekTo:Number = seekbar.mouseX / 100;
</code></pre>
<p>This will give you the percentage clicked at regardless the current width of the seekbar.</p>
<p>Nice and easy and no funky coord space conversions needed.</p>
http://stackoverflow.com/questions/1326256/flash-continue-script-despite-running-slow-warning/1326645#13266452Answer by grapefrukt for Flash - Continue Script despite Running Slow Warninggrapefrukt2009-08-25T07:46:39Z2009-08-25T07:46:39Z<p>You can set the script timeout in the Flash Authoring tools publish settings (CTRL+SHIFT+F12), it's the last setting on the Flash tab. If you're using mxmlc to compile, check out the <a href="http://livedocs.adobe.com/flex/3/html/help.html?content=compilers%5F14.html" rel="nofollow">-default-script-limits parameter</a>. </p>
<p>It is however a better idea to split your calculation up over multiple frames, users will very likely think your app is frozen if it's unresponsive for several seconds. </p>
http://stackoverflow.com/questions/1284886/optimizing-transition-movement-smoothness-for-a-2d-flash-game/1286964#12869641Answer by grapefrukt for Optimizing transition/movement smoothness for a 2D flash game.grapefrukt2009-08-17T09:21:29Z2009-08-17T09:21:29Z<p>I think the root of your problem is that the "<a href="http://en.wikipedia.org/wiki/Vertical%5Fsynchronization" rel="nofollow">vertical sync</a>" isn't the same as that of the screen. This is the same problem that occurs when looking at a 24fps movie on a, say, 60hz screen. The updates won't perfectly match up (in your case 100/60) and when they hit a bigger jump it will look like a small jitter in movement. </p>
<p>This can be somewhat remedied by lowering your frame rate, anything above that of the screen is just waste of processing power anyway. It can't really be avoided entirely, although the <a href="http://thebackbutton.com/blog/64/enable-gpu-composing-on-flash-player-10-content/" rel="nofollow">newer wmodes for flash embedding</a> might be a possible solution. </p>
http://stackoverflow.com/questions/16142/what-do-branch-tag-and-trunk-really-mean58What do "branch", "tag" and "trunk" really mean?grapefrukt2008-08-19T13:22:03Z2009-08-12T15:42:23Z
<p>I've seen these words a lot around subversion (and I guess general repository) discussions.
Myself I have been using svn for my projects the last few years, but I've never grasped the complete concept of these directories.</p>
<p>What do they mean?</p>
http://stackoverflow.com/questions/1194951/where-are-swf-files-kept-after-clearing-browser-cache/1194975#11949753Answer by grapefrukt for where are swf files kept after clearing browser cache?grapefrukt2009-07-28T15:40:39Z2009-07-28T23:32:09Z<p>Naturally the browser will not clear files that it is actively using, that would really be sawing off the branch you are sitting on.</p>
<p>Flash does however use the browsers cache for all regular files. So the files will be stored in the same manner as the rest of the cache. Exactly how this works when you clear the cache with a flash app running depends on the browsers cache implementation. </p>
<p>RSL's are different since they are cached by the Flash player itself, likely in one of the directories <a href="http://stackoverflow.com/questions/1194951/where-are-swf-files-kept-after-clearing-browser-cache/1195234#1195234">Kitsune</a> mentions.</p>
http://stackoverflow.com/questions/1115225/rails-need-some-javascript-assistance/1115837#11158371Answer by grapefrukt for (Rails) Need some javascript assistance.grapefrukt2009-07-12T11:16:33Z2009-07-12T11:16:33Z<p>Use a standard library like <a href="http://code.google.com/p/swfobject/" rel="nofollow">SWFObject</a> to embed your flash. It takes care of all the crossbrowser quirks for you and let's you do both static and dynamic publishing with regular html to fall back on if the user does not have flash.</p>
http://stackoverflow.com/questions/1099103/create-a-flash-equalizer-modify-output-sound/1102133#11021330Answer by grapefrukt for Create a Flash Equalizer (modify output sound) grapefrukt2009-07-09T06:23:02Z2009-07-09T06:23:02Z<p>Check this out: <a href="http://www.anttikupila.com/flash/soundfx-out-of-the-box-audio-filters-with-actionscript-3/" rel="nofollow">SoundFX, out-of-the-box audio filters with actionscript 3</a></p>
http://stackoverflow.com/questions/1810626/memory-problems-with-actionscript/1816545#1816545Comment by grapefrukt on Memory Problems with ActionScriptgrapefrukt2009-11-29T21:22:35Z2009-11-29T21:22:35Zit's way better to use flash' internal reporting, there's no guarantee flash will return the memory to the os once it's done with it. http://stackoverflow.com/questions/1816246/fillrect-performance/1816285#1816285Comment by grapefrukt on fillRect, performance?grapefrukt2009-11-29T21:20:17Z2009-11-29T21:20:17Zhe's drawing to a bitmap so that won't work.http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/17571#17571Comment by grapefrukt on Computer Language puns and jokesgrapefrukt2009-11-24T11:54:02Z2009-11-24T11:54:02Z"stack" is a homonym, meaning both the programming concept and a swedish slang word for "ran away"http://stackoverflow.com/questions/1755682/removing-invalid-characters-from-string-in-as3-ready-for-xml/1756075#1756075Comment by grapefrukt on Removing invalid characters from string in AS3 ready for XMLgrapefrukt2009-11-18T13:49:15Z2009-11-18T13:49:15Zwouldn't a whitelist be a better approach?http://stackoverflow.com/questions/1752549/preloader-in-actionscript-3-reference-error-on-getdefinition/1754680#1754680Comment by grapefrukt on Preloader in actionscript 3 - Reference Error on getDefinition()grapefrukt2009-11-18T13:45:51Z2009-11-18T13:45:51Zokay, i added another suggestion, does that help?http://stackoverflow.com/questions/1746373/actionscript-3-workflow-using-swcs-with-linked-external-classesComment by grapefrukt on ActionScript 3 Workflow using SWCs with linked external classesgrapefrukt2009-11-17T16:01:24Z2009-11-17T16:01:24Zi'm having the same issues so i feel your pain. this will in part be remedied in the new versions of flash builder (new, less confusing name) and flash authoring (cs5 this time). but in the meantime, it's quite a hassle.http://stackoverflow.com/questions/1746631/choosing-a-class-dynamically-in-actionscript-3/1748723#1748723Comment by grapefrukt on Choosing a Class Dynamically in Actionscript 3grapefrukt2009-11-17T15:47:52Z2009-11-17T15:47:52Zif you do this you need to make sure the classes are used somewhere else in your code, if you don't they wont get compiled in.http://stackoverflow.com/questions/1585975/as3-shared-objects-that-can-be-accessed-by-swfs-on-different-html-pages/1588978#1588978Comment by grapefrukt on AS3 shared objects that can be accessed by swfs on different html pages?grapefrukt2009-10-26T11:53:18Z2009-10-26T11:53:18Zthat really should work as long as they are hosted by the same domain.
do you have any examples of it not working?http://stackoverflow.com/questions/357522/flex-figure-out-when-the-running-swf-was-compiled/358702#358702Comment by grapefrukt on Flex: Figure out when the running swf was compiled?grapefrukt2009-10-23T07:03:12Z2009-10-23T07:03:12Zunfortunately not, you'll have to do that yourself. http://stackoverflow.com/questions/1591721/possible-to-programmatically-enable-show-redraw-regions-in-flash-debug-player/1591840#1591840Comment by grapefrukt on Possible to programmatically enable "show redraw regions" in Flash debug player?grapefrukt2009-10-20T07:25:28Z2009-10-20T07:25:28Zsweet. i didn't know this!http://stackoverflow.com/questions/1591660/stage-not-tracking-mousex-or-mousey-without-clickingComment by grapefrukt on Stage Not Tracking MouseX or MouseY Without Clicking...grapefrukt2009-10-20T07:24:57Z2009-10-20T07:24:57ZAdding tweens on each frame is a bit overkill (on MOUSE_MOVE doubly so), they're supposed to be added once and then run their course, just change the properties of the object directly instead.http://stackoverflow.com/questions/1528707/1080p30-dvi-to-flash-player/1537117#1537117Comment by grapefrukt on 1080p30 DVI to Flash Playergrapefrukt2009-10-09T09:29:59Z2009-10-09T09:29:59Zi think so, download it and try!http://stackoverflow.com/questions/1514125/as3-updating-vars/1514159#1514159Comment by grapefrukt on AS3 - Updating Varsgrapefrukt2009-10-04T13:32:42Z2009-10-04T13:32:42Zalso, don't have a function named x() that's going to conflict with tons of stuff!http://stackoverflow.com/questions/1479304/can-i-get-vector-data-back-out-out-of-a-graphics-object/1482307#1482307Comment by grapefrukt on Can I get vector data back out out of a Graphics object?grapefrukt2009-09-27T20:30:18Z2009-09-27T20:30:18Zcheck this out: <a href="http://debreuil.com/v2d/" rel="nofollow">debreuil.com/v2d</a>http://stackoverflow.com/questions/1479304/can-i-get-vector-data-back-out-out-of-a-graphics-object/1482307#1482307Comment by grapefrukt on Can I get vector data back out out of a Graphics object?grapefrukt2009-09-27T10:29:28Z2009-09-27T10:29:28Zcan you explain why you need to do it this way, maybe there's a more clever way to get at the lines "earlier" in what i imagine is somekind of export process?