|
|
|
|
Events
Functions
MioScript Reference
|
|
Raised when numeric values are received from an external application running on the local computer.
The numeric values can be sent with the function extern.sendNum and retreived with extern.receivedNum.
The handle ID of the caller application can be retrieved with extern.remoteHandle.
MioScript Sample Code
// Sending the numeric values 100 and 500 to a window named <-I->AppName<-/I->
&EX_PID = extern.getHandle("AppName")
extern.sendNum(&EX_PID, 100, 500)
// Receiving the number from the second application
event.extern:received:num
alert(extern.receivedNum(0))
alert(extern.receivedNum(1))
event.end |
|
|
|