nend Posted December 7, 2006 Share Posted December 7, 2006 I've made a little script that opens a MS word document select all and copy it to the clipboard. Next I open a MS outlook mail and want to paste the clipboard to the body from the mail. How can I do this? Please help. $outlook = ObjCreate("Outlook.Application") $Word = ObjCreate("Word.Application") $Word.Documents.Open(@scriptdir & "\test.DOC") $Word.Selection.WholeStory $Word.Selection.Copy $objMail = $Outlook.Application.CreateItem(0) $objMail.Recipients.add("test@test.nl") $objMail.Subject = "Test" $objMail.Body = " " $objMail.Display Link to comment Share on other sites More sharing options...
lod3n Posted December 7, 2006 Share Posted December 7, 2006 $objMail.Body = ClipGet() [font="Fixedsys"][list][*]All of my AutoIt Example Scripts[*]http://saneasylum.com[/list][/font] Link to comment Share on other sites More sharing options...
Sirwin Posted May 28, 2007 Share Posted May 28, 2007 (edited) $objMail.Body = ClipGet()So, does the final code look like this one (below)?----------------------------------------------------------------------------------$outlook = ObjCreate("Outlook.Application")$Word = ObjCreate("Word.Application")$Word.Documents.Open(@scriptdir & "\test.DOC")$Word.Selection.WholeStory$Word.Selection.Copy$objMail = $Outlook.Application.CreateItem(0)$objMail.Recipients.add("test@test.nl")$objMail.Subject = "Test"$objMail.Body = ClipGet() $objMail.Display ----------------------------------------------------------------------------------Let me know if I got this right COS I just spent 13 hours trying to learn AutoIT. *sighs* How many more hours do I got left now? Anyway, let me know about the code above please. Edited May 28, 2007 by Sirwin Link to comment Share on other sites More sharing options...
lod3n Posted May 29, 2007 Share Posted May 29, 2007 It looks pretty good. Does it work for you? [font="Fixedsys"][list][*]All of my AutoIt Example Scripts[*]http://saneasylum.com[/list][/font] Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now