User Juan Pablo Califano - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T21:57:28Zhttp://stackoverflow.com/feeds/user/24170http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223652/is-there-a-way-to-escape-a-cdata-end-token-in-xml5Is there a way to escape a CDATA end token in xml?Juan Pablo Califano2008-10-21T21:54:58Z2009-10-21T20:51:17Z
<p>I was wondering if there is any way to escape a CDATA end token ( ]]> ) within a CDATA section in an xml document. Or, more generally, if there is some escape sequence for using within a CDATA (but if it exists, I guess it'd probably only make sense to escape begin or end tokens, anyway). </p>
<p>Basically, can you have a begin or end token embedded in a CDATA and tell the parser not to interpret it but to treat it as just another character sequence.</p>
<p>Probably, you should just refactor your xml structure or your code if you find yourself trying to do that, but even though I've been working with xml on a daily basis for the last 3 years or so and I have never had this problem, I was wondering if it was possible. Just out of curiosity.</p>
<p>Edit:</p>
<p>Other than using html encoding...</p>
http://stackoverflow.com/questions/1554924/as3-loading-in-a-swf-as-a-custom-type/1555039#15550393Answer by Juan Pablo Califano for AS3, loading in a SWF as a custom typeJuan Pablo Califano2009-10-12T14:52:43Z2009-10-12T14:52:43Z<p>You can do something like this:</p>
<p>Code in the stub swf:</p>
<pre><code>package {
import flash.display.MovieClip;
public class Stub extends MovieClip implements IStub {
public function Stub() {
trace("Stub::ctor");
}
public function traceIt(value:String):void {
trace("Stub::traceIt " + value);
}
}
}
</code></pre>
<p>I'm using an interface, but it's not strictly neccesary.</p>
<pre><code>package {
public interface IStub {
function traceIt(value:String):void;
}
}
</code></pre>
<p>Code in the "main" swf.</p>
<pre><code>var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT,handleInit);
loader.load(new URLRequest("Stub.swf"));
function handleInit(e:Event):void {
var stub:Stub = loader.content as Stub;
// or, using an interface
// var stub:IStub = loader.content as IStub;
stub.traceIt("testing");
}
</code></pre>
http://stackoverflow.com/questions/1364369/php-operator/1364383#13643832Answer by Juan Pablo Califano for PHP operator ===Juan Pablo Califano2009-09-01T20:05:58Z2009-09-01T20:05:58Z<p>It's strict equality. It's used for comparing not only the value but also the type:</p>
<p>Check this out:</p>
<p><a href="http://www.programmerskit.com/the-difference-between-and/" rel="nofollow">http://www.programmerskit.com/the-difference-between-and/</a></p>
http://stackoverflow.com/questions/1344859/as3-accessing-library-items-from-outside-the-document-class/1344989#13449890Answer by Juan Pablo Califano for AS3 - Accessing Library Items from outside the Document classJuan Pablo Califano2009-08-28T04:16:35Z2009-08-28T04:16:35Z<p>Looks like an application domain problem. The loaded swf cannot access classes defined in the loader.</p>
<p>You should give the loaded swf access to the loader swf library. Try using <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/LoaderContext.html" rel="nofollow">LoaderContext</a>.</p>
<p>Off the top of my head:</p>
<p>var loader:Loader = new Loader();
var ctx:LoaderContext = new LoaderContext(false,ApplicationDomain.current);
loader.load(yourRequest,ctx);</p>
http://stackoverflow.com/questions/1331978/loading-symbols-from-an-as2-swf-into-an-as3-application/1338407#13384070Answer by Juan Pablo Califano for Loading symbols from an AS2 SWF into an AS3 application?Juan Pablo Califano2009-08-27T01:25:11Z2009-08-27T01:25:11Z<p>"Flipping" the bites is quite easy. I don't know if it will work, but you can give it a try. Since you have no code, you might actually have a chance...</p>
<p>Anyway, open up your swf with an hex editor. The version number is the fourth byte. You'll see something like this for a swf exported for FP 6:</p>
<p>43 57 53 06<br />
This is the signature plus the version number. The first 3 bytes are the ascii string "CWS", which means the swf is compressed.</p>
<p>46 57 53 06
This is the signature for an uncompressed swf, "FWS".</p>
<p>Try changing 06 to 09 and see if it works...</p>
http://stackoverflow.com/questions/1279615/efficiently-splicing-items-from-an-array-using-flex/1284757#12847571Answer by Juan Pablo Califano for Efficiently splicing items from an array using FlexJuan Pablo Califano2009-08-16T16:54:34Z2009-08-16T16:54:34Z<p>Run the loop backwards. </p>
<p>So, instead of, say:</p>
<pre><code>var len:int = arr.length;
for(var i:int = 0; i < len; i++) {
if(some condition) {
arr.splice(i,1);
}
}
</code></pre>
<p>do this:</p>
<pre><code>for(var i:int = arr.length - 1; i >= 0; i--) {
if(some condition) {
arr.splice(i,1);
}
}
</code></pre>
http://stackoverflow.com/questions/1259821/any-reverse-engineers-have-experience-with-secureswf/1263788#12637882Answer by Juan Pablo Califano for Any reverse engineers have experience with secureSWF?Juan Pablo Califano2009-08-12T01:16:51Z2009-08-12T01:16:51Z<p>I don't have extensive experience with obsfuscators, but some months ago I was asked to try a couple of them for a specific project (it was actually a --rather simple-- multiplayer game). I tried SecureSWf and Amayeta SWFEncript (both trial versions, which were fully functional, if I recall right). </p>
<p>Both had some problems with the more "advanced" features. If I'd choose just to rename identifiers, things would work smoothly. But even with the default settings (a minimum of control flow obfuscation), one of the obfuscators produced illegal bytecode, i.e. it would be rejected by the player's verifier. This produces an exception and that's about it. I really can't recall which one, but it failed as soon as you run the swf. </p>
<p>I didn't test much further, but it made me see this is something you have to take into account as well. <strong>There's an extra cost in using this tools</strong>. It could be acceptable or not for your purposes, but you should account for it. <strong>Once you change and twist you swf, it's not the same swf you've debugged and tested anymore</strong>. So, now you'll have twice as work testing, cause there's a chance the obfuscator has introduced bugs. The one I saw was pretty evident and blew the player right away, but there could be subtler, harder ones. And if you happen to have a bug that only shows in your "secure" version (or worse, it looks like it only happens in your secure version, but you're not positive), debugging it will not be fun.</p>
<p>Of course, this is not a proper review, just my limited experience. Most obfuscators have free trials so you can try them yourself. And I should also say that the decompiled and disassembled code was well, really obfuscated, and making sense out of it would be a daunting task. </p>
<p>Yet, I thought I would add a different perspective, which is not often mentioned.</p>
http://stackoverflow.com/questions/1257047/how-does-actionscript-version-relate-to-adobes-flash-product/1258129#12581290Answer by Juan Pablo Califano for How does ActionScript version relate to Adobe's Flash Product?Juan Pablo Califano2009-08-11T01:57:21Z2009-08-11T01:57:21Z<p>Well, it's a bit of a mess if you're not familiar with it, but I'll try to explain it as simple as I can:</p>
<p>There are currently 2 virtual machines in the flash player. They're usually called AVM1 and AVM2 (AVM stands for ActionScript Virtual Machine).</p>
<p>AM1 runs the "old" byte code, and is scripted using Actionscript 1.0 & 2.0. AVM2 runs the "new" byte code, and is scripted using Actionscript 3.0. Not only the language changes, but also most of the player API (the display list is the most obvious example)</p>
<p>FP 9 and greater can run both old and new code, but not at the same time. (To some extent, you can execute AVM1 from an AMV2 "container", but it's quite problematic and not worth the hassle, IMO).</p>
<p>The Flash IDE version number used to match the player major release number. So, for Flash IDE 6 you had FP 6, for Flash IDE 7 you had FP 7 and so on. But, when FP 9 was released, the IDE was rebranded by Adobe as CS3. Still, think of CS3 as Flash IDE 9 and CS4 as Flash IDE 10 and the same logic still applies.</p>
<p>Using the IDE, you can compile a swf to any previous version. So, with CS3 you can export for player 9 and below, and you can choose to use the old VM (i.e. AS 1.0 or AS 2.0) or AVM2, (i.e. AS 3.0).</p>
<p>If you plan to do timeline stuff, the Flash IDE is your best choice. Since you want to code in AS 3.0, you will need at least CS3.</p>
<p>But, as you've been told, you don't need the Flash IDE to compile swf files. The Flex SDK (which is not the same as the Flex Framework) is freely available and comes with a compiler called mxmlc that you can use from other editors / IDEs (open source ones such as FlashDevelop, or comercial as FlexBuilder or FDT, two Eclipse plugins). You can also compile from the command line if feel so inclined.</p>
<p>Hope it makes some sense!</p>
http://stackoverflow.com/questions/1250076/strategy-for-making-localconnection-ids-unique/1250094#12500943Answer by Juan Pablo Califano for Strategy for making LocalConnection ids uniqueJuan Pablo Califano2009-08-08T23:04:05Z2009-08-08T23:04:05Z<p>Pass the id through flashvars when embedding both swfs. You can do this server-side or client-side with Javascript. You could user a timestamp or a random number to act as the unique id shared by both swfs.</p>
http://stackoverflow.com/questions/1176534/what-is-a-good-profiling-performance-monitor-app-method-for-flash-flex/1214566#12145661Answer by Juan Pablo Califano for What is a good profiling/performance monitor app/method for Flash/Flex?Juan Pablo Califano2009-07-31T19:59:28Z2009-07-31T19:59:28Z<p>For memory profiling, the profiler that comes with Flex Builder is very useful. Give it a try if you can. It also helps for profiling performance, or the time it takes to execute methods, how many times are they called, etc. I've read many times that performance varies notably between debug and release swfs, and the profiler certainly requires a debuggable swf, but anyway I find it very useful to spot bottlenecks and places were optimization could actually pay off. </p>
http://stackoverflow.com/questions/1059396/loading-images-in-flex-cause-memory-to-go-way-up-in-internet-explorer-7-other/1061512#10615125Answer by Juan Pablo Califano for Loading images in Flex cause memory to go way up, in Internet Explorer 7 (& other browsers)Juan Pablo Califano2009-06-30T02:56:21Z2009-06-30T02:56:21Z<p>I don't think that an increase of about 1 Mb per image is something to worry about necessarily. You point out that the images are less than 100 Kb, but you're probably looking at the wrong number: for example, a 640x480 jpg that I've just been sent takes ~48 Kb, but if you do the math, the raw image takes up 900 Kb (640 * 480 * 3 = 921,600). And if you use transparency, multiply by 4 instead of 3. The thing is that the player has to unpack the image in order to manipulate it. Storing the raw bytes alone for such an image can take up 1 meg or more (depending on its size).</p>
<p>Rather than focusing in reducing the memory usage per image (which is a rough estimate anyway), you're probably better off checking that you're cleaning up after yourself when you're done with the images. Failing to do that could lead to more serious problems. I agree with rhtx that Flex Builder's Profiler is a good tool for detecting leaks, if that's available to you. A simple test, in this case, could be loading an image, taking a memory snapshot, unloading the image, forcing a GC, taking a second snapshot and comparing it to the first one.</p>
http://stackoverflow.com/questions/1058589/send-array-from-flash-as3-to-javascript/1061371#10613710Answer by Juan Pablo Califano for Send array from Flash (AS3) to JavaScript.Juan Pablo Califano2009-06-30T01:42:32Z2009-06-30T01:42:32Z<p>Yes, it's possible.</p>
<p><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html#call%28%29" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/external/ExternalInterface.html#call()</a></p>
<blockquote>
<p>... arguments — The arguments to pass
to the function in the container. You
can specify zero or more parameters,
separating them with commas. They can
be of any ActionScript data type. When
the call is to a JavaScript function,
the ActionScript types are
automatically converted into
JavaScript types; when the call is to
some other ActiveX container, the
parameters are encoded in the request
message.</p>
</blockquote>
<p>A quick test:</p>
<p>AS code:</p>
<pre><code>if(ExternalInterface.available) {
ExternalInterface.call("jsTest", [0,1,"two",{a:1,b:2}]);
}
</code></pre>
<p>JS code:</p>
<pre><code>function jsTest(arg) {
alert(arg);
}
</code></pre>
http://stackoverflow.com/questions/1053641/pause-resume-download-with-urlstream/1053862#10538621Answer by Juan Pablo Califano for pause / resume download with URLStream?Juan Pablo Califano2009-06-27T23:36:30Z2009-06-27T23:36:30Z<p>I don't think it's possible using URLStream, but I think you could achieve the pause / resume ability using a <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/Socket.html" rel="nofollow">Socket</a>.</p>
<p>This requires setting up proper socket policies, which is a bit of a hassle and that the server accepts bytes ranges. See <a href="http://en.wikipedia.org/wiki/Byte%5Fserving" rel="nofollow">byte serving</a> and <a href="http://tools.ietf.org/html/rfc2616#section-14.35" rel="nofollow">RFC2616</a>.</p>
<p>The idea is that you'd mantain a count of how many bytes you've read from the current response. When you want to pause, you'd close the connection. For resuming you'd reopen the connection again and send an http GET request, specifying a byte range that begins at the byte count you stored (i.e. you're picking up where you left off).</p>
<p>Keep in mind this is just an idea. I'm not sure if closing and reopening connections is the most optimal solution. It's probably not rocket science but involves some work to implement it right. And, as I said, I think something like this should work, but I haven't tried it myself, so I'm not 100% sure. But maybe it's worth trying.</p>
http://stackoverflow.com/questions/1047074/best-way-to-reuse-an-element-from-an-array/1051730#10517300Answer by Juan Pablo Califano for Best way to reuse an element from an Array?Juan Pablo Califano2009-06-26T23:47:03Z2009-06-27T00:04:19Z<p>The "optimized" version doesn't optimize much, I think.</p>
<p>YOur code does not perform 2 accesses in every iteration. It does just when you happen to find a dead Char; and after that you return. So, no big deal, I think.</p>
<p>Personally, I don't think reusing array slots is going to make a big difference either. And, maybe it could be degrade (but the worst part is that your code could be simpler if you avoid it). Suppose you have 100 chars, 60 of which are dead, and you have a loop that runs every frame and performs some check / action on every live char. You'd be looping over 100 chars, when you could loop over 40 if you mantained a list of live objects and a separte list of dead objects, ready to reuse them. Also, the "dead list" could be handled as a stack, so no iteration is needed to get a char.</p>
<p>Anyway, I see 2 things you could easily optimize in your code:</p>
<p>1) retrieve the list length outside the loop:</p>
<p>Do this:</p>
<pre><code>var len:int = Char.charlist.length;
for (var i:Number = 0; i < len; i++) {
</code></pre>
<p>Instead of this:</p>
<pre><code>for (var i:Number = 0; i < Char.charlist.length; i++) {
</code></pre>
<p>The compiler won't optimize away the call to length (following the ecmascript spec).</p>
<p>2) Avoid static access (for charlist). It's known to be considerably slower than instance access. </p>
<p><strong>Edit:</strong></p>
<p>Re-reading your question, I realize I misunderstood part of it. You're not trying to reuse Char objects, but rather array slots. Still, I don't think reusing array slots is worth it (arrays in Actionscript are non fixed); but something that could help performance is reusing the Char objects themselves. Reseting a Sprite is generally cheaper than creating a new one.
You could manage this with a pool of "dead" objects, from which you can take one and "bring it back to life" when you need, instead of creating a new one.</p>
<p>This post talks about object pools (the blog itself is a good source for Actionscript stuff, especially for performance and data structures topics; worth taking a look):</p>
<p><a href="http://lab.polygonal.de/2008/06/18/using-object-pools/" rel="nofollow">http://lab.polygonal.de/2008/06/18/using-object-pools/</a></p>
http://stackoverflow.com/questions/1020146/why-sytem-totalmemory-keeps-increasing/1022648#10226488Answer by Juan Pablo Califano for Why Sytem.totalMemory keeps increasing?Juan Pablo Califano2009-06-20T21:53:39Z2009-06-21T16:01:05Z<p>I think you've got a couple of things wrong.</p>
<p>First, your traces display totalMemory truncating the last 3 digits (since you're not doing it in the code, I assume it's because of the TextField width). It grows like this: 3076, 3092, 3096, etc. These are (roughly) Kilobytes, not bytes. Then you comment: "totalMemory after 2 hours: 3887104. My god". Now, if by 3,887,104 you mean 3,887,104 Kb, that would be about 3.8 Gb. I doubt that's the case, so let's assume you mean 3,887,104 bytes. That's about 3,800 Kb or 3.8 Mb. Not that much memory, actually, and more importantly, not so far from your initial 3,076 Kb.</p>
<p>I think this actually mislead another poster to think the player was incrementing memory usage by 4 bytes, when it actually increments by 4,096 bytes, or 4 Kb.</p>
<p>Second, even though the code is very simple, it does consume memory. For starters, each time the ENTER_FRAME event is dispatched, an Event object, which in turn contains references to other objects, strings, etc, is created. That takes memory. Then you are converting a number to a string implicitly (by printing totalMemory). That takes memory, too, whether you make an explicit conversion or not (the same applies if you make a trace instead of using a text field). On top of that, there's for sure other stuff going on that is not evident from an "actionscript point of view". </p>
<p>Now, I think part of the problem is that you're just tracing the current totalMemory. Looking at it, it seems as though it's growing, slowly but steadily, all the time. And that is true, but you're probably missing is that, at a slower pace, the GC kicks in and releases a lot of the memory that has been accumulating.</p>
<p>This is more evident if you modify the code to calculate a few things.</p>
<pre><code>package{
import flash.display.Sprite;
import flash.events.Event;
import flash.system.System;
import flash.text.TextField;
import flash.utils.getTimer;
import flash.text.TextField;
import flash.text.TextFormat;
public class Test extends Sprite {
private var peak:int = 0;
private var prev:int = 0;
private var cur:int = 0;
private var diff:int = 0;
private var decreaseCount:int = 0;
private var increaseCount:int = 0;
private var accumIncrease:int = 0;
private var accumDecrease:int = 0;
private var maxIncrease:int = 0;
private var maxDecrease:int = 0;
private var initTime:Number = 0;
private var elapsed:Number = 0;
private var time:TextField;
private var info:TextField;
public function Test() {
initTime = getTimer();
var tf:TextFormat = new TextFormat("Courier New",12);
time = new TextField();
time.defaultTextFormat = tf;
time.width = 250;
addChild(time);
info = new TextField();
info.defaultTextFormat = tf;
info.y = 15;
info.width = 250;
info.height = 250;
addChild(info);
addEventListener(Event.ENTER_FRAME,Loop);
}
public function Loop(e:Event) {
cur = System.totalMemory >> 12;
elapsed = (getTimer() - initTime) / 1000;
time.text = "time running: " + elapsed;
if(cur == prev) {
return;
}
if(cur > peak) {
peak = cur;
}
if(cur > prev && prev > 0) {
diff = cur - prev;
if(diff > maxIncrease) {
maxIncrease = diff;
}
accumIncrease += diff;
increaseCount++;
} else if(cur < prev) {
diff = prev - cur;
if(diff > maxDecrease) {
maxDecrease = diff;
}
accumDecrease += diff;
diff = -diff;
decreaseCount++;
}
info.text = "current: " + cur + "\n"
+ "previous: " + prev + "\n"
+ "diff: " + diff + "\n"
+ "peak: " + peak + "\n"
+ "increaseCount: " + increaseCount + "\n"
+ "decreaseCount: " + decreaseCount + "\n"
+ "accumIncrease: " + accumIncrease + "\n"
+ "accumDecrease: " + accumDecrease + "\n"
+ "maxIncrease: " + maxIncrease + "\n"
+ "maxDecrease: " + maxDecrease;
prev = cur;
}
}
}
</code></pre>
<p>I'm using chunks of 4096 bytes as the unit (That's why I'm doing System.totalMemory >> 12. Just a fancy way to say System.totalMemory / 4096). I think it's more manageable and anyway totalMemory always return multiples of 4096 byes or 4kb. You can read more about Flash's GC here: <a href="https://developer.mozilla.org/en/MMgc" rel="nofollow">https://developer.mozilla.org/en/MMgc</a>. That part of the player is open source, and you can even read the sources if you're so inclined.</p>
<p>A brief explanation on what the code traces:</p>
<ul>
<li><strong>time running:</strong> Seconds elapsed since the swf began running</li>
<li><strong>current:</strong> The amount of memory returned by System.totalMemory, in chunks of 4 Kb</li>
<li><strong>previous:</strong> The previous value of totalMemory</li>
<li><strong>diff:</strong> The difference between current and previous. Could be negative. This shows you if the memory usage increased or decreased with respect to the previous value.</li>
<li><strong>peak:</strong> Self explaining. This is not very important.</li>
<li><strong>increaseCount:</strong> The number of times current was greater that previous. Basically, it tells you how many times the totalMemory was increased, at least 1 chunk.</li>
<li><strong>decreaseCount:</strong> The number of times previous was greater than current. This will tell you how many times memory has been released.</li>
<li><strong>accumIncrease:</strong> The accumulated value of positive diff's. Will let you know how many chunks have been allocated.</li>
<li><strong>accumDecrease:</strong> The accumulated value of negative diff's. Will let you know how many chunks have been released.</li>
<li><strong>maxIncrease:</strong> The maximum number of chunks allocated within two loop executions. </li>
<li><strong>maxDecrease:</strong> The maximum number of chunks released within two loop executions.</li>
</ul>
<p>Now, let's look at some "snapshots" taken using this code.</p>
<p>This is a early snapshot, taken when the swf's been running for 3 seconds. Just note that current reads 760.</p>
<ul>
<li>time running: 3 sec </li>
<li>current: 760</li>
<li>previous: 759</li>
<li>diff: 1</li>
<li>peak: 760</li>
<li>increaseCount: 3</li>
<li>decreaseCount: 0</li>
<li>accumIncrease: 6</li>
<li>accumDecrease: 0</li>
<li>maxIncrease: 3</li>
<li>maxDecrease: 0</li>
</ul>
<p>After about 10 minutes:</p>
<ul>
<li>time running: 574 sec</li>
<li>current: 763</li>
<li>previous: 762</li>
<li>curDiff: 1</li>
<li>peak: 834</li>
<li>increaseCount: 127</li>
<li>decreaseCount: 3</li>
<li>accumIncrease: 132</li>
<li>accumDecrease: 123</li>
<li>maxIncrease: 3</li>
<li>maxDecrease: 72</li>
</ul>
<p>A couple of things to note:</p>
<ol>
<li>After about 10 minutes, current is
very close to what it was at 3 sec:
763 vs 760. That means right now,
the totalMemory is 3.052 Mb; At 3
sec, it was 3,040 Mb.</li>
<li>The increase count is high, and the
decrease count is low. That means
the player has allocated memory a
lot of times but released it very
sparingly.</li>
<li>maxIncrease is low and maxDecrease
is high. Add that to 2) and you have
an intersting pattern: The player
allocates a small number of chunks
frequently. It releases them at a
much slower pace; when it does, though, it
releases a big number of chunks.</li>
<li>accumIncrease and accumDecrease are
very close too.</li>
</ol>
<p>Now, let the swf run some more time. After running for 50 minutes, the snapshot looks like this:</p>
<ul>
<li>time running: 2989 sec</li>
<li>current: 931</li>
<li>previous: 930</li>
<li>diff: 1</li>
<li>peak: 931</li>
<li>increaseCount: 690</li>
<li>decreaseCount: 8</li>
<li>accumIncrease: 699</li>
<li>accumDecrease: 522</li>
<li>maxIncrease: 3</li>
<li>maxDecrease: 163</li>
</ul>
<p>At this point you might think there's a leak. Note how the current memory is 931, versus the initial 760. </p>
<p>But look what happens at 3124 sec, ~52 minutes:</p>
<ul>
<li>time running: 3142 sec</li>
<li>current: 767</li>
<li>previous: 768</li>
<li>diff: -1</li>
<li>peak: 962</li>
<li>increaseCount: 720</li>
<li>decreaseCount: 10</li>
<li>accumIncrease: 730</li>
<li>accumDecrease: 717</li>
<li>maxIncrease: 3</li>
<li>maxDecrease: 194</li>
</ul>
<p>Before the GC kicked in, the peak grew to 962. But after that, current went down to 767, again, very close to the initial 760. </p>
<p>So, to wrap it up, the fact that memory usage grows up does not necessarily mean there's a leak. You just have to deal with the fact that the player is garbage collected, and that process is non deterministic. Memory will eventualy be reclaimed at some point (unless you do have a leak in your code, of course). You cannot determine when will this happen. It will happen when the player determines it's necessary. And in general, the player knows better. </p>
<p>That said, I think it's important to pay attention to possible leaks in your code. But just tracing System.totalMemory is not going to help you determine that. If you can, use a tool such as Flex Builder's memory profiler, which is not perfect but gives you much more useful info. And be careful when adding listeners to the stage and when using timers, the biggest culprits of memory leaks in the flash player.</p>
http://stackoverflow.com/questions/1010859/for-vs-foreach-on-array-performance-in-as3-flex/1023164#10231641Answer by Juan Pablo Califano for For VS Foreach on Array performance (in AS3/Flex)Juan Pablo Califano2009-06-21T03:50:59Z2009-06-21T03:50:59Z<p>When iterating over an array, for each loops are way faster in my tests.</p>
<pre><code>var len:int = 1000000;
var i:int = 0;
var arr:Array = [];
while(i < len) {
arr[i] = i;
i++;
}
function forEachLoop():void {
var t:Number = getTimer();
var sum:Number = 0;
for each(var num:Number in arr) {
sum += num;
}
trace("forEachLoop :", (getTimer() - t));
}
function whileLoop():void {
var t:Number = getTimer();
var sum:Number = 0;
var i:int = 0;
while(i < len) {
sum += arr[i] as Number;
i++;
}
trace("whileLoop :", (getTimer() - t));
}
forEachLoop();
whileLoop();
</code></pre>
<p>This gives:</p>
<p>forEachLoop : 87
whileLoop : 967</p>
<p>Here, probably most of while loop time is spent casting the array item to a Number. However, I consider it a fair comparison, since that's what you get in the for each loop.</p>
<p>My guess is that this difference has to do with the fact that, as mentioned, the as operator is relatively expensive and array access is also relatively slow. With a for each loop, both operations are handled natively, I think, as opossed to performed in Actionscript.</p>
<p>Note, however, that if type conversion actually takes place, the for each version is much slower and the while version if noticeably faster (though, still, for each beats while):</p>
<p>To test, change array initialization to this:</p>
<pre><code>while(i < len) {
arr[i] = i + "";
i++;
}
</code></pre>
<p>And now the results are:</p>
<p>forEachLoop : 328
whileLoop : 366</p>
<p>forEachLoop : 324
whileLoop : 369</p>
http://stackoverflow.com/questions/1007651/export-transparent-png-from-actionscript-to-net/1007722#10077221Answer by Juan Pablo Califano for Export transparent png from Actionscript to .NETJuan Pablo Califano2009-06-17T15:19:15Z2009-06-17T15:19:15Z<p>Yes. Check out PNGEncoder in as3corelib (<a href="http://code.google.com/p/as3corelib/" rel="nofollow">http://code.google.com/p/as3corelib/</a>). Just take a snapshot of the MovieClip / Sprite that contains the drawing (make sure you create the BitmapData as transparent) and pass it to the encoder.</p>
http://stackoverflow.com/questions/1003548/how-to-getdefinitionbyname-of-a-packageless-class-in-as3/1004650#10046501Answer by Juan Pablo Califano for How to getDefinitionByName of a packageless class in AS3?Juan Pablo Califano2009-06-17T01:18:40Z2009-06-17T01:18:40Z<p>Not sure if there is any workaround, but just to confirm:</p>
<p><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/package.html#getDefinitionByName" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/utils/package.html#getDefinitionByName</a>():</p>
<blockquote>
<p>getDefinitionByName () function
public function
getDefinitionByName(name:String):Object
Language Version : ActionScript 3.0
Runtime Versions : AIR 1.0, Flash
Player 9 Returns a reference to the
class object of the class specified by
the name parameter.</p>
<p>Parameters</p>
<p>name:String — The name of a class.
Returns Object — Returns a reference
to the class object of the class
specified by the name parameter.</p>
<p><strong>Throws ReferenceError — No public
definition exists with the specified
name.</strong></p>
</blockquote>
<p>Since both Bar and ChildBar are non-public, you're getting that ReferenceError.</p>
http://stackoverflow.com/questions/896335/referencing-movie-clip-class-instances-immediately-in-actionscript-2/913482#9134820Answer by Juan Pablo Califano for Referencing movie clip class instances immediately in Actionscript 2Juan Pablo Califano2009-05-27T00:48:46Z2009-05-27T00:48:46Z<p>First, let me apologize for focusing just on a side aspect of this issue (in my comments to fenomas' answer); though I already made my point and I even agree that object orientation, or at least, a formal class syntax was added to AS1 as an afterthought, called AS2 -- and at some points, it shows --, I neglected answering your actual question.</p>
<p>Re-reading this thread, I think it all really boils down to "waiting one frame". That's a workaround I had to use many many times in AS2, so it seems odd I neglected to see that was the real problem here.</p>
<p>Anyway, your workaround will probably work, but as you say, it can become a maintenance nightmare really quick. Fenomas' option is another valid workaround. In this case, I wouldn't go that way if I could avoid it, though, but not because of performance; rather, because re arranging a lot of stuff when you already have lay out things could be a lot of work.</p>
<p>So, perhaps you could try something really simple like:</p>
<pre><code>mc.gotoAndPlay("on");
this.onEnterFrame = function():Void {
trace(mc.inst instanceof C);
delete this.onEnterFrame;
};
</code></pre>
<p>And I think it should work. The enterFrame event will be caught by your handler one frame after you register to it. At that point, you now the frame you've moved to is ready, so you just have to clean up the handler and do what you'd normally do just after issuing the gotoAndPlay.</p>
<p>I remember I once had to do something very similar (it was not exactly the same scenario, but it boiled down to waiting one frame), so at the time I wrote a very simple class to centralize this code. It was something along these lines:</p>
<pre><code>class FrameDelay {
function FrameDelay(scope:Object,callback:Function,args:Array) {
// get a reference to the current enterFrame handler
// (if any), so we can restore it back when we're done
var oldEnterFrameHandler:Function = _root.onEnterFrame;
_root.onEnterFrame = function():Void {
oldEnterFrameHandler();
callback.apply(scope,args);
_root.onEnterFrame = oldEnterFrameHandler;
}
}
}
</code></pre>
<p>And you'd use it like this:</p>
<pre><code>mc.gotoAndPlay("on");
new FrameDelay(this,onFrameReady,["a","1"]);
function onFrameReady():Void {
// arguments (if any), will be available in the arguments array
trace(arguments.length);
trace(mc.inst instanceof C);
trace(this);
}
</code></pre>
<p>You pass a scope, a function and optionally an array of arguments. Most likely, you will not need them, and it could be also possible to just have the class constructor take a callback. But in some circumstances, you could have scope problems in your callback (this is an AS2 issue), so passing the scope explicitly is safer. </p>
<p>Also, note that I'm using _root.onEnterFrame. Though I'm making a "backup" of the original handler and restoring it back when I'm done, that doesn't necessarily mean that other parts of the code are that polite (!). So, the handler could be overwritten. If you think that could be a problem, maybe you can dinamically create a movieClip in the root at some depth you know it's not used, and replace _root.onEnterFrame with _root.dummy_mc.onEnterFrame.</p>
<p>Anyway, keep in mind that a simple inline onEnterFrame will do the job, so maybe you don't even need using a class for this.</p>
http://stackoverflow.com/questions/742271/generating-pdf-files-with-javascript/742577#7425771Answer by Juan Pablo Califano for Generating PDF files with JavascriptJuan Pablo Califano2009-04-12T22:57:48Z2009-04-12T22:57:48Z<p>There's already an Actionscript 3.0 open source library that can generate PDF's 100% client side. </p>
<p><a href="http://alivepdf.bytearray.org/" rel="nofollow">http://alivepdf.bytearray.org/</a></p>
<p>In theory, it should be possible to do it in Javascript too, I think, but it seems rather complex.</p>
<p>If requiring flash is acceptable, you could probably write some glue AS code to take data from JS (sending it as JSON, for instance), and use the library to generate the PDF. </p>
http://stackoverflow.com/questions/719769/please-help-me-get-going-on-this-assignment/719815#7198150Answer by Juan Pablo Califano for Please help me get going on this assignmentJuan Pablo Califano2009-04-05T22:28:30Z2009-04-05T22:28:30Z<p>If I understand your problem correctly, the fine could be computed as:</p>
<p>fine = initialFee + yearPenalty + speedPenalty;</p>
<p>where the initialFee is constant and yearPenalty and speedPenalty depend on the speed fed to the function.</p>
<p>I think you don't need a bunch of conditionals or swtiches; probably just one will do: check if speed is greater than speedLimit.</p>
<p>If it is, then compute the fine value with the above "formula".</p>
<p>The yearPenalty would be 50 * (year - 2), as Cory Walker pointed out (though I think he's off by one).</p>
<p>The speedPenalty was also pointed out by Marc Gravell. Find how much the user was "overspeeding", that is, speed - speedLimit. That will tell you that the "overspeeding" was, say 32. So, divide that by 5, and multiply by 87.50.</p>
<p>Add those three variables and you should get the fine value.</p>
http://stackoverflow.com/questions/702880/how-to-change-javascript-function-to-actionscript-3/703973#7039731Answer by Juan Pablo Califano for how to change javascript function to ActionScript 3?Juan Pablo Califano2009-04-01T03:40:41Z2009-04-01T03:40:41Z<p>It's not exactly what you asked, but in AS 3 I think there's an easier way:</p>
<pre><code>import flash.net.URLVariables;
private function parseURLtoVars(strLocation:String):URLVariables {
strLocation = strLocation.indexOf("?") != -1 ? strLocation.split("?")[1] : strLocation;
return new URLVariables(strLocation);
}
</code></pre>
<p>And you could use it like this:</p>
<pre><code>var testUrl:String = "test.php?key=value&key2=another_value";
var urlVars:URLVariables = parseURLtoVars(testUrl);
for(var k:String in urlVars) {
trace(k + " = " + urlVars[k]);
}
</code></pre>
http://stackoverflow.com/questions/656834/reverse-engineering-or-documentation-tools-for-flex-actionscript/656873#6568731Answer by Juan Pablo Califano for reverse engineering or documentation tools for flex/actionscriptJuan Pablo Califano2009-03-18T03:23:48Z2009-03-18T03:23:48Z<p>Consider this just a pointer, but Enterprise Architect supports round-trip source code engineering for Actionscript (it's the only tool that can generate UML from AS source code, that I'm aware of). </p>
<p>I haven't used it much, just tried it some time ago, but perhaps it's worth a shot. I think it has a 30-day free trial.</p>
http://stackoverflow.com/questions/502804/partially-loaded-xml-in-flash/555279#5552791Answer by Juan Pablo Califano for Partially loaded XML in FlashJuan Pablo Califano2009-02-17T01:54:05Z2009-02-17T01:54:05Z<p>You could use a URLStream object to load data from a URL and read it as it downloads. </p>
<p><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLStream.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLStream.html</a></p>
<p>However, you'd have to use some ad hoc SAX / Event-driven parser, since the native XML object won't work on a "partial" xml string.</p>
http://stackoverflow.com/questions/513703/flash-local-file-browser-with-thumbnails/514104#5141043Answer by Juan Pablo Califano for Flash local file browser with thumbnailsJuan Pablo Califano2009-02-05T01:00:34Z2009-02-05T01:00:34Z<p>You can use a FileReference object, which allows the user to browse his filesystem (it pops up the native OS UI control, so if what you want is making the file browser itself, I'm afraid it's not possible, at least in normal swf).</p>
<p>In flash player 10, you can work with local files directly; load the file into the swf, modify it and save it back (it requires user interaction, i.e. a mouse click, and again, it pops up a "save file" native dialog; you can't write the file directly for security reasons). For previous versions, you have to upload the file to a server first and then download it back to be able to modify it.</p>
http://stackoverflow.com/questions/453399/actionscript-2-boxing-performance/453588#4535883Answer by Juan Pablo Califano for ActionScript 2 boxing performanceJuan Pablo Califano2009-01-17T16:58:22Z2009-01-17T16:58:22Z<p>There's no difference at runtime. AS 2 is run by the Actionscript Virtual Machine 1 (AVM1), which doesn't support static typing, so type information is rather a hint for the compiler to help you catch type inconsistencies earlier. But the same code with or without type annotations produces the same bytecode.</p>
<p>AS 3 is run by AVM2, which supports both dynamic and static typing, so declaring types in the code eliminates some runtime lookup, which makes it faster to execute.</p>
http://stackoverflow.com/questions/346722/do-real-programmers-network-and-share/346751#3467511Answer by Juan Pablo Califano for Do real programmers network and share?Juan Pablo Califano2008-12-06T20:41:35Z2008-12-06T20:41:35Z<p>In my experience, sharing knowledge and mentoring has been very common in every-day work. I've been the most junior developer in some teams and the most senior in others, and I've always got to learn a lot from the most experienced guys, as well as guiding others who had less experience than me (and yes, you can learn from them too). I don't know about material rewards and as far as I know there wasn't any kind of policy on "networking", but I'd say most people I've worked with are naturally open and willing to collaborate with each other. </p>
http://stackoverflow.com/questions/326797/best-way-to-calculate-if-there-is-a-1-4-chance-something-will-happen-in-c/326946#3269462Answer by Juan Pablo Califano for Best way to calculate if there is a 1/4 chance something will happen in C++?Juan Pablo Califano2008-11-29T00:16:04Z2008-11-29T18:30:50Z<p>I don't know much C++, so I might be wrong. But it seems rand() return a value between 0 and RAND_MAX. So maybe you could do something like this:</p>
<pre><code>double odds = .25;
if(rand() <= RAND_MAX * odds) {
// there should be .25 chance of entering this condition
}
</code></pre>
<p>PS: Maybe this requires some casting.</p>
http://stackoverflow.com/questions/308149/possible-to-import-an-image-into-as3-without-php/309874#3098741Answer by Juan Pablo Califano for Possible to import an image into AS3 without PHP?Juan Pablo Califano2008-11-21T19:21:51Z2008-11-21T19:21:51Z<p>Yes, you can if you are targeting Flash Player 10. Use the FileReference.load() method. Once the file is loaded, you can access to the raw data as a ByteArray, using the data property. In flex you can pass that to an Image component. In plain Actionscript, you can use the Loader.loadBytes() method to the display the loaded image.</p>
http://stackoverflow.com/questions/199260/how-do-i-reverse-a-utf-8-string-in-place4How do I reverse a UTF-8 string in place?Juan Pablo Califano2008-10-13T22:30:19Z2008-11-05T13:55:55Z
<p>Recently, someone asked about an <a href="http://stackoverflow.com/questions/198199/how-do-you-reverse-a-string-in-place-in-c-or-c">algorithm for reversing a string in place in C</a>. Most of the proposed solutions had troubles when dealing with non single-byte strings. So, I was wondering what could be a good algorithm for dealing specifically with utf-8 strings.</p>
<p>I came up with some code, which I'm posting as an answer, but I'd be glad to see other people's ideas or suggestions. I preferred to use actual code, so I've chosen C#, as it seems to be one of the most popular language in this site, but I don't mind if your code is in another language, as long as it could be reasonably understood by anyone who is familiar with an imperative language. And, as this is intended to see how such an algorithm could be implemented at a low-level (by low-level I just mean dealing with bytes), the idea is to avoid using libraries for the core code.</p>
<p><strong>Notes:</strong></p>
<p>I'm interested in the algorithm itself, its performance and how could it be optimized (I mean algorithm-level optimization, not replacing i++ with ++i and such; I'm not really interested in actual benchmarks either).</p>
<p>I don't mean to actually use it in production code or "reinventing the wheel". This is just out of curiosity and as an exercise.</p>
<p>I'm using C# byte arrays so I'm assuming you can get the lenght of the string without running though the string until you find a NUL.
That is, I'm not accounting for the complexity of finding the lenght of the string. But if you're using C, for instance, you could factor that out by using strlen() before calling the core code. </p>
<p><strong>Edit:</strong></p>
<p>As Mike F points out, my code (and other people's code posted here) is not dealing with composite characters. Some info about those <a href="http://www.unicode.org/faq/char_combmark.html" rel="nofollow">here</a>. I'm not familiar with the concept, but if that means that there are "combining characters", i.e., characters / code points that are only valid in combination with other "base" characters / code points, a look-up table of such characters could be used to preserve the order of the "global" character ("base" + "combining" characters) when reversing.</p>
http://stackoverflow.com/questions/1344859/as3-accessing-library-items-from-outside-the-document-class/1344989#1344989Comment by Juan Pablo Califano on AS3 - Accessing Library Items from outside the Document classJuan Pablo Califano2009-08-28T12:39:31Z2009-08-28T12:39:31Ztry this:
var clazz:Class = loaderInfo.applicationDomain.getDefinition("ClassName") as Class;
var instance:ClassName = new clazz();
http://stackoverflow.com/questions/1331978/loading-symbols-from-an-as2-swf-into-an-as3-application/1338407#1338407Comment by Juan Pablo Califano on Loading symbols from an AS2 SWF into an AS3 application?Juan Pablo Califano2009-08-27T22:40:20Z2009-08-27T22:40:20ZMakes sense, since you can export a swf for FP > 8 and AS 2.0 ...http://stackoverflow.com/questions/1340740/childs-and-parents-and-the-famous-garbage-collector-in-actionscript-3/1340849#1340849Comment by Juan Pablo Califano on Childs and parents and the famous garbage collector in actionscript-3Juan Pablo Califano2009-08-27T18:11:52Z2009-08-27T18:11:52ZYou'll see the number of current instances of MySprite will grow. But if you force a GC cycle, all instances will be freed after you remove MySprite. Note that I'm not removing the hard-referenced listener. http://stackoverflow.com/questions/1340740/childs-and-parents-and-the-famous-garbage-collector-in-actionscript-3/1340849#1340849Comment by Juan Pablo Califano on Childs and parents and the famous garbage collector in actionscript-3Juan Pablo Califano2009-08-27T18:11:06Z2009-08-27T18:11:06ZBranden, I'm afraid you're wrong. Reference count is just a part of GC. You have to take into account "root" GC objects, that are used to traverse the active objects tree. People often forget about that and "detect leaks" checking System.totalMemory, so they think they have a leak when that's not necessarily the case. Check this sample with a profiler if it's available to you (and you feel like doing it anyway ;) <a href="http://pastebin.be/20568" rel="nofollow">pastebin.be/20568</a>
http://stackoverflow.com/questions/1340740/childs-and-parents-and-the-famous-garbage-collector-in-actionscript-3/1340849#1340849Comment by Juan Pablo Califano on Childs and parents and the famous garbage collector in actionscript-3Juan Pablo Califano2009-08-27T12:49:33Z2009-08-27T12:49:33Z"If you have non-weak listeners nothing will be GCed". I disagree. You can have strong listeners attached, as long as the object you're listenening is eligible for GC. I.e. this doesn't apply to the stage, running timers or objects that are referenced by objects that are not collectable (because they're in active use).http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Juan Pablo Califano on Does dispatching an event interrupt a function?Juan Pablo Califano2009-08-13T20:15:47Z2009-08-13T20:15:47ZMatt, that's right. That's why I upvoted rice's answer. As he points out, and as I said in my first comment, some events (arguably those you use more often) are dispatched asynchronously. If by external the OP meant the flash.net API, your answer is right. Yet you could be using your own custom events or events fired by some library that is not asynchronous (I just dispatched the event directly for brevity, but this call could be buried somewhere else). In those cases, not accounting for that could lead to problems; for instance, if you re-entry the function, you could get a stack-overflow. http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Juan Pablo Califano on Does dispatching an event interrupt a function?Juan Pablo Califano2009-08-13T16:55:39Z2009-08-13T16:55:39ZI disagree. Try dispatching an event and you'll see the handler will be called while foo is being executed. private function test():void {
var dispatcher:EventDispatcher = new EventDispatcher();
dispatcher.addEventListener(Event.COMPLETE,function(e:Event):void {
trace("handleComplete");
});
dispatcher.dispatchEvent(new Event(Event.COMPLETE));
trace("last line of test");
}http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267818#1267818Comment by Juan Pablo Califano on Does dispatching an event interrupt a function?Juan Pablo Califano2009-08-13T12:48:49Z2009-08-13T12:48:49Z@bug-a-lot. But the model described is applicable to the flash player.http://stackoverflow.com/questions/1259821/any-reverse-engineers-have-experience-with-secureswf/1263788#1263788Comment by Juan Pablo Califano on Any reverse engineers have experience with secureSWF?Juan Pablo Califano2009-08-13T12:46:22Z2009-08-13T12:46:22ZYes, you can find workarounds for almost every error. My point was that you have to do it and it takes some extra time; something not always mentioned. I don't know you, but I call that sort of thing testing. And if you find a problem, I call the process of fixing it debugging. So, I'd say you have to test and possibly debug the obfuscated swf. http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267818#1267818Comment by Juan Pablo Califano on Does dispatching an event interrupt a function?Juan Pablo Califano2009-08-13T01:26:19Z2009-08-13T01:26:19Z+1. Nice recap.http://stackoverflow.com/questions/1259699/actionscript-3-import-package-vs-import-package-class/1260660#1260660Comment by Juan Pablo Califano on Actionscript 3 import package.* vs import package.ClassJuan Pablo Califano2009-08-13T01:24:58Z2009-08-13T01:24:58ZNo problems. And yes, that was the behaviour in AS 2. If you used the fully qualified name, you could omit the import.http://stackoverflow.com/questions/1267685/does-dispatching-an-event-interrupt-a-function/1267837#1267837Comment by Juan Pablo Califano on Does dispatching an event interrupt a function?Juan Pablo Califano2009-08-13T01:13:34Z2009-08-13T01:13:34ZI'm afraid this is not true for all event dispatching. The event mechanism is not inherenty asynchronous. It boilds down to callbacks, really. It is true that most events dispatched by the player's API are fired asynchronously, though, like those generated by user gestures, the flash.net package, etc. http://stackoverflow.com/questions/1263388/actionscript-3-0-function-completion-event-listener/1263418#1263418Comment by Juan Pablo Califano on ActionScript 3.0 Function Completion Event ListenerJuan Pablo Califano2009-08-12T01:41:28Z2009-08-12T01:41:28ZThe problem, though, is that if you're in the last line of a function, you're still executing that function. So, the function has not really completed yet, which is what the OP asked...http://stackoverflow.com/questions/1259699/actionscript-3-import-package-vs-import-package-class/1261389#1261389Comment by Juan Pablo Califano on Actionscript 3 import package.* vs import package.ClassJuan Pablo Califano2009-08-12T00:52:39Z2009-08-12T00:52:39Z+1. I personally like importing explicitly every class. I'd think it twice if I had to do it manually, though. But, anyway, you're right about how import works. It's a compiler directive, but it doesn't force compilation. Otherwise, why would anyone use the "var dummy:SomeClass;" hack to force the inclusion of a class not referenced as such in code? http://stackoverflow.com/questions/1259699/actionscript-3-import-package-vs-import-package-class/1260660#1260660Comment by Juan Pablo Califano on Actionscript 3 import package.* vs import package.ClassJuan Pablo Califano2009-08-12T00:48:20Z2009-08-12T00:48:20ZJust a note: even if you use the fully qualified path in your code, you need the import or else the compiler will complain.