INSERT INTO `wStats` (`Date`,`UID`,`URL`,`ARGS`,`IP`,`Referer`) VALUES ("2010-09-10 11:57","1284133909-5724028","docs.mioplanet.com/event_sci_notify.php","","38.107.191.118","") event.sci:notify | MioScript | MioFactory | Mioplanet Documentation Center
  Mioplanet Documentation Center
Resources and Help
HomeProductsMioScriptJavaScriptTechNotesPHP
   Home | MioScript | event.sci:notify SEARCH    

  Events
event.sci:notify

  Functions
sci.charReceived
sci.eventAuthor
sci.ID.create
sci.ID.getString
sci.ID.pos
sci.ID.sendMessage.NN
sci.messageReceived

  MioScript Reference
> Statements
app...
browser...
dialog...
disk...
draw...
extern...
filename...
keyboard...
menu...
mio...
mouse...
num...
path...
pushButton...
reg...
RS232...
sci...
screen...
shortcut...
sound...
str...
system...
time...
var...
window...

Event
event.sci:notify

Language: MioScript
Product: MioFactory


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