This means that you are carrying out a test or action on an object that no longer exists.
For example, maybe you are trying to change (or read) the value of an attribute associated with an actor that has already been killed.
The #1009 error is saying that Stencyl cannot access the property (e.g. attribute) or method (e.g. event) of an object that does not exist.
Typically, this occurs when you detect a collision, kill an actor, then try to read some information from that actor or trigger an event for that actor. You need to make sure that you have read the information or triggered the event before the actor is killed. An easy workaround for this is to use the [<self> is alive] block in an [if] test, before accessing the property / method. However, you will probably want to make sure that you don't kill the actor until after accessing the property / method, otherwise you may experience other problems (for example, a score may not update because the actor has been killed, so the bonus value can't be read from that actor).