A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Please tell me...http://www.tronicstudio.com/

  1. #1
    Senior Member
    Join Date
    Jun 2003
    Posts
    231

    Please tell me...http://www.tronicstudio.com/

    Man i'm just down and out on the forums I can't get help from anyone. Please, if you have any advise on this please post below. I searched and searched for three days and I just can't find what i'm looking for. This site:

    http://www.tronicstudio.com/

    They have a style on the windows that I need. I basicly viewed this site on a 12 inch monitor and on a 22 inch monitor and found that they both looked the same how can I get my pop up fullscreen to automaticlly size up to the monitor?

  2. #2
    FK's Wave Pimp kamyab's Avatar
    Join Date
    Jan 2002
    Location
    Orange County, CA
    Posts
    1,210
    The window is resized with javascript. You could do something like this
    Code:
    <script language="JavaScript">
    function resize()
    {
    window.resizeTo((screen.availWidth),(screen.availHeight));
    window.moveTo(0,0);
    }
    </script>
    
    <body onLoad="javascript:resize();">
    Or just look at their script. http://www.tronicstudio.com/media/script/common.js

  3. #3
    Senior Member
    Join Date
    Jun 2003
    Posts
    231
    so do I put that in my html or do I have to have a seprate js file?

  4. #4
    FK's Wave Pimp kamyab's Avatar
    Join Date
    Jan 2002
    Location
    Orange County, CA
    Posts
    1,210
    It's up to you. If you want to have it as an external .js file, put this in your html page
    Code:
    <script language="JavaScript1.2" src="yourscript.js"></script>

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