Please describe in more detail what you are trying to accomplish, rather than the thing you think you want added.
Between the scripting capabilities of MC, and the flexibility of Detached Displays, there is very little MC can't handle with dual monitors.
"audioriver" and "castius" appear to understand what I'm looking for which isn't complicated. We want an option added which can be turned on which does this... regardless of whether jrm has been restarted or not, every time we start video playback on a particular zone, the window is detached.
Yes, I've read your posts regarding the scripts and creating a custom launch,... not what we want, we want an option/setting to control this. I've created a lot of lengthy batch scripts in the past to control jrm and one of the things i like the most about jrm is the vast code available. one area of jrm I've not been satisfied with is regards to multiple zones and having more control over start up behaviors upon playing video in those zones. i typically control jrm with my phone and an app called Touch Control which calls scripts I've written to control jrm and ensures the behavior i want with a near 100% success rate every time. These scripts could be significantly reduced in size if there were more built in settings/options to control how a window is opened and sized upon first playback regardless of if restarted or if the window was changed by accident on last play.
here's an example of a script i wrote which insures no matter what the situation is, when i start playback of a video on a particular zone, i get the same behavior every time. You can see that its very long and one might question why is all this necessary. I can assure you it is if you want the same behavior every time. I'm hoping a jrm developer reads this and we can have a worthwhile discussion on this topic, really believe this is one area of jrm that if looked into could improve things significantly for many people. Thanks.
"MC - Macro Play Zone 2.bat", file details below....
echo off
set longdelay=5
set meddelay=3
set shortdelay=1.5
cls
ECHO SETTING CONTROL TO ZONE 2
"C:\Windows\System32\mc20.exe" /mcc 10011, 1
ECHO STARTING VIDEO IN ZONE 2
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /Bluray Z:
ECHO DETACH DISPLAY
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 10037
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 10037, -1
ECHO REATTACH
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 10037
ECHO DETACH AGAIN
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 10037, -1
ECHO RESETTING TO "NO CROP" IN CASE WAS CHANGED
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 28022, 0
ECHO FIT WINDOW
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 28028 ,0
ECHO DISPLAY WIDESCREEN
"C:\Windows\System32\choice" /t %shortdelay% /d y > nul
"C:\Windows\System32\mc20.exe" /mcc 28022 ,2