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.
Search found 7 matches
- Aug 17th, ’23, 00:27
- Forum: Suggestions
- Topic: Fastkeys initialization function
- Replies: 1
- Views: 1769
- Aug 17th, ’23, 00:01
- Forum: User Commands and Scripts
- Topic: Loop Macro
- Replies: 5
- Views: 6567
Re: Loop Macro
;ctrl-x to stop
^x::ExitApp
^x::ExitApp
- 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: 2783
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}
^{left}
^{right}
move two words:
^{left 2}
^{right 2}
- Aug 10th, ’23, 21:57
- Forum: User Commands and Scripts
- Topic: Is there anyway to move the cursor L or R by multiple words?
- Replies: 3
- Views: 2783
- May 20th, ’23, 08:33
- Forum: User Commands and Scripts
- Topic: Key into shortcuts
- Replies: 6
- Views: 8693
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
Change the top left combobox to Command.
f3::
;copy
send, ^c
return
f4::
;cut
send, ^x
return
f5::
;paste
send, ^v
return
- May 19th, ’23, 11:41
- Forum: User Commands and Scripts
- Topic: running Python script
- Replies: 0
- Views: 5975
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 ...
- Jan 29th, ’23, 12:02
- Forum: User Commands and Scripts
- Topic: Move two Windows
- Replies: 0
- Views: 7042
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
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