I attempting to use javascript to access microsoft outlook address book...What can I use to access the address book then have the names the user chooses to pop into the email addresses into an email.Here's what I have so far..Please let me know if I'm on the right track...
<SCRIPT LANGUAGE="JavaScript">
<!--
function load(menu) {
if (window.dialogArguments && dialogArguments.location) {
dialogArguments.location.href = menu.options[menu.selectedIndex].value;
window.close();
}
}
// -->
</SCRIPT>
<FORM><SELECT NAME="menu">
<OPTION VALUE="C:\Documents and Settings\All Users\Start
Menu\Programs\Groupwise">Address Book
</SELECT>
<INPUT TYPE="button" VALUE="Load" onClick="load(this.form.menu)"></FORM>
<SCRIPT LANGUAGE="JavaScript">
<!--
function load(menu) {
if (window.dialogArguments && dialogArguments.location) {
dialogArguments.location.href = menu.options[menu.selectedIndex].value;
window.close();
}
}
// -->
</SCRIPT>
<FORM><SELECT NAME="menu">
<OPTION VALUE="C:\Documents and Settings\All Users\Start
Menu\Programs\Groupwise">Address Book
</SELECT>
<INPUT TYPE="button" VALUE="Load" onClick="load(this.form.menu)"></FORM>