Hello guys,
Im using asterisk 13.
I need invoke macro dynamically.
Example:
In extensions.ael have this macro below:
macro testMacro(string){
NoOp(text {string});
return;
}
And I receive a variable through an endpoint {comand}= &testeMacro(foo).
How can I execute this variable ${comand} like a macro??
I tried using EVAL, EXEC, tryExec…
Im utilizing AEL.
Thx guys