A Flash Developer Resource Site

Results 1 to 6 of 6

Thread: Pixel Fonts and Fullscreen

  1. #1
    The G5 SP N_R_D's Avatar
    Join Date
    Apr 2004
    Posts
    1,118

    Pixel Fonts and Fullscreen

    Do picel fonts get blurry when a swf is opened in a full screen browser and if so........how can I prevent it...........

  2. #2
    Senior Member FFF's Avatar
    Join Date
    Feb 2002
    Posts
    955
    There is no way to prevent this. Pixel fonts must remain always at the same size, so there is no distortion. Full screen may make the fonts bigger or smaller than they should be, so there will always be some distortion. For this type of cases, use other fonts, unless you don't mind the distortion.

    Can't you publish at 'match movie'?

  3. #3
    The G5 SP N_R_D's Avatar
    Join Date
    Apr 2004
    Posts
    1,118
    well I have the movie embedded in a htm that come up in a pop up

    how do I make the pop up open up keeping the movie and not resizeing?

    so fullscreen is crap huh..........

    most browsers cant see it anyhow......

  4. #4
    Senior Member FFF's Avatar
    Join Date
    Feb 2002
    Posts
    955
    Simply make the pop up window open at the same size of your movie and everything will work out.

  5. #5
    The G5 SP N_R_D's Avatar
    Join Date
    Apr 2004
    Posts
    1,118
    ok so just to check.....
    code:

    on (release) {
    getURL ("javascript:NewWindow=window.open('ShowPopup.php' ,'newWin','width=800,height=600,left=0,top=0,toolb ar=No,location=No,scrollbars=No,status=No,resizabl e=No,fullscreen=No'); NewWindow.focus(); void(0);");
    }


    makes the actual inner window 800x600 and not the whole popup inclusive of the top part?

  6. #6
    Senior Member FFF's Avatar
    Join Date
    Feb 2002
    Posts
    955
    Yes, this is how you can create the pop-up of 800 x 600 but there shouldn’t be any spaces in your code. For example:



    Code:
             on (release) {
    getURL ("java script:NewWindow=window.open('ShowPopup. php','newWin','width=800,height=600,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,
    fullscreen=No');  NewWindow.focus(); void(0);");
       }

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