Search Results

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 …
1
vote

reverse engineering or documentation tools for flex/actionscript

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) …
1
vote

how to change javascript function to ActionScript 3?

It's not exactly what you asked, but in AS 3 I think there's an easier way: import flash.net.URLVariables; private function parseURLtoVars(strLocation:String):URLVariables { st …
1
vote

How to getDefinitionByName of a packageless class in AS3?

Not sure if there is any workaround, but just to confirm: htt …
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 …
0
votes

Best way to reuse an element from an Array?

The "optimized" version doesn't optimize much, I think. 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 …
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 …
1
vote

Send array from Flash (AS3) to JavaScript.

Yes, it's possible. http://livedocs.adobe.com/flash/9.0/A …
5
votes

Loading images in Flex cause memory to go way up, in Internet Explorer 7 (& other browsers)

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: …
1
vote

What is a good profiling/performance monitor app/method for Flash/Flex?

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 …
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 …
2
votes

Any reverse engineers have experience with secureSWF?

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 S …

1 2 next
15 30 50 per page