example : try open firefox and execute this scrip below via CE
Code:
cecheck_list = createStringlist()
function cecheck()
getProcesslist(cecheck_list)
local count = 0
for i=0,cecheck_list.count-1 do
if cecheck_list[i]:find("firefox") then -- change process name here
count = count + 1
end
end
if count > 1 then
print(tostring(count).. ' process found')
else
print('No process found')
end
timer_setEnabled(cecheck_t, false)
cecheck_list.clear()
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