my script I have works fine for what ti is except for one part. the very beginning doesnt maximize.
this is my first line:
Run("explorer.exe", "", @SW_MAXIMIZE)
this only works if i last had the window maximized when i last closed it. if i had it windowed smaller and closed then when the run command executes it just doesn't maximize.
any idea why it wont work?
it works perfectly fine if i do this:
Run("mspaint.exe", "", @SW_MAXIMIZE)
or
Run("notepad.exe", "", @SW_MAXIMIZE)
but not for explore.
what gives?
since the rest of my script uses mouse coordinates from a autoit Record session, the coordinates are depending on that the window is maximized and since its not maximizing then its just clicking random spots.
thanks in advance!