Search found 103 matches

by cadudesun
Jun 23rd, ’17, 20:24
Forum: General Discussion
Topic: How to trigger "Control ClassNN" or "Text" (Window Information) through a shortcut?
Replies: 2
Views: 2825

How to trigger "Control ClassNN" or "Text" (Window Information) through a shortcut?

Hi, I'd appreciate help. Through FastKeys Window Information I can see "Control ClassNN" and "Text", which correspond to a button I want to trigger through a shortcut (snapshot below). Image I have already an script template for that software, and I'd like to adapt the script in ...
by cadudesun
Apr 24th, ’17, 19:16
Forum: General Discussion
Topic: How to run in background script that set Word as clipboard?
Replies: 2
Views: 2336

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

Hi, The script below, shared by kon, is working as expected (Word operating in the background). However, it just works when I run the script through AHK. If I run very same syntax as a Fastkeys command, there is the error "0x80001010D - An outgoing call cannot be made..." (error snapshot: ...
by cadudesun
Apr 23rd, ’17, 20:37
Forum: General Discussion
Topic: How to run in background script that set Word as clipboard?
Replies: 2
Views: 2336

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

Hi, I'd appreciate help. I recorded my screen detailing the issue - https://goo.gl/AsOtHs - which is: I need to copy/paste text from app A to app B. The problem is text from app A is copied as RTF and app B just accepts HTML (and vice-versa), and I need text colors and highlights being transferred b...
by cadudesun
Apr 11th, ’17, 03:24
Forum: General Discussion
Topic: Command for create/paste clipboard content into .TXT file?
Replies: 2
Views: 1595

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

Hi, I'd appreciate help. Recently I created a topic about creating a .doc file based on clipboard content: http://www.fastkeysautomation.com/forum/viewtopic.php?f=4&t=450&p=1816&hilit=command+doc#p1816 Now, the point is to create a new .txt file having as "body" the clipboard c...
by cadudesun
Apr 10th, ’17, 19:53
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?

Many thanks Marko! The last command worked perfectly. Based on that I also created a shorter variation, that just open and paste content into word: SendMode, Input RunWait, winword WinActivate, Microsoft Word sleep 500 Send ^v I've never used this kind of command, which now opens so many possibiliti...
by cadudesun
Apr 10th, ’17, 14:50
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?

Many thanks for directions Marko. I changed the command to: wd:=ComObjCreate("Word.Application") doc:=wd.Documents.Add() doc.Content.Paste() doc.SaveAs("Z:\!TRANSFER\DOC\Filename.docx") doc.Close() wd.Quit() However, I'm still having an error message, as showed in this snapshot: ...
by cadudesun
Apr 10th, ’17, 01:28
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?

Thanks for reply Marko. I tried both commands, being: "RunWait, winword" worked closer to what I need, and "wd:=ComObjCreate("Word.Application")" didn't run. Actually, I wondering if the Word (.doc) file couldn't already be created through the command. I recorded my scr...
by cadudesun
Apr 9th, ’17, 00:03
Forum: General Discussion
Topic: Command for create/paste clipboard content into .doc file?
Replies: 7
Views: 4137

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

Hi, Is there a command to create a new .doc file having as "body" the clipboard content? Currently I create a blank .doc (1), open it (2), then paste clipboard content (3) and save. I'm trying to replace all steps for a single command, which should generate a .doc file and when I open it t...