#cs The links in this disk's readme are all broken. A lot of the main htm pages also have misdirects. This script will install Lexis software and open the two important documents referenced in the readme. #ce Sleep(2000) installLexis() ShellExecute("D:\CAUSES\CAUSE.HTM") ShellExecute("D:\MONOGR~1.PDF") Func installLexis() Run("D:\Lexis\SETUPL~1.exe") WinWait("Welcome") ControlClick("Welcome","&Next >", "Button1") WinWait("Software License Agreement") ControlClick("Software License Agreement", "&Yes", "Button2") WinWait("Choose Destination Location") ControlClick("Choose Destination Location", "&Next >", "Button1") WinWait("Select Components") ControlClick("Select Components", "&Next >", "Button3") WinWait("Select Program Folder") ControlClick("Select Program Folder", "&Next >", "Button2") WinWait("Setup Complete") ControlClick("Setup Complete", "Finish", "Button4") EndFunc