Go Back   Dynamic Drive Forums > Blogs
Search Dynamic Drive Forums:

Flash related Flash, Adobe Air, ActionScript etc.
Old

Prevent users to open a video on the video-providing site (in a new window)

Posted 11-19-2009 at 09:51 AM by molendijk
Updated 11-19-2009 at 12:50 PM by molendijk

Inserting these two lines to your include code for video's:

<param name="allowScriptAccess" value="never">
<param name="allowNetworking" value="internal">

prevents flash apps from running scripts or having outbound links.

This is a very handy method for preventing users to open the video on the video-providing site (in a new window) when they accidentally click on the video screen.
...
molendijk's Avatar
Senior Coders
Posted in Flash related
Views 206 Comments 2 molendijk is offline Edit Tags
Old

HTML 4.01 Strict Video Include & Chopping Parts from YouTube video's

Posted 09-27-2009 at 10:07 PM by molendijk
Updated 10-02-2009 at 02:29 PM by molendijk (Observation made by jscheuer about title)
Tags add, michal

Perhaps many of you already knew this. I didn't.
HTML 4.01 Strict Video Include:
Code:
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" style="position:absolute;left:20%; top:20%; height:80%;width:80%">
<![endif]-->
<!--[if !IE]><!-->
<object type="application/x-shockwave-flash" style="position:absolute;left:20%; top:20%; height:80%;width:80%" data="http://swf.tubechop.com/tubechop.swf?vurl=rw1j0NsIIeE&amp;start=164&amp;end=199&amp;cid=28051"
...
molendijk's Avatar
Senior Coders
Views 2689 Comments 5 molendijk is offline Edit Tags
Old

YouTube Chromeless Player

Posted 08-26-2009 at 07:29 PM by molendijk
Updated 08-29-2009 at 02:59 PM by molendijk

It's not directly obvious from this how we can:
- start a movie on page load (question asked by some people on different forums);
- specify the dimensions and position of the movies in percentages;
- make good use of the ytplayer functions.

Autoplay: something like
Code:
function so_start()
{
loadNewVideo('lKq9_kk3Zbc', 20);
}
//IE needs some time
window.onload=setTimeout('so_start()',2000)
Size of movie in percentages...
molendijk's Avatar
Senior Coders
Views 5327 Comments 5 molendijk is offline Edit Tags

All times are GMT. The time now is 01:13 AM.

Home - Contact Us - Archives - Link to DD - Top 

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.