Question
Using setTimeout to call an imported class function
I'm trying to call an imported class function using the
setTimeout method. Here is what my code looks like now:
setTimeout(myTex.getAction, 5000, seat);
It is not working, though. Anyone know how this should look?
setTimeout(myTex.getAction, 5000, seat);
It is not working, though. Anyone know how this should look?