This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Multiple GA send on 3 times
#2
Try this, Tag all your bit objects with a TAG and then create event based script triggered by your TAG.
As execution mode select Last instance and use this script

Code:
if event.sender ~= "se" then
    value = event.getvalue()
    os.sleep(1)
    grp.write(event.dst, value)
    os.sleep(1)
    grp.write(event.dst, value)
    os.sleep(1)
    grp.write(event.dst, value)
end
------------------------------
Ctrl+F5
Reply


Messages In This Thread
Multiple GA send on 3 times - by BMSimon - 13.01.2025, 13:08
RE: Multiple GA send on 3 times - by Daniel - 13.01.2025, 15:19

Forum Jump: