A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: This maybe a little of the swish topic, but hope someone here can help

  1. #1
    Toronto's courtesan
    Join Date
    Apr 2002
    Location
    Toronto/NYC
    Posts
    82
    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

  2. #2
    Bending Unit 22 Danny Seager's Avatar
    Join Date
    Sep 2001
    Posts
    447
    you could do this by having a chromeless window and having the movie fill the window.

  3. #3
    Toronto's courtesan
    Join Date
    Apr 2002
    Location
    Toronto/NYC
    Posts
    82
    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

  4. #4
    Senior Member Lys12's Avatar
    Join Date
    Feb 2001
    Location
    Munich, Germany
    Posts
    5,237
    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
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center