RE: [flexcoders] Flex 2 Alpha huge output swf

2005-10-20 Thread Roger Gonzalez
Keep in mind, that's not really an "empty" SWF, that's a full-fledged
mx.core.Application and the framework necessary to do all sorts of stuff
like focus management, scrolling, yadda yadda. 

On the other hand, -this- is a small app:

--tiny.as--
package 
{
import flash.util.trace;
import flash.display.Sprite;
import flash.display.TextField;

[SWF(width="100", height="100")]
public class tiny extends flash.display.Sprite
{
public function tiny()
{
var hello:TextField = new TextField();
hello.htmlText = "Hello, World!";
hello.textColor = 0x00;

addChild( hello );
}
}
}

c:/rg/flex/test/tiny % mxmlc.exe tiny.as
c:/rg/flex/test/tiny % ls -l tiny.*
-rw-r--r--1 rg devel  458 Oct 20 14:05 tiny.as
-rw-r--r--1 rg devel  494 Oct 20 14:05 tiny.swf
 

In other words, there's plenty of room for tuning the Flex Frameworks
size.  And, if after we've tuned it, you still find it too big, you can
try using various tricks for incrementally loading your app, or worst
case, roll your own reduced-functionality framework.

Cheers,

-Roger

Roger Gonzalez
mailto:[EMAIL PROTECTED]
 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of David Mendels
> Sent: Monday, October 17, 2005 6:33 AM
> To: flexcoders@yahoogroups.com
> Subject: RE: [flexcoders] Flex 2 Alpha huge output swf
> 
> Hi,
> 
> Yes, we expect we will improve this significantly in future alpha/beta
> releases.
> 
> David
> Macromedia 
> 
> > -Original Message-
> > From: flexcoders@yahoogroups.com 
> > [mailto:[EMAIL PROTECTED] On Behalf Of kosirm2000
> > Sent: Monday, October 17, 2005 2:51 AM
> > To: flexcoders@yahoogroups.com
> > Subject: [flexcoders] Flex 2 Alpha huge output swf
> > 
> > First of all, I must congratulate macromedia labs team for flex2.
> > I was newer before so exited with expecting new software...
> > 
> > First of all, I've noticed that output swf is huge, empty has about
> > 246 kb. Does anyone know if this is going to change in future?
> > 
> > Bye, Milan
> > 
> > 
> > 
> > 
> > 
> >  Yahoo! Groups Sponsor 
> > ~--> Fair play? Video games influencing 
> > politics. Click and talk back!
> > http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
> > --
> > --~-> 
> > 
> > --
> > Flexcoders Mailing List
> > FAQ: 
> http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives: 
> > http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> > 
> > 
> > 
> >  
> > 
> > 
> > 
> > 
> > 
> 
> 
>  Yahoo! Groups Sponsor 
> ~--> 
> Fair play? Video games influencing politics. Click and talk back!
> http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
> --
> --~-> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com 
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> 


 Yahoo! Groups Sponsor ~--> 
Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.
http://us.click.yahoo.com/A77XvD/vlQLAA/TtwFAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] Flex 2 Alpha huge output swf

2005-10-17 Thread Jeff Whatcott
Check out this and other known issues here:

http://labs.macromedia.com/wiki/index.php/Flex:known_issues

Jeff Whatcott 

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of kosirm2000
Sent: Monday, October 17, 2005 2:51 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 2 Alpha huge output swf

First of all, I must congratulate macromedia labs team for flex2.
I was newer before so exited with expecting new software...

First of all, I've noticed that output swf is huge, empty has about
246 kb. Does anyone know if this is going to change in future?

Bye, Milan





 Yahoo! Groups Sponsor ~-->
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links



 






 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






RE: [flexcoders] Flex 2 Alpha huge output swf

2005-10-17 Thread David Mendels
Hi,

Yes, we expect we will improve this significantly in future alpha/beta
releases.

David
Macromedia 

> -Original Message-
> From: flexcoders@yahoogroups.com 
> [mailto:[EMAIL PROTECTED] On Behalf Of kosirm2000
> Sent: Monday, October 17, 2005 2:51 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Flex 2 Alpha huge output swf
> 
> First of all, I must congratulate macromedia labs team for flex2.
> I was newer before so exited with expecting new software...
> 
> First of all, I've noticed that output swf is huge, empty has about
> 246 kb. Does anyone know if this is going to change in future?
> 
> Bye, Milan
> 
> 
> 
> 
> 
>  Yahoo! Groups Sponsor 
> ~--> Fair play? Video games influencing 
> politics. Click and talk back!
> http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
> --
> --~-> 
> 
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives: 
> http://www.mail-archive.com/flexcoders%40yahoogroups.com
> Yahoo! Groups Links
> 
> 
> 
>  
> 
> 
> 
> 
> 


 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 






Re: [flexcoders] Flex 2 Alpha huge output swf

2005-10-17 Thread Darron J. Schall
kosirm2000 wrote:

>First of all, I've noticed that output swf is huge, empty has about 
>246 kb. Does anyone know if this is going to change in future?
>
Yes, it's going to get smaller.  This is alpha software, and it's still 
deing developed.  The team hasn't had a chance to even think about 
starting the optimization process, but I'm positive the .swf output size 
will be smaller when the final product ships.

-d



 Yahoo! Groups Sponsor ~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/