Making an adobe flex ui in which data that is calculated must use proprietary functions from a dll.
How can I import this dll into actionscript?
Is this the only way to achieve my goal?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since flex apps run on the flash runtime, you can’t include anything that can’t be run by the flash runtime.
What you could do is create a web service that can call the functions in the DLL and return the results in XML which you could consume from your flex app.