Search found 20 matches

by vrod5454
Jul 8th, ’22, 23:57
Forum: General Discussion
Topic: Copy Folders to a Destination Folder
Replies: 2
Views: 460

Re: Copy Folders to a Destination Folder

Hi Tom, I added the code to the beginning of my script and adjusted CopyFilesAndFolders to use %DestinationFolder% and not the fixed path "C:\Users\ME\Desktop\DESTINATION_FOLDER\". Problem is I am getting the following error: "Error0x8001010D - An outgoing call cannot be made since th...
by vrod5454
Jun 3rd, ’22, 02:01
Forum: General Discussion
Topic: Copy Folders to a Destination Folder
Replies: 2
Views: 460

Copy Folders to a Destination Folder

Hi, I have a a folder structure that I would like to copy to a destination folder by using a START MENU (Middle click) and selecting my "COPY FOLDER STRUCTURE" FastKeys Automation command . The code below works great, but the DestinationFolder path is hard coded ""C:\Users\ME\Des...
by vrod5454
Jun 5th, ’20, 19:10
Forum: General Discussion
Topic: Creating a folder from Outlook
Replies: 3
Views: 1449

Re: Creating a folder from Outlook

Hi Marko,

I created the Start Menu entry and set the type to "Script"

I get the following error when I try to save the script.

Error at line 9.
The following variable name contains an illegal character:
"0)",,UseErrorLevel"
The program will exit.


Any suggestions?
by vrod5454
Jun 5th, ’20, 05:06
Forum: General Discussion
Topic: Creating a folder from Outlook
Replies: 3
Views: 1449

Creating a folder from Outlook

Hi, I am trying to reduce the amount of clicks it takes for me to access client folders from Outlook. My idea is... I would like to be able to middle-click (mouse wheel) on the name of a person in an outlook email and then choose "open client folder" from a FastKeys Start Menu. This would ...
by vrod5454
Dec 20th, ’19, 21:52
Forum: General Discussion
Topic: Avoiding repeating commands
Replies: 2
Views: 842

Re: Avoiding repeating commands

Got it. Thanks.
by vrod5454
Dec 17th, ’19, 22:22
Forum: General Discussion
Topic: Avoiding repeating commands
Replies: 2
Views: 842

Avoiding repeating commands

Hi, I have a SEND text expander that gives options to pick from. I would like to then insert a snippet after the user makes their selection. Is there a way to do this so I don't have to repeat the command after every option. Currently I have this: Option 1 ::Lorem ipsum dolor sit amet, consectetur a...
by vrod5454
Jun 20th, ’19, 15:45
Forum: General Discussion
Topic: Get domain from email address
Replies: 3
Views: 2127

Re: Get domain from email address

Thanks Tom.

For future readers, I changed the run line to:

Code: Select all

Run, "www.%domain%"
by vrod5454
Jun 11th, ’19, 17:47
Forum: General Discussion
Topic: Get domain from email address
Replies: 3
Views: 2127

Get domain from email address

Hi, How can I grab the domain from an email address (via input box) and open that domain in a browser? My input will always be an email address. So in the input box I type who foobar@somedomain.com I am using the code below to search for the email address using google. I would like to add code that ...
by vrod5454
Mar 21st, ’19, 20:46
Forum: General Discussion
Topic: Insert Another Item in a type command
Replies: 1
Views: 6915

Insert Another Item in a type command

Hi, Is there a way to insert another item of type send within a type command? I am creating an email from a shortcut. TYPE COMMAND Run, "C:\Program Files (x86)\Microsoft Office\root\Office16\OUTLOOK.EXE" /c ipm.note Sleep 1000 Send, {tab 2}This is my subject line{tab}%INSERT_EmailBody% %IN...
by vrod5454
Feb 5th, ’19, 15:52
Forum: General Discussion
Topic: Call a FastKey Shortcut from a batch file or command line
Replies: 1
Views: 1331

Call a FastKey Shortcut from a batch file or command line

Hi,

Is it possible to call a FastKeys text expander or shortcut from a windows command line/batch file?
Something similar to

Code: Select all

"C:\Program Files (x86)\FastKeys Portable\FASTKEYS.EXE" /select SOME-TEXT_EXPANDER-OR-SHORTCUT-STRING
*note: the above path is just an example

Thanks.