Juan Pablo Califano
|
Registered User
|
|
Oct 12 |
accepted | AS3, loading in a SWF as a custom type |
|
Oct 12 |
answered | AS3, loading in a SWF as a custom type |
|
Oct 6 |
accepted | Possible to import an image into AS3 without PHP? |
|
Oct 2 |
awarded | ● Yearling |
|
Sep 1 |
answered | PHP operator === |
|
Aug 28 |
comment |
AS3 - Accessing Library Items from outside the Document class try this: var clazz:Class = loaderInfo.applicationDomain.getDefinition("ClassName") as Class; var instance:ClassName = new clazz(); |
|
Aug 28 |
answered | AS3 - Accessing Library Items from outside the Document class |
|
Aug 27 |
comment |
Loading symbols from an AS2 SWF into an AS3 application? Makes sense, since you can export a swf for FP > 8 and AS 2.0 ... |
|
Aug 27 |
comment |
Childs and parents and the famous garbage collector in actionscript-3 You'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. |
|
Aug 27 |
comment |
Childs and parents and the famous garbage collector in actionscript-3 Branden, 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 ;) pastebin.be/20568 |
|
Aug 27 |
comment |
Childs and parents and the famous garbage collector in actionscript-3 "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). |
|
Aug 27 |
answered | Loading symbols from an AS2 SWF into an AS3 application? |
|
Aug 17 |
awarded | ● Organizer |
|
Aug 17 |
revised |
Flex: Access member variable by using a variable in the name edited tags |
|
Aug 17 |
accepted | Efficiently splicing items from an array using Flex |
|
Aug 16 |
awarded | ● Civic Duty |
|
Aug 16 |
answered | Efficiently splicing items from an array using Flex |
|
Aug 13 |
comment |
Does dispatching an event interrupt a function? Matt, 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. |
|
Aug 13 |
comment |
Does dispatching an event interrupt a function? I 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"); } |
|
Aug 13 |
comment |
Does dispatching an event interrupt a function? @bug-a-lot. But the model described is applicable to the flash player. |
|
Aug 13 |
comment |
Any reverse engineers have experience with secureSWF? Yes, 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. |
|
Aug 13 |
comment |
Does dispatching an event interrupt a function? +1. Nice recap. |
|
Aug 13 |
comment |
Actionscript 3 import package.* vs import package.Class No problems. And yes, that was the behaviour in AS 2. If you used the fully qualified name, you could omit the import. |
|
Aug 13 |
comment |
Does dispatching an event interrupt a function? I'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. |
|
Aug 12 |
comment |
ActionScript 3.0 Function Completion Event Listener The 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... |
|
Aug 12 |
answered | Any reverse engineers have experience with secureSWF? |
|
Aug 12 |
comment |
Actionscript 3 import package.* vs import package.Class +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? |
|
Aug 12 |
comment |
Actionscript 3 import package.* vs import package.Class Just a note: even if you use the fully qualified path in your code, you need the import or else the compiler will complain. |
|
Aug 11 |
answered | How does ActionScript version relate to Adobe’s Flash Product? |
|
Aug 9 |
awarded | ● Citizen Patrol |
|
Aug 9 |
awarded | ● Self-Learner |
|
Aug 8 |
answered | Strategy for making LocalConnection ids unique |
|
Aug 5 |
comment |
Prefered method for looping sound flash as3 This is a cool feature and it's made possible some awesome stuff (like hobnox), but it's a shame one must resort to low level byte manipulation just to play a sound loop smoothly. The audio support in the player and the sound API suck big time. |
|
Jul 31 |
answered | What is a good profiling/performance monitor app/method for Flash/Flex? |
|
Jul 2 |
awarded |
● |
|
Jun 30 |
accepted | Loading images in Flex cause memory to go way up, in Internet Explorer 7 (& other browsers) |
|
Jun 30 |
comment |
Unloading objects for the garbage collector in AS3 @rhtx. Removing the listeners in this case is good idea (and good practice in general), but it's not strictly necessary for making LoginInterface eligible for GC. |
|
Jun 30 |
answered | Loading images in Flex cause memory to go way up, in Internet Explorer 7 (& other browsers) |
|
Jun 30 |
comment |
Send array from Flash (AS3) to JavaScript. JSON is fine and there are plenty of libraries you can use both on Actionscript and Javascript. In this case, though, the player handles the serialization for you, so I would just use native AS objects. It's simpler, already available off the shelf and probably faster. |
|
Jun 30 |
answered | Send array from Flash (AS3) to JavaScript. |
|
Jun 27 |
answered | pause / resume download with URLStream? |
|
Jun 27 |
revised |
Best way to reuse an element from an Array? added 843 characters in body |
|
Jun 26 |
answered | Best way to reuse an element from an Array? |
|
Jun 24 |
comment |
For VS Foreach on Array performance (in AS3/Flex) Well, could be. Didn't check with -= (I did check removing "as"). Anyway, I agree that in some cases a for loop could be faster as your samples show. More importantly, as I think we both have agreed, the bottleneck in most "real-world" loops will be its body, not the loop mechanism; and in most real cases, you'd not iterate over 10000000 items. I tended to use while (or for) loops almost exclusively, but when I realized for each were not significantly slower in most cases I tested (and were faster in many of them), and also more readable and terse (at least to me), I switched to for each. |
|
Jun 24 |
comment |
For VS Foreach on Array performance (in AS3/Flex) fenomas: Fair enough, you're right; access does not neccesarily means assignment. I think your typing the variable as Object as opposed to Number or int, for example, makes a difference. |
|
Jun 24 |
comment |
For VS Foreach on Array performance (in AS3/Flex) + 1. I think you're right about this, even though some people seem to disagree (Haven't read your blog though). |
|
Jun 24 |
comment |
For VS Foreach on Array performance (in AS3/Flex) @fenomas: it does contain an explicit / Actionscript assignment, but you can access each array's item. That's probably the "only reason", rigth, but taking the assigment out makes the comparison unfair. |
|
Jun 24 |
comment |
For VS Foreach on Array performance (in AS3/Flex) fenomas: I think that by removing the item access, you're missing the whole point. With a foreach you don't have to do the assignment in Actionscript (which is slower), yet you're able to access each item in the Array (and in a typed fashion). With a for loop you have to do this manually. The OP asked about loop performance on Arrays, and I think if you loop over an Array, you're doing it to access the elements it contains. So, I definitely think the assigment in the for loop should be there. |
|
Jun 24 |
comment |
ActionScript event handler execution order @CookieOfFortune. I'm afraid you're wrong. Event dispatching / handling is not necessarily asynchronous. |
|
Jun 22 |
accepted | Export transparent png from Actionscript to .NET |
