Home » Questions » Computers [ Ask a new question ]

Can you access the windows registry from Adobe Air?

Can you access the windows registry from Adobe Air?

"(y/N)

Edit: Read-only access is fine."

Asked by: Guest | Views: 307
Total answers/comments: 3
Guest [Entry]

"If your willing to force the user to also install another application, you could write a small C# or C++ windows service that simply opens a Socket that provides some kind of protocol for accessing the registry. Then in AIR you can use the Socket class to send messages to/from the C# service that would return results to the AIR app.

When the app loads you can try to connect to the Socket, and if the connection is rejected you could prompt the user to download/install the service.

As for direct access to the registry I am pretty sure Adobe wouldn't allow that from AIR."
Guest [Entry]

"If you can I'd be horrified.

Why would you be horrified?
Air is a desktop platform, and having access to the OS's APIs (such as registry access) makes plenty of sense.

That being said, it isn't supported now (and as Adobe seem to be very Mac-centric, I doubt it will ever be added).

I have settled on grabbing the users name from the name of the user directory

Using File.userDirectory.name will work in most cases, but it seems like a very fragile implementation, it relies on the OS maintaining the convention of having the username as their directory. I can think of a few possible things that might break it (playing with TweakUI etc)."
Guest [Entry]

"Are you trying to determine if the user is an administrator or not?

If so you could grad the username by with ""File.userDirectory.name"".

And I think to figure out if the user is an administrator you could probably try to access a file that requires administrator privileges (maybe try writing a file to Windows/System32). If the file access fails you could probably assume that the user is under a Limited account."