|
|
|
|
Events
Functions
MioScript Reference
|
|
Raised when a browser object sends a command to MioEngine via an URL as follow:
<A href='mio:commandLine'>Call MioScript</A>
|
If this event is declared, the commands received via the URLs will not be converted to MioScript code. You must process the requested command.
You can retrieve the command line with browser.ID.get.status.
The browser object ID from where the command comes from can be retrieved with window.eventAuthor.
Important: This event is processed by the libray klib.k.
See also: browser.manualCommand
MioScript Sample Code
event.browser:mioCommand()
&br_id = window.eventAuthor()
&cmdLine = browser.&br_id.get.status()
alert(&cmdLine)
event.end
|
|
|
|