Many thanks for that however there is a problem that the F:\G_drive_backup does not move in to position 3, it is staying close to the Left Hand side and the D:\ directory is almost in position 2 on 3 occurrences except one which is aligned ok?
I tried changing
Code:
WinMove, G_drive_backup\m,, A_ScreenWidth *2/4, 0
To
Code:
WinMove, F:\G_drive_backup\m,, A_ScreenWidth *2/4, 0
To no avail?
My slightly modified code that I tried to no avail -
Code:
Loop, 4 {
Run, explorer.exe /n`,C:\m,,
Sleep, 2000
WinMove, m,,0, 0, A_ScreenWidth /4
Run, explorer.exe /n`,D:\,,
Sleep, 2000
WinMove, D:\,,A_ScreenWidth /4, 0, A_ScreenWidth /4
Run, explorer.exe /n`,F:\G_drive_backup\m,,
Sleep, 2000
WinMove, F:\G_drive_backup\m,, A_ScreenWidth *2/4, 0, A_ScreenWidth/4
Run, explorer.exe /n`,G:\m,,
Sleep, 2000
WinMove, m,,% A_ScreenWidth *3/4, 0, A_ScreenWidth/4
}
IF I want less that 4 instances of explorer, say only 1, does the Loop command need to be there at the start and say Loop 1, or do I get rid of it?
Thanks