Scripts
mhoJS
É possível realizar a chamada remota de funções implementadas no mhoJS. Os argumentos podem ser do tipo String
, Int
, Float
ou Bool
.
keeper {"callJS": "myfunction(args);"}
keeper {"callJS": "myfunction('hello', 5, 10.2, true);"} //string, int, float, bool
Exemplo
Chamar uma função que configura o tempo. Essa função está implementado no arquivo mhoJS customizado.
keeper {"callJS": "setTime(12, 35);"}
keeper {"callJS": "setTime(12, 35, 'd');"}