Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Feature request: Ability to minimize or hide Playback controls
Collapse
X
-
Feature request: Ability to minimize or hide Playback controls
Please allow us the ability to minimize or hide the Playback controls window. Currently, this window is always on the "front". It is never possible to hide this control window behind another window. This window is always blocking other content on the screen. This super annoying when we are milt-tasking or developing scripts. The window blocks important sections of the screen realestate and reduces productivity because I frequently have to move the window when I don't need it. Not everyone is blessed with multiple monitors or wide screens. It just makes no sense to always force this control window to the front. Maybe you have have a default behavior where it is always on the front. However, give us the ability to unpin it from being always on the front.
Tags: None
- Likes 1
-
-
Hello wzgy0920,
Based on this version's release notes, I don't see mention of this feature request being added. You can always search by the tracking number Jason provided previously in a new version's release notes for this information. Please see the below link:
Comment
-
-
I saw a vendor on youtube accidentally reveal they were using some windows 3rd party program to hide the playback
Comment
-
Here is AutoHotkey script (v1.1). Pressing F7 on the keyboard hides the playback window beneath all other windows, and F8 brings it back.
Code:#persistent SetTitleMatchMode, 2 ; 2 means partial matching on window titles previousPosition := "" ; F7 to send the window to the bottom F7:: ; Save the current position (Z-order) before sending to bottom WinGet, previousPosition, ID, Playback WinSet, Bottom,, Playback return ; F8 to restore the window to its original position F8:: if (previousPosition != "") { ; If the previous position was saved, bring the window to the top WinActivate, ahk_id %previousPosition% WinSet, Top,, ahk_id %previousPosition% ; Clear the variable after restoring previousPosition := "" } return
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
65 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
23 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
26 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
52 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment