Hi Forum, I need some code to launch Firefox window and an opened folder Side By Side.
Actually I use a workaround based on two .bat files an a .vbs file.
The .vbs file called "Snap" contains:
First .bat file called "Firefox" contains:
Second .bat file called "Align" contains:
Finally, can someone suggest me a way to do all this with an AMS code.
Thanks as usual
Actually I use a workaround based on two .bat files an a .vbs file.
The .vbs file called "Snap" contains:
Code:
dim objShell set objShell = CreateObject("Shell.Application") objShell.TileVertically set objShell = nothing
Code:
start firefox.exe
Code:
start Firefox.bat timeout /t 5 explorer "C:\Folder" timeout /t 2 start snap.vbs
Finally, can someone suggest me a way to do all this with an AMS code.
Thanks as usual
Comment