1

I want to write application in adobe flex/air through which I can communicate/connect with hardware devices such as Fingerprint reader, scanner.

Is there any way to do so?

Is flex/air support hardware interaction with the following devices.

Umar
  • 11
  • 2
  • you can communicate with fingerprint reader with middle ware applications such as Java, .net etc. but i didn't know how to communicate with Air application – Exhausted Dec 16 '11 at 06:19
  • possible duplicate http://stackoverflow.com/questions/1500832/is-there-a-way-to-use-a-fingerprint-scanner-with-flex – Exhausted Dec 16 '11 at 06:22

1 Answers1

3

It's possible in AIR if you use native extensions.

You will have to write a separate native extension for each platform and compile separate application versions.

Native extension example for Mac.

Native extension example for Mac and Windows in C++.

Maxim Kachurovskiy
  • 2,992
  • 2
  • 21
  • 24