search outlook addressbook using AS3
Is开发者_JAVA技巧 it possible to query outlook address book using AS3?
if you know C++ you could write a command-line application that extracts data from the outlook contacts list, and use the AIR NativeProcess class to import the data into flash. It does mean that you have to use AIR though; it will have to install as a desktop application before it will work.
Using AIR and If you know VB.Net or C# you will be able to create a console app which accesses the Outlook application model (including the contacts database) Air can then connect to it using NativeProcess.
Have a look at this for info on connecting to Outlook on the .Net side...
and this on the NativeProcess side
As part of your installation, you will need to provide this outlook interfacing console app to your end users.
No. Even using AIR/desktop applications, you wouldn't have access to a non-app-specific file on the filesystem unless you prompted the user to browse for it.
精彩评论