TheQwerty once again you're working your magic (hopefully I have the right person this time

). Your registry tweak worked. A one liner like this here...
Code: Select all
run """<xy>"" /new ""C:\Users\ken\Tools\"" /win=normal,500,250,615,470 /script=""::#309;loadlayout('thumbs');open 'D:\Tools\AutoHotkey\AHK scripts\TB_XY_hide.ahk';""", , 0, 0;
Where the "Tools" folder is nothing but some links and the small AHK script is nothing but this...
Code: Select all
#SingleInstance force
DetectHiddenWindows, on
#MaxMem 1
HWND := WinExist("ahk_class ThunderRT6FormDC")
IfWinActive, ahk_id %HWND%
{
WinGet, Style, Style, ahk_id %HWND%
if (Style & +0xC00000) {
WinSet, Style, -0xC00000, ahk_id %HWND%
exitapp
}
exitapp
}
...produces this and yes, that's a second instance of XYplorer.
XY_reg_tweak.PNG
Thanks,
Ken
Edit 1: I've been using a 2nd instance of XY for viewing thumbnails quite a bit. So I setup a hotkey which will close any second instance of XY since there's no menu or toolbar present.
Edit 2: In looking at this though, I should do something about getting rid of the lnk extensions.
To see the attached files, you need to log into the forum.