Posted: Wed Sep 18, 2024 12:15 pm Post subject: Imporvement
Hopefully, the next version will have something like this
Code:
getMainForm().OnProcessOpened = function()
if getAddressList().count > 0 then
for i = 0, getAddressList().count - 1 do
getAddressList().getMemoryRecord(i).active = false
end
end
end
For now, since that code didn't work I've made the classic deleted all entries button to disable everything (Which is tons more useful in my opinion)
Code:
getMainForm().SpeedButton2.OnClick = function()
if getAddressList().count > 0 then
for i = 0, getAddressList().count - 1 do
getAddressList().getMemoryRecord(i).active = false
end
end
end
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum