A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Mac browser issue

  1. #1
    I am opening up a 602 x 414 main level flash movie that loads sub-movies from my home page. IE on mac puts about a 25 pixel space on the bottom and right like it is leaving room for the scroll bars. (The fla is 602 x 414.)It works with no extra space on every other platform (i think), do i actually have to tell the window to not have scroll bars for it to work proper on a mac? Does anyone know what i can do?
    Thanks in advance

  2. #2
    Senior Member zeb's Avatar
    Join Date
    Oct 2000
    Posts
    129
    Hi Tavisj,

    No, you don't have to specify to da window to have scrollbars or not...

    Did you check if (maybe...) you've left margins ?

    Or post an url to let us check if there are some spaces...

    Ok, caù,
    ZeB

  3. #3
    no i didn't leave any margins, it is leaving the spaces on the right and bottom where the scroll bars would be.
    if you are on mac IE 5, plaese take a look @
    http://www.ignitionmedia.ca/sasso

  4. #4
    Senior Member zeb's Avatar
    Join Date
    Oct 2000
    Posts
    129
    Ok, it probably comes from your javascript code... I've used that one on my own site, maybe you could use it as well, and i haven't encountered any problem on any platforms... I Don't know if it's really different from your code, and i'm not able to check differences... But here is mine :

    function popup(width,height) {
    x = (640 - width)/2, y = (480 - height)/2;
    if (screen) {
    y = (screen.availHeight - height)/2;
    x = (screen.availWidth - width)/2;
    }
    if (screen.availWidth > 1800) {
    x = ((screen.availWidth/2) - width)/2;
    }
    window.open('filename.html','newWin','width='+widt h+',height='+height+',screenX='+x+',screenY='+y+', top='+y+',left='+x);
    }

    Good luck !
    Caù,
    ZeB

  5. #5
    Thanks I'll try it

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