We're trying to setup a user handler to get called when a replicant item is added. This doesn't seem to work..function replicantAdded(){ alert("added"); }IWEventRegistry.addFormHandler("onReplicantAdded", replicantAdded);
function replicantAdded(item){ alert("added"); }
should be something likeIWEventRegistry.addItemHandler("/Root/replicantName", "onReplicantAdded", replicantAdded);That is an item and needs to be specified on every replicant you need, thus you use an itemHandler not a formHandler.