Hi i got 2 setup functions that start at the same time. One that hide´s text /shows text and one that creates a canvas effect. Problem is both dont work at the same time , got any ideas ?
Printable View
Hi i got 2 setup functions that start at the same time. One that hide´s text /shows text and one that creates a canvas effect. Problem is both dont work at the same time , got any ideas ?
Generally, the simplest solution is to create a third function that calls the other two, as in:
But it's impossible to know if this is appropriate without seeing your current code.Code:function myNewFunction() {
function1();
function2();
}
nvm i solved it, been up for alot of hours now. Got square eyes. Just renamed one of the functions, haha
thx thou ;)