Jose M.
Jose M.

Reputation: 2330

Embed Video into SharePoint WebPart - Do not play video when page opens

I wrote the following html to embed a flash video into a content webpart:

<Embed src="RelativeUrlToFlahFile" TYPE="application/x-shockwave-flash" width="700" height="200"></Embed>

Works great, however, since I have several videos in the webparts they all start playing at the same time. I would like the videos to not start when the page opens.

I have tried adding

<embed...play="false"
<embed..autoplay="false"

but none of my options have worked.

Thanks.

Upvotes: 0

Views: 3177

Answers (1)

Sylvain Gantois
Sylvain Gantois

Reputation: 831

Try to add

autostart="false"

and in the case you used Chrome "Chrome doesn't seem to understand true and false. Use autostart="1" and autostart="0" instead."

Source: HTML embed autoplay="false", but still plays automatically

Upvotes: 1

Related Questions