Welcome to TalkGraphics.com
Results 1 to 3 of 3

Thread: fixed windows

  1. #1

    Default

    can anyone help me with calling a flash movie to be loader by IE or Netscape with a fixed uncaleable window. one with no tool bars ???

    I am thinking something like this
    http://www.webbasis.com/thankyouframes.htm

    thank you
    architazz
    IP

  2. #2

    Default

    can anyone help me with calling a flash movie to be loader by IE or Netscape with a fixed uncaleable window. one with no tool bars ???

    I am thinking something like this
    http://www.webbasis.com/thankyouframes.htm

    thank you
    architazz
    IP

  3. #3
    Join Date
    Sep 2001
    Posts
    8

    Default

    You'll need to have a web page (index.html).

    Put this in the header:

    function pop_Open() {
    map_Window = window.open ('pop_up.html','map_Window',' scrollbars=no,toolbar=no, resizable=0,width=171,height=110 screenX=350,screenY=250,top=250,left=350');
    }

    Put this into the end of the body tag:

    onLoad="pop_Open();"

    Create the web page 'pop_up.html', then place the flash movie into it.

    width and height determine the size of the window.

    screenX, screenY, top and left determine where the window will open. (no I don't know if they have to be the same, or if so why!).

    It is possible to close the 'index.html' page as the javaScript window opens, if you want, but I don't remember how - sorry.
    IP

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •