I had an interesting idea for a program. Essentially, I want the user to be able to import a text file into my Fusion program and the program would read commands in the file and do actions.
For example if I entered "mouseClick(left)" Fusion would click, or "mouseMove(123,456)" Fusion would move the mouse accordingly, or if I had "if (RGBat(234,567) == 255) then mouseClick(left)" Fusion would execute it.
Is this possible?
Right now I'm using an ini file and it's just not enough. Is there a language such as LUA that I would be able to accomplish this with? And be able to write commands and simple if-then statements?
Thanks!