Tagged Questions
3
votes
2answers
189 views
Flash/Flex Speex audio decode, to play a speex file
I want to play *.spx files which encoded by Speex on the Web.
But I have no knowledge of Flash/Flex or any Flash Audio codec. After Google search for a whole day, I got some solutions, that is:
Do ...
3
votes
1answer
270 views
libFLAC porting problem using Adobe Alchemy
I'm trying to port FLAC encoder using Adobe Alchemy for use in flash but can't figure out where the problem is.
I'm using Alchemy for Cygwin on Windows. It is properly installed and configured.
The ...
3
votes
3answers
455 views
How to pass ByteArray to C code in alchemy?
I want to pass a byte array object from flex code to C code.How to do that?
2
votes
2answers
336 views
Direct access of AS3 ByteArray memory in Alchemy, without AS3_ByteArray_readBytes?
I have an existing ByteArray in AS3 which I want to process (read and write) in Alchemy. All the examples I've seen of how to do this involve either using stream functions (fread, fwrite, etc), or ...
2
votes
1answer
357 views
Adobe Alchemy and Llvm 2.5
A comment on the Adobe Alchemy mailing list suggests it is possible to get Alchemy working with Llvm 2.7 (instead of 2.1 in the Alchemy download).
Does anyone know if this is true and if so any tips ...
2
votes
1answer
640 views
How to convert AS3 ByteArray into wchar_t const* filename? (Adobe Alchemy)
How to convert AS3 ByteArray into wchar_t const* filename?
So in my C code I have a function waiting for a file with void fun (wchar_t const* filename) how to send to that function my ByteArray? (Or, ...
2
votes
3answers
819 views
Can you use Adobe's Alchemy to execute a batch file?
I was going to make an AIR application but I need to execute an external application and because of the security restrictions in Adobe AIR... I was thinking why not try and bypass it by writing some ...
1
vote
1answer
170 views
Adobe Alchemy thread support
I've managed to compile (without errors) fluidsynth library that uses pthreads in old version and glib gthreads in newer version. However, in swf I get runtime errors Undefined sym: _pthread_attr_init ...
1
vote
2answers
92 views
Protect method calls in a swc residing in another swc
I have an alchemy compiled swc which contains methods to perform certain key algorithms. These methods should only return values only if user is authorized(bought license from online service) for ...
1
vote
2answers
240 views
is an alchemy C library faster/slower than an equivalent as3 library?
I've got a simple question. Suppose some simple lib written on c. Did I understood correctly that alchemy compiles it AS3 before compiling it to swf. If so, will the lib be slower or faster in ...
1
vote
2answers
895 views
Nape vs Box2d ( Actionscript 3 physics engines )
I've been testing performance of the Nape physics engine vs the Box2D AS3 and Alchemy ports and it seems like Nape is a lot slower than both of them. I have read in a few places( here and here ) that ...
1
vote
1answer
151 views
How do i get a reference to an alchemy asm declared variable into flash?
i have a variable declared in alchemy asm:
asm("var buffer:Vector.<Number> = new Vector.<Number>(100, true);");
i can populate it with data like so:
asm("buffer[%0] = %1;" : : ...
1
vote
3answers
394 views
return values from calling a function using lua alchemy
Im calling a function in lua from actionscript using
callstack : Array = luaAlchemyInstance.doString("luafunction");
my function should return some values
function luafunction()
return true, 125
...
1
vote
1answer
123 views
Populating a C array with from an AS3_Val
When receiving an array from flash, in C, how do I populate that array when its size isn't constant but the values types are?
In Alchemy's documentation, the example given is:
S3_ArrayValue(arr, ...
1
vote
0answers
337 views
Error #1006 value is not a function in C++ code compiled by Alchemy
I'm trying to port a big library to Alchemy. I've run into something that looks like an Alchemy bug. I have a class with a static member. There's a static function that uses it. Something like this:
...
0
votes
1answer
87 views
using flashzlib into flash project
I am integrating flashzlib into one of my flash project. As mentioned in documentation of project. I have successfully generated libz.a and z.l.bc and pushed libs and headers in appropriate places.
...
0
votes
1answer
446 views
Convert Little-endian ByteArray to Big-endian in AS3
How to convert Little-endian ByteArray to Big-endian in AS3?
I convert bitmapData to Big-endian ByteArray and then push it into memory with Adobe Alchemy. And then when i read it from memory i get ...
0
votes
1answer
84 views
Does the adobe 'Alchemy' support the posix pthread library?
When I use pthread_create function create a thread in the c code, it fails.
But, the pthread.h in the avm2-lib directory is declared pthread_* functions.
I want to know whether the 'Alchemy' ...
0
votes
1answer
556 views
AS3 Alchemy byteArray float conversion from sound extract
I'm trying to do something simple:
send a byteArray to a C library, fill up a buffer and read the memory, but I think I have float conversion problems.
Here is what I do in AS:
var memory:ByteArray ...
0
votes
1answer
386 views
Adobe Alchemy Byte Array reading problem
I am trying to send a bytearray extracted from a file to the C code and return that bytearray again from the C code..
I am printing the contents of the return value from C in a text view ...
0
votes
3answers
315 views
Compression support in AS3 / AIR?
Is there a way to open RAR / zip / 7z in AS3? Thanks.
Is it easy to use compression library in C with Alchemy?
0
votes
1answer
3k views
using alchemy generated swc in Flash CS4
I've gone over the Alchemy quick start guide and exported my stringecho.swc successfully, but I don't want to compile in Flex. I just don't know Flex and I'm not very keen on learning it all of a ...