|
|
|
|
Events
Functions
MioScript Reference
|
|
Raised when characters are received from an external application running on the local computer.
The characters can be sent with the functions extern.sendStart, extern.send and extern.sendFinish.
The characters can be retreived with extern.received.
The handle ID of the caller application can be retreived with extern.remoteHandle.
MioScript Sample Code
// Sending character A to a window named <-I->AppName<-/I->
&EX_PID = extern.getHandle("AppName")
extern.sendStart(&EX_PID)
extern.send(&EX_PID, "A")
extern.sendFinish(&EX_PID)
// Receiving characters from the second application
event.extern:received
alert(extern.received())
event.end |
|
|
|