Autohotkey - Printable Version +- [TC] Gaming Forums (https://forum.city-driving.co.uk) +-- Forum: General Information (/forumdisplay.php?fid=1) +--- Forum: General Discussions (/forumdisplay.php?fid=4) +---- Forum: Help Requests & Technical Support (/forumdisplay.php?fid=9) +---- Thread: Autohotkey (/showthread.php?tid=1270) |
Autohotkey - Tommer - 2011-12-27 06:02 Hi guys this is a question for those familiar with AutoHotkey, I have a script which I use to run LFS, it first opens LFS Strobe - then opening the strobe file, LFS Cops, then LFS using the run commands.. There are two things I would like to add to the script to do which is the following; Check if the program is already running before running it, and if it is already running don't run it again. If I close LFS, close all the other programs it opened. This is the script atm; Code: Run D:\Stuff to keep\Live For Speed\strobe\LfsStrobe.exe Anybody can help? RE: Autohotkey - Nitros - 2011-12-27 07:16 From a cursory look, I'm not sure you can do those things from a script. By thebprogram, i guess yiu mean lfs. It does have conditional statements, but I don't know if there would be a library for a sort of process explorer. A script isn't a program, it can't have event handling afaik. RE: Autohotkey - Tommer - 2011-12-27 10:21 That's ok, I found out it's acheivable through IfWinNotExist Also there is a WinWaitClose so all my problems are solved |