the event
is being triggered; you're ignoring it. that's what it's telling you. don't ignore it. consume it.
the documentation will tell you which events the library
raises. you create a sub for that event using whatever
eventname you assigned when you initialized the library.
library.initialize("myevent")
sub myevent_whatevertheeventiscalled
log("whateverevent" & " was triggered")
end sub
let's say the library has a "finished" event.
you'll do:
sub myevent_finished( something as string )
log("finished: " & something)
end sub
the event may or may not pass any values. in my example above, it passes a string for you to use. it could be something else or maybe even nothing.
it is possible the library was not implemented with b4a in mind, but the fact that you see a log entry means that the library is trying to talk to b4a through an event.