vote up 1 vote down star

(y/N)

Edit: Read-only access is fine.

flag

The app is a background downloader, and I need some way of getting the users name and role, which is currently only stored in the registry. I think I could get to the registry files with read only access but obviously it would be insane to try and parse (as Jarin said). I have settled on grabbing the users name from the name of the user directory, and writing a web method on the server to get back their role. The C# was a creative idea, thanks. – Shawn Simon Oct 22 at 15:20

8 Answers

vote up 2 vote down

No, you can't.

link|flag
vote up 2 vote down

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).

link|flag
vote up 1 vote down

If you can I'd be horrified.

link|flag
vote up 1 vote down

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.

link|flag
vote up 1 vote down

A bit late, but I got a wish from a client to read some values from the registry when the project was almost finished. If there were more of these types of wishes, I would have never choosen AIR. But I found a nice extension from FluorineFx, and by extending it, I can now read string and dword values from the registry. Windows only: http://aperture.fluorinefx.com/

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

You could theoretically modify the actual registry files, but I would highly discourage that idea.

link|flag
vote up 0 vote down

Be very careful if you decide to create a socket server that listens for registry commands. You are potentially creating a security hole and users' personal firewalls may get in the way in terms of usability.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.