├── .gitignore ├── LICENSE ├── README.md ├── SampleCustomization ├── Includes.js ├── SampleTest.js └── SetGlobals.js ├── UIAutoMonkey.js ├── buttonHandler.js └── docimg ├── createscript.png ├── monkey.png ├── profile.png └── scriptpane.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/README.md -------------------------------------------------------------------------------- /SampleCustomization/Includes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/SampleCustomization/Includes.js -------------------------------------------------------------------------------- /SampleCustomization/SampleTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/SampleCustomization/SampleTest.js -------------------------------------------------------------------------------- /SampleCustomization/SetGlobals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/SampleCustomization/SetGlobals.js -------------------------------------------------------------------------------- /UIAutoMonkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/UIAutoMonkey.js -------------------------------------------------------------------------------- /buttonHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/buttonHandler.js -------------------------------------------------------------------------------- /docimg/createscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/docimg/createscript.png -------------------------------------------------------------------------------- /docimg/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/docimg/monkey.png -------------------------------------------------------------------------------- /docimg/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/docimg/profile.png -------------------------------------------------------------------------------- /docimg/scriptpane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanpenn/ui-auto-monkey/HEAD/docimg/scriptpane.png --------------------------------------------------------------------------------