It appears, however, there are no events tied to those elements. I setup a generic handler so I could see what events were being fired:
Code: Select all
for k, v in pairs (defines.events) do
script.on_event (v, function (event)
if v > 0 then
print (k)
end
end)
end
The point at which I want control is after the user picks the item and places it the item slot w/ the two-way slider so I can override the min/max. If there's another way to accomplish this instead of requiring new event(s), I'm ears all the way down.
Thanks.