|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| browser.manualCommand(Enable) |
Parameters
| BOOL | Enable | If set to true, the URLs mio:.. are to be manually processed by the application. |
Return value
No value is returned.
Description
Enable or disable the automatic call of MioScript functions with the URLs mio:
By default, MioEngine supports functions call with the URLs mio: as follow:
<A href='mio:doThis>Call MioScript</A>
|
Except if you have called this function with the parameter true, the following MioScript code will be called:
function.public:doThis
// do something...
function.end
|
If the event event.browser:mioCommand is declared, the automatic calls of MioScript functions are disabled automatically.
|
|
|
|