diff --git a/standalones/Mansol_Opener - standalone.ahk b/standalones/Mansol_Opener - standalone.ahk deleted file mode 100644 index 81e3e3e..0000000 --- a/standalones/Mansol_Opener - standalone.ahk +++ /dev/null @@ -1,40 +0,0 @@ -#SingleInstance force - -; The exe this is compiled into has manual.ico set as its icon. - -!+S::gui() - -gui() -{ - static Number - static Hidden - - Gui, +AlwaysOnTop +ToolWindow - - Gui, Add, Edit, x2 y3 w78 h20 vNumber +Left, - Gui, Add, Button, x22 y43 w70 h20 Default vHidden, Ok - Gui, Add, Button, x81 y3 w17 h20 gHelp +Center, ? - Gui, Show, h28 w100, ManSol - GuiControl, Hide, Hidden - - Return - - ButtonOk: - Gui, submit ; I have no idea what the regex means any more... - If RegExMatch(Number, "[[:alpha:]]+") - run, % "http://serviceadvisor.deere.com/WebSA/manuals/" . Number - Else If RegExMatch(Number, "[[:digit:]]+") - run, % "https://ccms.deere.com/prweb/PRServletCustomAuth/ZDate_MgiNPn1ccL6O6pyBurDs0hjFQ8*/!STANDARD?pyActivity=SolutionsSnapStart&Action=showHarness&className=Deere-Int-Solr-Docs&Purpose=SolutionDescriptionNew&SolutionID=" . Number . "&Language=Default" - ExitApp -Return - - - Help: - Run, https://daviddaily.dev/david/d3k/wiki/ManSol - Return - - GuiClose: - GuiEscape: - Gui, Destroy - Return -} diff --git a/standalones/README.md b/standalones/README.md deleted file mode 100644 index c15930d..0000000 --- a/standalones/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# Standalone ManSol Opener - -This is a standalone version, the help guide can be found [here](https://daviddaily.dev/david/d3k/wiki/ManSol) - -## [Download the executable here](https://files.daviddaily.dev/.d3k/ManSol%20Opener.exe) -I would recommend putting it in your startup folder (`%appdata%\Microsoft\Windows\Start Menu\Programs\Startup`) so that it starts automagically when you start your computer.