basically i am trying to:
- Code: Select all
SetInterval(NIL, func:myfunc, 25)
It seems to me that you cant use SetInterval with "func:myfunc" since then it tries to give the result as the argument.
I have also tried "Func.myfunc" but then obviously the self argument is left out, and code fails for that reason.
Is there a way to get around this problem, that is there a way to use "SetInterval" command with "self"?