0
votes
Is there good .sol editor for Flash Player 9 Local Shared Objects? Can we build one?
Have you tried Sephiroth's SOL Reader?
http://www.sephiroth.it/python/solreader.php
I haven't used the new …
0
votes
Using Actionscript 3 to connect to a database
Don't use client side Actionscript to connect directly to the database, unless you're comfortable with the idea of exposing your connection string to anyone.
Use some server side logic to c …
2
votes
What’s the ‘static void Main’ equivalent in Flash?
The equivalent would be the constructor of the main class. That's the class that you specify for compiling (in principle, the rest of the classes are compiled only if they are referenced in code be …
1
vote
Possible to import an image into AS3 without PHP?
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 …
3
votes
ActionScript 2 boxing performance
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 ca …
3
votes
Flash local file browser with thumbnails
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 p …
1
vote
Partially loaded XML in Flash
You could use a URLStream object to load data from a URL and read it as it downloads.
…
0
votes
Referencing movie clip class instances immediately in Actionscript 2
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 …
1
vote
Export transparent png from Actionscript to .NET
Yes. Check out PNGEncoder in as3corelib (http://code.google.com/p/as3corelib/). Just take a snapshot of the MovieClip / Sprite that …
8
votes
Why Sytem.totalMemory keeps increasing?
I think you've got a couple of things wrong.
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 TextFie …
1
vote
For VS Foreach on Array performance (in AS3/Flex)
When iterating over an array, for each loops are way faster in my tests.
var len:int = 1000000;
var i:int = 0;
var arr:Array = [];
while(i < len) {
arr[i] = i;
i++;
}
f …
1
vote
pause / resume download with URLStream?
I don't think it's possible using URLStream, but I think you could achieve the pause / resume ability using a …
0
votes
Send array from Flash (AS3) to JavaScript.
Yes, it's possible.
http://livedocs.adobe.com/flash/9.0/A …
3
votes
Strategy for making LocalConnection ids unique
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 b …
0
votes
How does ActionScript version relate to Adobe’s Flash Product?
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:
There are currently 2 virtual machines in the flash player. They're usually called …
