In your vision of splitting the screen into thirds, all of the windows widths would be A_ScreenWidth/3.
There will be 3 different left-hand edges at 0/3, 1/3 and 2/3 of the screen width.
0/3 =>0
1/3 => A_ScreenWidth/3
2/3 => A_ScreenWidth *2/3
I took the last script you posted sometime early AM (Pacific) Posted: Tue Apr 27, 2010
Here is your script, corrected.
Code:
Loop, 4 {
Run, iexplore.exe, ,Max
}
Sleep, 5000
Run, msimn.exe, ,Min
Run, C:\Program Files\WordWeb\wwnotray.exe, ,Min
Run, C:\sm_bible\smw.exe,C:\sm_bible, ,Min
Run, C:\program files\Commander\efcw.exe, ,Min
; Run, C:\pod\pod.exe, C:\pod\,Min
Run, C:\Program Files\NET Bible First Edition\netbible.chm, ,Min
Run, C:\Documents and Settings\All Users\Start Menu\Programs\Microsoft Office\Microsoft FrontPage, ,Min
Sleep, 5000
Loop, 4 {
Run, explorer.exe /n`,C:\scriptural_data,,
Sleep, 2000
WinMove, scriptural_data,,0, 0, A_ScreenWidth /3
Run, explorer.exe /n`,F:\scriptural_data,,
Sleep, 2000
WinMove, scriptural_data,, A_ScreenWidth /3, 0, A_ScreenWidth/3
Run, explorer.exe /n`,G:\scriptural_data,,
Sleep, 2000
WinMove, scriptural_data,,% A_ScreenWidth *2/3, 0, % A_ScreenWidth/3
}