Hi Dear,
I just found out that Ignition 8.3.6 has module referencing issues on tag value changed event.
This is the situation:
i do have modules like:
on console script i can reference those module without any error:
but i put the same lines of code inside the tag value changed event script, it would trigger an error:
i got an error on my logger:
Originally i did run this on 8.1.26 and didn't get any issue at all.
Just wondering what to do to fix this ?
Regards
It's considered bad practice to import your script libraries into other scripts in Ignition. It's possible they blocked it in 8.3 but not certain because I don't ever import libraries anywhere else. Reference the functions by their full name everywhere they're used and you'll probably be fine.
Thanks for your feedback. This is what change i made (wrote all namespaces instead of using import statement as seen previously):
but i am still getting errors:
This is my constant interval module
Regards