Copy link to clipboard
Copied
Hi,
I've been looking for a way to deliver Vimeo videos to Captivate 8.1 - using YouTube and the YouTube widget is not an option because there isn't enough security for the videos. Other posts on this forum have suggested embedding the Vimeo videos in a web object, which works nicely. The only problem is that web objects don't seem to be compatible with the publishing setting for Scalable HTML Content. The web object doesn't scale with the project and doesn't maintain it's relative position on the slide.
I see that other widgets, like the Glossary and YouTube widgets don't have this problem and will happily scale with the project.
What makes the web object widget different and is there a way to have it scale with the content?
Thanks for the help!
Paul
Copy link to clipboard
Copied
It's been more than a week without any response to my post. Are there any Adobe representatives out there?? Have I posted this in the wrong place?
Copy link to clipboard
Copied
I'm sorry, but this is a user forum. Personally I don't have an answer for you, some of the interactions have a scalable option, but not all. Maybe you should contact the official Help desk, not post a question in this forum.
Copy link to clipboard
Copied
Thanks for the suggestion Lilybiri.
Copy link to clipboard
Copied
I'm in the same boat as you - the exact same issue. Could you update this forum if you find a solution? I'll do the same if I find a way to make this work.
Copy link to clipboard
Copied
Hi PaulBridgewater, what if you try to apply a class to the webobject? The video it´s inside the slide or you created dynamic?
var videoIntroElement = document.createElement("video")
videoIntroElement.setAttribute("id", "videoIntroElement");
videoIntroElement.setAttribute("autoplay", "true");
videoIntroElement.setAttribute("preload", "auto");
videoIntroElement.setAttribute("width", "100%");
videoIntroElement.setAttribute("height", "100%");
videoIntroElement.setAttribute("type", "video/mp4");
videoIntroElement.setAttribute("src", "yourVideoLocation");