A Flash Developer Resource Site

Results 1 to 10 of 10

Thread: camino browser

  1. #1
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28

    camino browser

    Hi,
    Has anyone else had this problem and sorted it; flash site publish to 100 % No Scale is perfectly aligned in safari and IE but not in Camino.
    All you can see is the bottom off the site at the top 1/4 of the browser window.
    If anyone can help I'd appreciate it.
    Thanks
    Linsey

  2. #2
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    Camino is based off Mozilla, so I'm willing to be this also fails in Firefox too.

    Have a link to an example?

    [ Hello ] | [ gerbick ] | [ Ω ]

  3. #3
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28
    Here's a practice site link(removed)
    Thanks
    Linsey
    Last edited by linsey; 11-01-2005 at 06:32 PM.

  4. #4
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    Firefox won't expand - thus Camino as well - the Flash @ 100%... I've seen this in the past.

    There are plenty of "fixes" out there, some include putting your flash file in a fixed size table - where you specify the table size via pixels - or to add a piece of code to the external CSS or in the < head > of the HTML file.
    Code:
    < style type="text/css"> 
    < !-- 
    /* start hiding from ie5 mac \*/ 
    html { height: 99%;} 
    object, embed { height: 100%; } 
    /* stop hiding from ie5 mac */ 
    body { height: 99%; } 
    -- > 
    < /style>
    Again, no spaces.

    Something like that would be assuming you're using the html that's exported from Flash directly and adding the above to the head should fix your problem.

    I'll have to look around... but I found this once before.

    [ Hello ] | [ gerbick ] | [ Ω ]

  5. #5
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28
    Thanks for your help...I'm new to flash and website design!
    Linsey

  6. #6
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28
    I put the above code into the html file and it works....the only problem is you can see the code at the top of the window.
    Linsey

  7. #7
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    remove the single space before style, !, (between) -- and >, and /... in that order.

    Also, place it in the head, before body.

    [ Hello ] | [ gerbick ] | [ Ω ]

  8. #8
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28
    I've done something wrong, here's some of my html code:
    HTML Code:
    <style type="text/css"> 
    <!-- 
    /* start hiding from ie5 mac \*/ 
    html { height: 99%;} 
    object, embed { height: 100%; } 
    /* stop hiding from ie5 mac */ 
    body { height: 99%; } 
    --> 
    </style>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>BarbaraKingInteriorsTemplate</title>
    Can you please tell me what I've done wrong?
    Thanks
    Linsey

  9. #9
    supervillain gerbick's Avatar
    Join Date
    Jul 2000
    Location
    undecided.
    Posts
    18,986
    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>BarbaraKingInteriorsTemplate</title>
    <style type="text/css"> 
    <!-- 
    /* start hiding from ie5 mac \*/ 
    html { height: 99%;} 
    object, embed { height: 100%; } 
    /* stop hiding from ie5 mac */ 
    body { height: 99%; } 
    --> 
    </style>
    Never put anything above the document declaration or title.

    [ Hello ] | [ gerbick ] | [ Ω ]

  10. #10
    Junior Member
    Join Date
    Oct 2005
    Location
    Uk
    Posts
    28
    Thank you so much for the code and help. I really appreciate it.
    Linsey

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