Search found 1726 matches

by Marko
May 11th, ’17, 21:42
Forum: General Discussion
Topic: Fastkeys Text Expander will work only ONE time per session
Replies: 1
Views: 1151

Re: Fastkeys Text Expander will work only ONE time per session

As discussed, it looks like FastKeys is in conflict or blocked by another application.
by Marko
May 4th, ’17, 08:35
Forum: General Discussion
Topic: New Calendar Event with preset Attendees
Replies: 4
Views: 1964

Re: New Calendar Event with preset Attendees

if you remove calItem.Start line, the calendar event will be created for the first next time slot.
by Marko
Apr 26th, ’17, 08:49
Forum: General Discussion
Topic: Error message re hotkeys
Replies: 5
Views: 2401

Re: Error message re hotkeys

fastkeys.info at gmail.com
by Marko
Apr 25th, ’17, 21:42
Forum: General Discussion
Topic: How to run in background script that set Word as clipboard?
Replies: 2
Views: 2338

Re: How to run in background script that set Word as clipboard?

Try running it by using Script mode. Copy the script to text file, like MyScript.ahk and then set the item with Type: Script.
by Marko
Apr 25th, ’17, 13:28
Forum: General Discussion
Topic: Error message re hotkeys
Replies: 5
Views: 2401

Re: Error message re hotkeys

Reinstall will not help, please send us your settings.fdb file and we will check.
by Marko
Apr 19th, ’17, 13:00
Forum: General Discussion
Topic: New Calendar Event with preset Attendees
Replies: 4
Views: 1964

Re: New Calendar Event with preset Attendees

This works for me on Office 2013: calItem:=ComObjCreate("Outlook.Application").CreateItem(1) calItem.MeetingStatus:=1 calItem.Location:="Location text" calItem.RequiredAttendees:="James Brown" calItem.Importance:=0 calItem.Body:="Body text" calItem.Subject:=&q...
by Marko
Apr 13th, ’17, 20:38
Forum: General Discussion
Topic: Description as input?
Replies: 1
Views: 1433

Re: Description as input?

No, unfortunately not.
by Marko
Apr 11th, ’17, 22:48
Forum: General Discussion
Topic: LIB behavior with AHK scripts
Replies: 2
Views: 1835

Re: LIB behavior with AHK scripts

This is by design in Ahk_H. Please check this documentation for more information:
https://hotkeyit.github.io/v2/docs/Functions.htm#lib
by Marko
Apr 11th, ’17, 22:43
Forum: General Discussion
Topic: Command for create/paste clipboard content into .TXT file?
Replies: 2
Views: 1595

Re: Command for create/paste clipboard content into .TXT file?

Code: Select all

File:="D:\Filename.txt"
FileDelete, %File%
FileAppend, %Clipboard%, %File%
by Marko
Apr 10th, ’17, 15:55
Forum: General Discussion
Topic: Command for create/paste clipboard content into .doc file?
Replies: 7
Views: 4137

Re: Command for create/paste clipboard content into .doc file?

There must be a conflict with some other command you use. You can also try to do it manually (adjust sleeps if needed): SendMode, Input RunWait, winword WinActivate, Microsoft Word sleep 500 Send ^v sleep 500 Send !f Send a sleep 1000 Send b sleep 1000 Send Z:\!TRANSFER\DOC\Filename sleep 1000 Send ...