Interesting stuff. But I don't need window to always be on top as I just need to see old and new window at same time. Is there as option for how windows is organized. Ie like tiles ?See if this or this helps ... ?
Do you mean completely to the left or right, rather than "overlapping mostly"?Interesting stuff. But I don't need window to always be on top as I just need to see old and new window at same time. Is there as option for how windows is organized. Ie like tiles ?
I just don't want them to overlap. I don't care about the location so much.Do you mean completely to the left or right, rather than "overlapping mostly"?
On that note, I'd rather recommend using a better text editor like Notepad3 as it support proper highlighting of AHK syntax.AutoHotKey is a bit complicated to get set up and working if you've never used it before. But basically you install the software, then you create scripts in Notepad and save them as .AHK files.
I'll cheek it out ty for the suggestion.Have you considered a different app? Windows explorer doesn't support what you're asking for.
Windows solution: A 3-party app like Q-dir http://q-dir.com/
Linux solution: Use a desktop with tiling support
Ya I can set them to known sub directory's. I really have no experience in scripting but have wanted for some time now.AutoHotKey is a bit complicated to get set up and working if you've never used it before. But basically you install the software, then you create scripts in Notepad and save them as .AHK files. You can then double click on a script to run it, and it shows up in the tray (taskbar near clock) where you can right click to close it at anytime. Some scripts auto-close, depending on what they do. Anyway...
An AutoHotKey script could be an option. Example:
https://www.autohotkey.com/boards/viewtopic.php?style=1&f=76&t=107300
But the folders are known beforehand.
Another AHK script will save/restore window positions:
https://www.autohotkey.com/boards/viewtopic.php?t=17907
This may or may not work.
I haven't tested them myself, but I could if asked.
If neither of those work, it can still likely be done but you may have to write the script yourself if you are capable. Or find someone to do it for you.
Are the folders known beforehand? Like "I want to open C:\Windows, My Documents, and Videos, each taking up 33% of the screen."
Good idea. I looked up a way to do this with a batch file, but came across a way to do it with a VBS file. VBS is a scripting language that is built into Windows. Here is the script that I created:"Show windows side-by-side"
Option Explicit
Dim objShell, fn
Set objShell = CreateObject("Shell.Application")
fn = "C:\program files\"
objShell.Explore fn
fn = "c:\Windows"
objShell.Explore fn
fn = "c:\program files (x86)"
objShell.Explore fn
WScript.Sleep(1000)
objShell.TileVertically
set objShell = nothing