Hello,
i have programmatically showing a video in browser frame using this code
BrowserFrame bf = uiComponents.create(BrowserFrame.NAME);
bf.setWidth("300px");
bf.setHeight("300px");
bf.setSource(FileStorageResource.class).setFileReference(entity.getImage());
where entity.getImage is a fileRef mp4 file and on display it starts auto playing.
How can in disable auto-play here. Please guide.
Thanks