Search found 15 matches

by jcfastkeys
Oct 7th, ’21, 16:49
Forum: General Discussion
Topic: Getting An outgoing call cannot be made since the application is dispatching an input-synchronous call
Replies: 1
Views: 525

Getting An outgoing call cannot be made since the application is dispatching an input-synchronous call

I have two identical scripts. In Text Expander Command it works OK. In Auto Complete Command I get the error An outgoing call cannot be made since the application is dispatching an input-synchronous call. Why the difference? Text Expander Command m:=ComObjCreate("Outlook.Application").Crea...
by jcfastkeys
Oct 3rd, ’21, 16:14
Forum: General Discussion
Topic: Translate date to French
Replies: 4
Views: 751

Re: Translate date to French

Thanks Marko. That works!
by jcfastkeys
Oct 2nd, ’21, 23:50
Forum: General Discussion
Topic: Translate date to French
Replies: 4
Views: 751

Re: Translate date to French

I switch my keyboard to French & run this script and get the English date October 2, 2021

Text Expander Command
KBLayout := DllCall("user32.dll\GetKeyboardLayout") & 0xFFFF
FormatTime, CurrentDateTime, L%KBLayout%, MMMM d, yyyy
send, % CurrentDateTime
by jcfastkeys
Oct 2nd, ’21, 17:44
Forum: General Discussion
Topic: Translate date to French
Replies: 4
Views: 751

Translate date to French

As anyone written a script to translate the English date %DATETIME_Today% which gives October 2, 2021 to French when using the French key board?
by jcfastkeys
Oct 2nd, ’21, 13:44
Forum: General Discussion
Topic: Creating blank email with cursor in Subject field
Replies: 1
Views: 482

Creating blank email with cursor in Subject field

How can I create a blanc email in Outlook with the Cursor in the Subject field?
by jcfastkeys
Sep 21st, ’21, 13:08
Forum: General Discussion
Topic: Inserting line break in Text Expander command
Replies: 1
Views: 635

Re: Inserting line break in Text Expander command

Fund the answer in another post %oa
by jcfastkeys
Sep 21st, ’21, 12:22
Forum: General Discussion
Topic: Inserting line break in Text Expander command
Replies: 1
Views: 635

Inserting line break in Text Expander command

How do I insert a line break before Thank You in this Text Expander Command Tried `n and Enter InputBox, Customer, Customer, Who is customer? to:="to@email.address" cc:="cc@email.address,cc@email.address" bcc:=" " subject:="Quote is attached for wireless call bells...
by jcfastkeys
Sep 16th, ’21, 16:57
Forum: User Commands and Scripts
Topic: Attaching file to Outlook email
Replies: 6
Views: 2323

Difficulting attaching word files

These two files are in the same folder. I got the path from properties so they should be correct. The Excel files attaches OK but the Word file gives me an error "Cannot find file. Make sure the path and file name are correct" I get same error if I try to attach a pdf file. Any suggestions...
by jcfastkeys
Sep 15th, ’21, 00:02
Forum: User Commands and Scripts
Topic: Attaching file to Outlook email
Replies: 6
Views: 2323

Attaching file and info in body of anopened email. i.e. Replying to email

How would I change this script if I do not want to create a new email but attach a file and enter info in the body of an existing email? Thanks FilePath:= A_Desktop "\myfile.txt" if not FileExist(FilePath) msgbox % FilePath "`nDOES NOT EXIST" else { oOutlook:=ComObjCreate("O...
by jcfastkeys
Sep 14th, ’21, 23:00
Forum: User Commands and Scripts
Topic: Attaching file to Outlook email
Replies: 6
Views: 2323

Attaching file to Outlook email that is open

Thanks
How would you change the script to attach a file and send info in the body for an existing email that is open. i.e. Replying to an email.