Hello,
I am trying to make script for the image object on SystemLink dashboard. In this object I display static IP camera image. I want the image to refresh periodically.
For that I created the script in which I am trying to change the adress of the image. The script looks like this:
def refresh(widget_name):
set_widget_prop(widget_name, 'Source', 'http://10.5.9.249/cam.jpg')
Unfortunatelly the script doesn't seem to be working propperly. The image doesn't refresh. But when I change the adress of the camera to the wrong one the displayed image dissapears, so it seems like the image is refreshed somehow, but only, when the new url adress differs from the previous one.
Now my question is: Can I make this refreshing work somehow? Any ideas are welcomed.