Login Page - Create Account

Support Board


Date/Time: Mon, 20 May 2024 02:13:52 +0000



Post From: Letter Asignment

[2020-07-09 18:23:48]
JohnR - User831573 - Posts: 300
If you are willing to use a keyboard macro program, AutoHotKey, it is very easy to do. I doubt you will be able to just press a single letter key, but you will be able to use a letter key with other combinations. I prefer to use Contol and Windows keys as the other 2 keys. Doing that I have not run into any conflicts.

Below is my post from another forum topic. -- Solved within AHK--> was Enhance 'Goto Chart Number' within the 'Windows' on SC main menu

I just successfully created a test script to run an AHK using WinExist and WinActivate on 2 SC chart windows. Way, way faster.

User907968 - thanks again for sharing.

To get it to work in each of the charts, I changed the Adv settings pg 2 Title Bar Name and check box for Use Title Bar Name as Tab Label.

Very kewl - thanks again

JohnR

;===========
;
; Win=# + Alt=! + w = brings 2 Sierra Chart windows to the front for Test use.
;
>#!w::
if WinExist("JOR_Test_2")
WinActivate ;
Sleep 200
if WinExist("JOR_Test_1")
WinActivate ;
return