This question may seem pretty trivial, but when I embed my flex application
in an aspx page, if I set the height to 100%, the height seems to scale
down to like 10%

Here's my aspx page.

<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb"
Inherits="FlexApp._Default" %>

<!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";>
<head id="Head1" runat="server">
    <script type="text/javascript" src="Scripts/swfobject.js"></script>
    <script type="text/javascript">
        var randomString = "swf/Main.swf?guid=" + rnd();
        var screenHeight = screen.height / 1.35;

        swfobject.embedSWF(randomString, "myContent", "100%", screenHeight,
"9.0.0", "swf/expressInstall.swf");

        function rnd() {
            return String((new Date()).getTime()).replace(/\D/gi, '')
        }
    </script>
    <title>Flex</title>
    <style type="text/css">
        .style1
        {
            font-family: Verdana;
            font-size: large;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
        <div id="myContent" style="border:solid">
        </div>
    </form>
</body>
</html>


Appreciate any insight as to why this may be happening? Pretty much, I just
want a Flex application that occupies the whole screen of the browser (and
resizes accordingly.).

Thanks.

Reply via email to