So I'm trying to make an app for Samsung smart TVs. I'm creating the smart TV app with App framework 2.0 which should have 4 image squares.
those 4 squares should be the JPEG images of CCTV cameras which I should get and display periodically on those image squares (between 1 and 5 seconds).
Can anyone tell me how can I do that?
so for I created a image and tried this:
$('#image1').sfImage({
url:'https://10.0.0.164/jpeg/image.jpeg'
});
But this doesn't even get the image from the URL. Should there be like a "show" command or something? Where can I get a list of methods/functions and examples that could help me get better at this?
I have not used SF framework myself, but sfImage documentation has following sample code:
$('#image').sfImage({src:'images/samsung.jpg'});
$('#image').sfImage('hide');