Search found 7 matches

by glrobins
Aug 17th, ’23, 00:27
Forum: Suggestions
Topic: Fastkeys initialization function
Replies: 1
Views: 1113

Fastkeys initialization function

It there a way to have a startup function in Fastkeys that starts before any other code.
Where you could put something like this in it.

^x::ExitApp

Thank you for your time in advance.
Gary

P.S. I known you could probably put it in a shortcut.
by glrobins
Aug 17th, ’23, 00:01
Forum: User Commands and Scripts
Topic: Loop Macro
Replies: 5
Views: 4895

Re: Loop Macro

;ctrl-x to stop
^x::ExitApp
by glrobins
Aug 12th, ’23, 11:46
Forum: User Commands and Scripts
Topic: Is there anyway to move the cursor L or R by multiple words?
Replies: 3
Views: 1883

Re: Is there anyway to move the cursor L or R by multiple words?

Move one word:
^{left}
^{right}

move two words:
^{left 2}
^{right 2}
by glrobins
May 20th, ’23, 08:33
Forum: User Commands and Scripts
Topic: Key into shortcuts
Replies: 6
Views: 7509

Re: Key into shortcuts

put code in a text phrase, the functions below should be visible to other text phrases
Change the top left combobox to Command.

f3::
;copy
send, ^c
return

f4::
;cut
send, ^x
return

f5::
;paste
send, ^v
return
by glrobins
May 19th, ’23, 11:41
Forum: User Commands and Scripts
Topic: running Python script
Replies: 0
Views: 5153

running Python script

Add a new phase. Change to Command located top left blue drop down combobox Put this in the textbox: run, C:\Python38\python.exe -X utf8 C:\Python38\t_test.py sleep, 1000 send, ^v Change to your computer's python directory and script to run Here is the script: C:\Python38\t_test.py import clipboard ...
by glrobins
Jan 29th, ’23, 12:02
Forum: User Commands and Scripts
Topic: Move two Windows
Replies: 0
Views: 6154

Move two Windows

Title=NoteTab Pro
WinRestore, %Title%
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, 2/3*Width, Y1, 1/3*Width, Height

Title=Opera
WinRestore, %Title%
SysGet, X1, 76
SysGet, Y1, 77
SysGet, Width, 78
SysGet, Height, 79
WinMove, %Title%,, X1, Y1, 2/3*Width, Height