I exposed a Delphi class to the scripts using TdwsUnit.ExposeRTTI
method. It works very well with basic data types.
However it doesn't work when I add a TNotifyEvent
. My Delphi class has an OnChange : TNotifyEvent
property and when assigning this OnChage
in a script, I get an error
"Syntax Error: More arguments expected!"
It looks like the script compiler understand I want to call the event Handler instead of assigning the OnChange
property. Add an "@"
sign doesn't help.
How can my Delphi object have an event Handler having his handler code in a script ?
Regards.
Delphi Web Script (DWScript) link a script method to an external control event
? – Newlin