Welcome, Guest
  • Author Topic: coking  (Read 831 times)

    convert odds

    • Server what's that
    • *
    • Posts: 2
      • View Profile
      • http://oddsconverter.co.uk/
      • Email
    coking
    « on: 02/12/11, 05:51 »
    need some help on creating a new pop up window for flash intro from html page.  i want the window size to be fixed, without toolbars and scrollbars   any help would be good??

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re: coking
    « Reply #1 on: 02/12/11, 07:23 »

    CornholeGames

    • Server what's that
    • *
    • Posts: 1
      • View Profile
      • Cornhole Games
      • Email
    Re: coking
    « Reply #2 on: 10/05/11, 02:03 »
    Put this javascript code in the head of the page that is loaded first. This will create a popup window with the .swf


    <SCRIPT LANGUAGE="Javascript">
    function openWindow(URL, Name) {
    winprops = 'width=450,height=450,scrollbars=no,resizable=no,s tatus=no,menubar=no'
    win = window.open(URL, Name, winprops)
    }

    </SCRIPT>

    The link has to be something like <a href="javascript:openWindow('Somewin.html','Name') ;">Link</a>
    « Last Edit: 10/12/11, 10:06 by Ronald Wernecke »