Page 1 of 1

EOS Editr: Notifications

Posted: Sat Jul 06, 2019 10:48 am
by sirveillance
I am having trouble using the notification module in EOS.

I created a notification and set an identifier for it (strokes).

then i try in an eval:

Code: Select all

get(strokes).remove()
which does not work. what do i do wrong?

Re: EOS Editr: Notifications

Posted: Sat Jul 06, 2019 8:12 pm
by YamiLoli
The correct format is this:

Code: Select all

 Notification.get("strokes").remove()
The same goes for a sound action for example:

Code: Select all

 Sound.get("strokes").pause()

Re: EOS Editr: Notifications

Posted: Mon Jul 08, 2019 8:02 pm
by sirveillance
thank you very much.