I have finished program in Python to work, but now I'm trapped. They want me to do input in TCL, yep, so I need to solve that problem ASAP. The TCL script will just say what function he wants to call and what values he want to use. So the TCL script will just call Python, the Python will do that:
function.name(self)
(enter values f.e. 150, 200, 5)
and in Python that will just fill the input inside function (X = 150, Y = 200, timeout = 5):
def Press(self):
self.X = int(input("X = "))
self.Y = int(input("Y = "))
self.timeout = int(input("How many seconds? ")
time.sleep(self.timeout)