You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@flex.apache.org by Angelo Anolin <an...@gmail.com> on 2013/11/27 07:56:49 UTC

SWFObject Loading Flex App

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.

Re: SWFObject Loading Flex App

Posted by Alex Harui <ah...@adobe.com>.
OK.  If you need ASPX, you could examine the HTML results of the ASPX page
and compare it to what is in the template.

-Alex

On 11/27/13 9:35 PM, "Angelo Anolin" <an...@gmail.com> wrote:

>Hi Alex..
>
>Got it to work with the HTML template. Scrapping those ASPX page as it
>seems to render the page with embedded flex app inconsistently.
>
>Thanks for your efforts.
>
>
>
>
>On Wed, Nov 27, 2013 at 10:01 PM, Alex Harui <ah...@adobe.com> wrote:
>
>> Comment out enough of your code so you can use the standard
>> index.template.html file that comes with the SDK and is used as the
>> default by Flash Builder.  That will help determine if the problem is in
>> your app or in the wrapper.
>>
>> -Alex
>>
>> On 11/27/13 8:51 PM, "Angelo Anolin" <an...@gmail.com> wrote:
>>
>> >Hi Alex,
>> >
>> >Tried taking out the <form> tags and still getting the flex app cut
>>off.
>> >
>> >http://i44.tinypic.com/14mf700.png
>> >
>> >If I use say an actual value for the height rather than percentage (say
>> >600px), it does follow the height properly.. But my problem with that
>>is
>> >sometimes javascript detects different browser heights, so my flex app
>> >doesn't completely fill up the screen.
>> >
>> >Thanks.
>> >
>> >
>> >On Wed, Nov 27, 2013 at 9:39 PM, Alex Harui <ah...@adobe.com> wrote:
>> >
>> >> Hi Angelo,
>> >>
>> >> Maybe I wasn't clear.  I think SWFObject usually works with a Div
>>that
>> >> isn't in a Form. Take out the Form and see what happens.
>> >>
>> >> Also, the screenshots get filtered out.  You'll have to post links to
>> >>them.
>> >>
>> >> -Alex
>> >>
>> >> From:  Angelo Anolin <an...@gmail.com>
>> >> Reply-To:  "users@flex.apache.org" <us...@flex.apache.org>
>> >> Date:  Wednesday, November 27, 2013 8:28 PM
>> >> To:  "users@flex.apache.org" <us...@flex.apache.org>
>> >> Subject:  Re: SWFObject Loading Flex App
>> >>
>> >>
>> >> If I take out the div and set the height to 100% and set swfobject to
>> >> embed to the form, this is what happens (Chrome) browser:
>> >>
>> >>
>> >>
>> >>
>> >> Notice the bottom of the images gets cut off (sort of like only
>>15-20%
>> >>of
>> >> the height is getting displayed properly.
>> >>
>> >> Not sure what you meant by standard html template. I am embedding it
>>in
>> >>in
>> >> aspx page as the application communicates through WCF.
>> >>
>> >> Thanks.
>> >>
>> >>
>> >> On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui
>> >> <ah...@adobe.com> wrote:
>> >>
>> >> What happens if you use the standard html template?
>> >>
>> >> What happens if you take the div out of the form?
>> >>
>> >> -Alex
>> >>
>> >> On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com>
>>wrote:
>> >>
>> >> >When I set the height to 100%, the flex application gets cut (only a
>> >>the
>> >> >top 10% of the application is visible)..
>> >> >
>> >> >
>> >> >On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com>
>>wrote:
>> >> >
>> >> >> Doesn't look like height is being set to 100% to me.
>> >> >>
>> >> >> -Alex
>> >> >>
>> >> >> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com>
>> >>wrote:
>> >> >>
>> >> >> >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.
>> >> >>
>> >> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>> >>
>>
>>


Re: SWFObject Loading Flex App

Posted by Angelo Anolin <an...@gmail.com>.
Hi Alex..

Got it to work with the HTML template. Scrapping those ASPX page as it
seems to render the page with embedded flex app inconsistently.

Thanks for your efforts.




On Wed, Nov 27, 2013 at 10:01 PM, Alex Harui <ah...@adobe.com> wrote:

> Comment out enough of your code so you can use the standard
> index.template.html file that comes with the SDK and is used as the
> default by Flash Builder.  That will help determine if the problem is in
> your app or in the wrapper.
>
> -Alex
>
> On 11/27/13 8:51 PM, "Angelo Anolin" <an...@gmail.com> wrote:
>
> >Hi Alex,
> >
> >Tried taking out the <form> tags and still getting the flex app cut off.
> >
> >http://i44.tinypic.com/14mf700.png
> >
> >If I use say an actual value for the height rather than percentage (say
> >600px), it does follow the height properly.. But my problem with that is
> >sometimes javascript detects different browser heights, so my flex app
> >doesn't completely fill up the screen.
> >
> >Thanks.
> >
> >
> >On Wed, Nov 27, 2013 at 9:39 PM, Alex Harui <ah...@adobe.com> wrote:
> >
> >> Hi Angelo,
> >>
> >> Maybe I wasn't clear.  I think SWFObject usually works with a Div that
> >> isn't in a Form. Take out the Form and see what happens.
> >>
> >> Also, the screenshots get filtered out.  You'll have to post links to
> >>them.
> >>
> >> -Alex
> >>
> >> From:  Angelo Anolin <an...@gmail.com>
> >> Reply-To:  "users@flex.apache.org" <us...@flex.apache.org>
> >> Date:  Wednesday, November 27, 2013 8:28 PM
> >> To:  "users@flex.apache.org" <us...@flex.apache.org>
> >> Subject:  Re: SWFObject Loading Flex App
> >>
> >>
> >> If I take out the div and set the height to 100% and set swfobject to
> >> embed to the form, this is what happens (Chrome) browser:
> >>
> >>
> >>
> >>
> >> Notice the bottom of the images gets cut off (sort of like only 15-20%
> >>of
> >> the height is getting displayed properly.
> >>
> >> Not sure what you meant by standard html template. I am embedding it in
> >>in
> >> aspx page as the application communicates through WCF.
> >>
> >> Thanks.
> >>
> >>
> >> On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui
> >> <ah...@adobe.com> wrote:
> >>
> >> What happens if you use the standard html template?
> >>
> >> What happens if you take the div out of the form?
> >>
> >> -Alex
> >>
> >> On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:
> >>
> >> >When I set the height to 100%, the flex application gets cut (only a
> >>the
> >> >top 10% of the application is visible)..
> >> >
> >> >
> >> >On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
> >> >
> >> >> Doesn't look like height is being set to 100% to me.
> >> >>
> >> >> -Alex
> >> >>
> >> >> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com>
> >>wrote:
> >> >>
> >> >> >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.
> >> >>
> >> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
>
>

Re: SWFObject Loading Flex App

Posted by Alex Harui <ah...@adobe.com>.
Comment out enough of your code so you can use the standard
index.template.html file that comes with the SDK and is used as the
default by Flash Builder.  That will help determine if the problem is in
your app or in the wrapper.

-Alex

On 11/27/13 8:51 PM, "Angelo Anolin" <an...@gmail.com> wrote:

>Hi Alex,
>
>Tried taking out the <form> tags and still getting the flex app cut off.
>
>http://i44.tinypic.com/14mf700.png
>
>If I use say an actual value for the height rather than percentage (say
>600px), it does follow the height properly.. But my problem with that is
>sometimes javascript detects different browser heights, so my flex app
>doesn't completely fill up the screen.
>
>Thanks.
>
>
>On Wed, Nov 27, 2013 at 9:39 PM, Alex Harui <ah...@adobe.com> wrote:
>
>> Hi Angelo,
>>
>> Maybe I wasn't clear.  I think SWFObject usually works with a Div that
>> isn't in a Form. Take out the Form and see what happens.
>>
>> Also, the screenshots get filtered out.  You'll have to post links to
>>them.
>>
>> -Alex
>>
>> From:  Angelo Anolin <an...@gmail.com>
>> Reply-To:  "users@flex.apache.org" <us...@flex.apache.org>
>> Date:  Wednesday, November 27, 2013 8:28 PM
>> To:  "users@flex.apache.org" <us...@flex.apache.org>
>> Subject:  Re: SWFObject Loading Flex App
>>
>>
>> If I take out the div and set the height to 100% and set swfobject to
>> embed to the form, this is what happens (Chrome) browser:
>>
>>
>>
>>
>> Notice the bottom of the images gets cut off (sort of like only 15-20%
>>of
>> the height is getting displayed properly.
>>
>> Not sure what you meant by standard html template. I am embedding it in
>>in
>> aspx page as the application communicates through WCF.
>>
>> Thanks.
>>
>>
>> On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui
>> <ah...@adobe.com> wrote:
>>
>> What happens if you use the standard html template?
>>
>> What happens if you take the div out of the form?
>>
>> -Alex
>>
>> On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:
>>
>> >When I set the height to 100%, the flex application gets cut (only a
>>the
>> >top 10% of the application is visible)..
>> >
>> >
>> >On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
>> >
>> >> Doesn't look like height is being set to 100% to me.
>> >>
>> >> -Alex
>> >>
>> >> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com>
>>wrote:
>> >>
>> >> >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.
>> >>
>> >>
>>
>>
>>
>>
>>
>>
>>
>>
>>


Re: SWFObject Loading Flex App

Posted by Angelo Anolin <an...@gmail.com>.
Hi Alex,

Tried taking out the <form> tags and still getting the flex app cut off.

http://i44.tinypic.com/14mf700.png

If I use say an actual value for the height rather than percentage (say
600px), it does follow the height properly.. But my problem with that is
sometimes javascript detects different browser heights, so my flex app
doesn't completely fill up the screen.

Thanks.


On Wed, Nov 27, 2013 at 9:39 PM, Alex Harui <ah...@adobe.com> wrote:

> Hi Angelo,
>
> Maybe I wasn't clear.  I think SWFObject usually works with a Div that
> isn't in a Form. Take out the Form and see what happens.
>
> Also, the screenshots get filtered out.  You'll have to post links to them.
>
> -Alex
>
> From:  Angelo Anolin <an...@gmail.com>
> Reply-To:  "users@flex.apache.org" <us...@flex.apache.org>
> Date:  Wednesday, November 27, 2013 8:28 PM
> To:  "users@flex.apache.org" <us...@flex.apache.org>
> Subject:  Re: SWFObject Loading Flex App
>
>
> If I take out the div and set the height to 100% and set swfobject to
> embed to the form, this is what happens (Chrome) browser:
>
>
>
>
> Notice the bottom of the images gets cut off (sort of like only 15-20% of
> the height is getting displayed properly.
>
> Not sure what you meant by standard html template. I am embedding it in in
> aspx page as the application communicates through WCF.
>
> Thanks.
>
>
> On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui
> <ah...@adobe.com> wrote:
>
> What happens if you use the standard html template?
>
> What happens if you take the div out of the form?
>
> -Alex
>
> On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:
>
> >When I set the height to 100%, the flex application gets cut (only a the
> >top 10% of the application is visible)..
> >
> >
> >On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
> >
> >> Doesn't look like height is being set to 100% to me.
> >>
> >> -Alex
> >>
> >> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:
> >>
> >> >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.
> >>
> >>
>
>
>
>
>
>
>
>
>

Re: SWFObject Loading Flex App

Posted by Alex Harui <ah...@adobe.com>.
Hi Angelo,

Maybe I wasn't clear.  I think SWFObject usually works with a Div that
isn't in a Form. Take out the Form and see what happens.

Also, the screenshots get filtered out.  You'll have to post links to them.

-Alex

From:  Angelo Anolin <an...@gmail.com>
Reply-To:  "users@flex.apache.org" <us...@flex.apache.org>
Date:  Wednesday, November 27, 2013 8:28 PM
To:  "users@flex.apache.org" <us...@flex.apache.org>
Subject:  Re: SWFObject Loading Flex App


If I take out the div and set the height to 100% and set swfobject to
embed to the form, this is what happens (Chrome) browser:




Notice the bottom of the images gets cut off (sort of like only 15-20% of
the height is getting displayed properly.

Not sure what you meant by standard html template. I am embedding it in in
aspx page as the application communicates through WCF.

Thanks.


On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui
<ah...@adobe.com> wrote:

What happens if you use the standard html template?

What happens if you take the div out of the form?

-Alex

On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:

>When I set the height to 100%, the flex application gets cut (only a the
>top 10% of the application is visible)..
>
>
>On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
>
>> Doesn't look like height is being set to 100% to me.
>>
>> -Alex
>>
>> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:
>>
>> >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.
>>
>>









Re: SWFObject Loading Flex App

Posted by Angelo Anolin <an...@gmail.com>.
If I take out the div and set the height to 100% and set swfobject to embed
to the form, this is what happens (Chrome) browser:

[image: Inline image 1]

Notice the bottom of the images gets cut off (sort of like only 15-20% of
the height is getting displayed properly.

Not sure what you meant by standard html template. I am embedding it in in
aspx page as the application communicates through WCF.

Thanks.


On Wed, Nov 27, 2013 at 2:50 PM, Alex Harui <ah...@adobe.com> wrote:

> What happens if you use the standard html template?
>
> What happens if you take the div out of the form?
>
> -Alex
>
> On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:
>
> >When I set the height to 100%, the flex application gets cut (only a the
> >top 10% of the application is visible)..
> >
> >
> >On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
> >
> >> Doesn't look like height is being set to 100% to me.
> >>
> >> -Alex
> >>
> >> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:
> >>
> >> >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.
> >>
> >>
>
>

Re: SWFObject Loading Flex App

Posted by Alex Harui <ah...@adobe.com>.
What happens if you use the standard html template?

What happens if you take the div out of the form?

-Alex

On 11/27/13 11:37 AM, "Angelo Anolin" <an...@gmail.com> wrote:

>When I set the height to 100%, the flex application gets cut (only a the
>top 10% of the application is visible)..
>
>
>On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:
>
>> Doesn't look like height is being set to 100% to me.
>>
>> -Alex
>>
>> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:
>>
>> >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.
>>
>>


Re: SWFObject Loading Flex App

Posted by Angelo Anolin <an...@gmail.com>.
When I set the height to 100%, the flex application gets cut (only a the
top 10% of the application is visible)..


On Wed, Nov 27, 2013 at 12:38 AM, Alex Harui <ah...@adobe.com> wrote:

> Doesn't look like height is being set to 100% to me.
>
> -Alex
>
> On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:
>
> >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.
>
>

Re: SWFObject Loading Flex App

Posted by Alex Harui <ah...@adobe.com>.
Doesn't look like height is being set to 100% to me.

-Alex

On 11/26/13 10:56 PM, "Angelo Anolin" <an...@gmail.com> wrote:

>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.