Tagged Questions
3
votes
1answer
124 views
globals broken with alchemy?
It seems that Adobe Alchemy isn't running global constructors. Here's some simple test code:
#include <stdio.h>
class TestClass {
public:
TestClass(const char message[]) {
...
3
votes
2answers
613 views
Why does the Adobe Alchemy Tool create faster running flash byte code than the flex compiler?
I have seen a few blog entries on this and have had a discussion or two with my team mates but I would like to see what the stack overflow community thinks.
So why does the Adobe Alchemy Tool create ...
3
votes
1answer
334 views
Anyone doing anything yet with Adobe's Project Alchemy?
Making another appearance this year at MAX was Alchemy, Adobe's C/C++-to-AVM2-bytecode compiler. It seems like really interesting stuff -- I haven't yet had time to really dig in and try it out ...
2
votes
0answers
372 views
Fast method to render thousands of bmp in Flash?
What's the fastest way to render a few dozen 16x16 bitmaps tens of thousand times at random locations on a 800x600 screen?
1) Use CopyPixel() to blit each sprite to the 800*600 screen buffer? Of ...
2
votes
1answer
168 views
Alchemy's AS3_Shim broken?
I'm trying to use AS3_Shim in my alchemy code but it doesn't seem to be working. It always returns a NULL function pointer. There don't seem to be any examples of AS3_Shim's use, so I'm not sure ...
2
votes
1answer
295 views
crash when linking swc with Alchemy
I have a project I'm trying to compile with alchemy. It will compile .o and .a files, but when trying to create a .swc, it will fail. It appears to crash with this error:
g++ -swc -o mylib.swc ...
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
160 views
using STL with Alchemy
While Alchemy supports compiling C++, it seems that using the using the STL is trouble, mostly due to a problem with std::string. What's strange is that Alchemy seems to be using GNU libstd++ v3.4.6. ...
1
vote
1answer
171 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
93 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
898 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
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
1answer
237 views
Suggetions for overcoming a flash waveform performance problem
My question is sort of a follow on from this question below but I thought it'd be best to start a new question.
...
1
vote
1answer
281 views
Simple OpenGL implementatione
I work on port of some casual games to Flash.
They are based on OpenGL. Used OpenGL version is 1.x mostly. Game engine relies is 2D. It bases on OpenGL textures and simplest ...
1
vote
2answers
260 views
using 'ar' tool in Alchemy
I've found that if you specify a path to Alchemy's 'ar' tool, it won't create the 'l.bc' file necessary to link the library.
For example, here is the case when I don't specify a path (it works):
...
1
vote
0answers
339 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
28 views
Using opencv in Flash Alchemy
I have a project that uses quite a few opencv libs to do some image processing tasks. Now I need to build a Flash app for it. I read that Alchemy allows compiling c++ libs for Flash. I wonder if ...
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
2answers
136 views
Using Adobe Alchemy to get the OpenGL image from c++ code to flash app
I have C++ application that use OpenGL. Need to convert this app to flash app. Is it possible to do this with Adobe Alchemy? Is it will be possible to get from that swc current image (for example, ...
0
votes
1answer
171 views
Flash Alchemy built .swc library too small and missing functions
I can modify and compile the SDK's stringecho.c example for AS3 use no problem.
For my own app, I compile with g++ a few dozen files successfully and link:
g++ -swc -o myApp.swc glue.o demo.o ...
0
votes
3answers
2k views
Flash 2D engine to use to make a Flash Angry Birds clone (to run on mobile)
There are several different physics engines available for Flash. What would be one you'd recommend to build a catapult (with slingshot) Angry Birds clone -- that will run well on mobile, once packaged ...
0
votes
1answer
74 views
When call AS3_Release
If I create an object in C++ code and return it in ActionScript code should I call AS3_Release before returning it? For example, I have the function in the *.gg file:
public function ...
0
votes
3answers
227 views
IMPOSSIBLE - to do audio video with java applet?
This is the code i wrote in J2SE with Native java wrapper for Gstreamer. But alas it does not work in Web Browser, i am very upset what i can do now, i have no alternative to end this project.
IS it ...
0
votes
1answer
173 views
swfbridge and large files
I have a C project that I'm using with Alchemy. The project has some post-build command-line tests that I'd like to run using the swfbridge.
These tests run, but they're extremely slowly. The ...
0
votes
1answer
158 views
making Alchemy and UnitTest++ work together
I'm using Adobe Alchemy in a project that uses UnitTest++. The unit tests run as part of the build process.
It turns out that UnitTest++ depends on a feature of C++ that isn't implemented in ...
0
votes
1answer
107 views
Preprocessor variable when using Adobe Alchemy
I'm porting a cross-platform lib I use to Alchemy. One particular file has a block of code similar to this :
#if defined(WIN32)
// Do some Windows-specific stuff
#elif defined(__linux__)
// ...
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 ...