Results 1 to 3 of 3

Thread: DHTML window... from flash

  1. #1
    Join Date
    Jan 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default DHTML window... from flash

    Hallo.. i like very musch the dhtml window explained at http://www.dynamicdrive.com/dynamici...htmlwindow.htm

    i would really like to use it launching the dhtml window from a flash movie but it seems not possible because the window is shown without the title bar, the close icons, etc

    is there a way to use this script with flash?

    thank u!

  2. #2
    Join Date
    Sep 2004
    Location
    Little Falls, Roodepoort, South Africa
    Posts
    421
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    HI

    See http://www.javascriptkit.com/jsref/window.shtml#e3 it should help you. rgds,Simonf

  3. #3
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    It's inconceivable that something that describes itself as a reference could get something as simple as a window.open feature string so wrong.

    Code:
    window.open(
      'http://www.dynamicdrive.com/',
      '',
      'width=800,height=600,resizable'
    );
    Though windows should,
    • generally be named
    • have both the scrollbars and resizable feature set
    • not be sized or positioned (leave that to the OS/user agent)

    I also find it amazing that the "reference" fails to mention that setTimeout and setInterval can take function references as well as strings.

    Mike

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
  •