@Grassman said in BAS can not handle Press & Hold captcha:
I want to press & hold a button, which is impossible with BAS.
Possible.
How do I add the parameter type is Call Function let me can Select function for my Action
ths..verymuch


These functions are all BAS functions, Here I describe it like this
function functionDemo001() {
}
function functionDemo003() {
}
function functionDemo003() {
}
//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