Can I make a swc file with alchemy that will work for AS3 programmers that do not use alchemy?

474 Views Asked by At

I am very new to Alchemy and not an expert in using swc to store code(Although I am well aware that it worked for me so far). I want to make sure I understand if Alchemy is the right tool for me in this situation. I want to make a simple script in Alchemy to help make certain 'heavy lifting' in the code lighter and less time consuming and ooze out more performance. The trick is that my colleagues will likely be daunted by the installation process(even though there is a guide). So my question is, if I do take the time to work with Alchemey, can I make my code available to other people that do not use it, for our project?

Hope that makes sense, my instincts (gut feeling) says yes. I simply want to make sure.

2

There are 2 best solutions below

2
On BEST ANSWER

Shortly, the answer is yes.

The point is you can't recompile the SWC into an SWF if you don't use alchemy. What you can do, is download at runtime (using Loader.load with ApplicationDomain.currentDomain) the SWF contained into the SWF (SWC is a simple zip, extract it).

Then, you can freely use the class that's inside, using ApplicationDomain.getDefinition("OneOfYourClass). More about application domain

Since it's at runtime, you won't have to compile Alchemy, thus it should work fine for anyone.

0
On

Yes, this is exactly what SWCs are for, you can compile your C++ code with FlasCC and expose a simple AS3 API that other people can use by linking your SWC into their project. Download the FlasCC beta and check out the tutorials it comes with that explain this in more detail: http://gaming.adobe.com/technologies/flascc/