|
-
I need a code either in .swi but transferable to .swf or even JavaScript, that will eliminate the top of the browsers.
I have no right click on my movies, and on the end of the movie, I have it so it automatically redirects out of the movie to another page, I want people to see my movies but not live on it, (bandwidth is expensive) but it seems many are wise to this and just before the end they hit the back button thus restating the movie.
Any help or other suggestions would be much appreciated.
Thanks
Ela
-
Bending Unit 22
you could do this by having a chromeless window and having the movie fill the window.
-
Originally posted by Danny Seager
you could do this by having a chromeless window and having the movie fill the window.
huh
could you please explain.
thanks
Ela
-
Senior Member
a chromeless window is a browser window without any navigation, borders etc. devcon9 provided a zip which contains everything you need:
http://www.6of1.org/chrome.zip
there's always the possibility to show your movie in fullscreen mode, however i wouldn't recommend this. people usually don't like it if they lose the control over their browser. you'll at least have to provide a close button!
here's how to do it:
put this script into the head section of an empty html page, this will only forward to the fullscreen movie:
<script language="javascript">
function newwindow() {
open('movie.html','','fullscreen')
<script>
the opening body tag should look like this:
<body onLoad="newwindow()">
make sure to provide a close button in the movie: "on release -> javascript -> self.close()"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|