Questions tagged [alchemy]

Alchemy is a research project from Adobe Systems that allows for the compilation of C and C++ code to AVM2 bytecode, so that it can be run on Flash Player or Adobe AIR. This is accomplished by an initial compilation to LLVM bytecode as an intermediate step.

Alchemy is a research project from Adobe Systems that allows for the compilation of C and C++ code to AVM2 bytecode, so that it can be run on Flash Player or Adobe AIR. This is accomplished by an initial compilation to LLVM bytecode as an intermediate step.

148 questions
2
votes
0 answers

Alchemy api usage in python

I am using Alchemy API for named entity extraction. For this, I am using Python library given by alchemy. I am able to get the results in XML, but I am not able to figure out how to get the results in JSON. Running the following code, I could get…
funnyguy
  • 513
  • 3
  • 6
  • 15
2
votes
2 answers

How to get list of meaningful name upon fetching minted NFTs list from Alchemy Api?

I am new to block chain and I am using Alchemy and my NFTs and NFT Meta Data is on "Pinata". When I fetch my minted NFTs from Alchemy API, in response I get list of "contract addresses" and "Token Ids". Is there any way to get list of meaningful…
Hydar Alee
  • 33
  • 6
2
votes
1 answer

Get the `functionName` called from an ethereum transaction

I'd like to display an ethereum transaction and include the methodName that was called. For example, this transaction's method was mint. Is there an API endpoint in etherscan or alchemy or infura that returns this information? Etherscan…
user2954587
  • 4,661
  • 6
  • 43
  • 101
2
votes
1 answer

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 course, call unlock(), lock() on the screen…
user703047
  • 151
  • 1
  • 1
  • 4
2
votes
1 answer

"'main' arguments were dropped!" in alchemy

Why do I get this warning whenever I compile an alchemy swc? WARNING: While resolving call to function 'main' arguments were dropped! Is there any way to disable or fix the warning?
aaaidan
  • 7,093
  • 8
  • 66
  • 102
2
votes
2 answers

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 copying the ByteArray data first into another buffer…
aaaidan
  • 7,093
  • 8
  • 66
  • 102
2
votes
0 answers

Failing to load sqlalchemy-plugin in pyinstaller'ed exe

This line of code works perfectly fine while running as a file from spyder. engine = sqlalchemy.create_engine('teradata://uid:pwd@DBinstance?driver=Teradata') However, after making an exe file using pyinstaller, I get the following error while…
jorge
  • 75
  • 11
2
votes
3 answers

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 C code that does something like System("file to…
None
2
votes
1 answer

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 on how to go about it? UPDATE: the thread is here…
hooleyhoop
  • 9,128
  • 5
  • 37
  • 58
2
votes
1 answer

Could not find or load main class path and classpath are set but still error run time

I am using alchemy API for my project. I downloaded java sdk from alchemyapi and tried to run one example code. It is compiling without any error but when i try to run it it is showing error (error msg:Could not find or load main class) I have set…
vin
  • 231
  • 1
  • 17
2
votes
1 answer

How to train Watson application using Alchemy Language API

I have used the Alchemy Language API demo: https://alchemy-language-demo.mybluemix.net/ ...to deploy on Bluemix dashboard, and now it is successfully built and deployed. Now I am not sure how to make system aware of taxonomy, keywords, entities…
Prerna
  • 29
  • 2
2
votes
1 answer

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 what I'm doing wrong. Here is some example…
paleozogt
  • 6,393
  • 11
  • 51
  • 94
2
votes
1 answer

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 glBegin/glTexCoord/glVertex/glEnd. Blending and tiling is used too. The…
Dmytro
  • 530
  • 4
  • 18
2
votes
1 answer

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 my-flex-interface.cpp mylib.a Cannot yet select:…
paleozogt
  • 6,393
  • 11
  • 51
  • 94
2
votes
0 answers

C# Alchemy API: Extract Dates?

I just realized there's no explicit statement in their website that their API, AlchemyAPI can extract dates or various date formats from a website or from given text? Has anyone attempted this and is it possible? For example: 14th of February…
PewK
  • 397
  • 3
  • 8
  • 19
1
2
3
9 10