My script works great on BAS but when i try with custom interface nothing works as it should. When i check the dev tool all resources say " Did you forget to override SetResourceValue function ". any ideas?
@HNB said in "Fail" function is not stopping the thread anymore:
Oh My God i forget that ignore lol!
Thanks a lot and sorry for disturbing the masta! ^^
:D
how that happens? how can i develop my own module? my combobox has numbers from 1 to 24. these represent the hours. When my user chooses 10, the sleep value should be 10000000. I couldn't .... help me @DarkDrake @Oyasumi-Punpun
I have multiple functions ..
These functions are all BAS functions, Here I describe it like this
BAS Function 001
function functionDemo001() {
}
BAS Function 002
function functionDemo003() {
}
BAS Function 003
function functionDemo003() {
}
Now I want to do it Parameter is a function pointer
//Parameter is a function pointer
function functionDemoIwanttoCallOtherfunction(ParameterIsFunctionName) {
}
//use
functionDemoIwanttoCallOtherfunction ( functionDemo001 )
functionDemoIwanttoCallOtherfunction ( functionDemo002 )
functionDemoIwanttoCallOtherfunction ( functionDemo003 )
// It just like the Function: **Call Function**
pls help me tks very much