Hi everybody,

I got a question about calling functions.

Is it possible to call a function when I have the function name only stored in a variable?

For example:

action test() {
// do somethins
}

STRING* functionName = "test";

void main() {
// call action with name functionName
}

Regards,
Pegamode.