|
|
|
|
Events
Functions
MioScript Reference
|
|
Raised when the Scintilla Editor send a notification to the application.
The message received can be retrieved with sci.charReceived and sci.messageReceived.
The editor who have raised the event can be retrieved with sci.eventAuthor
MioScript Sample Code
event.sci:notify
&sci_msg = sci.messageReceived()
if(&sci_msg = &SNC_CHARADDED)
&sci_char = sci.charReceived()
alert("Char "&sci_char" pressed!")
if.end
event.end |
|
|
|