Re: [flexcoders]Where does my SWF gain it's weight?

2009-05-05 Thread Anirudh Sasikumar
You could also restrict the character glyphs in your embedded font to reduce the size taken up by the font. This can be done by specifying the unicodeRange property in CSS: @font-face {   src:url(/embed_assets/fonts/Inconsolata-ani.otf);   font-family: mycodefont;   unicodeRange: U+0041-U+005A,  

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-30 Thread dorkie dork from dorktown
*To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders]Where does my SWF gain it's weight? FlexBuilder How can I get individual reports? There's only one spot where I can request the link report, afaik. Guy -- http://www.juicability.com - flex blog

RE: [flexcoders]Where does my SWF gain it's weight?

2009-04-02 Thread Gregor Kiddie
Subject: Re: [flexcoders]Where does my SWF gain it's weight? FlexBuilder How can I get individual reports? There's only one spot where I can request the link report, afaik. Guy

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-02 Thread bjorn
] *On Behalf Of *Guy Morton *Sent:* 01 April 2009 20:28 *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders]Where does my SWF gain it's weight? FlexBuilder How can I get individual reports? There's only one spot where I can request the link report, afaik. Guy

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-01 Thread Anirudh Sasikumar
This is a nice tool for visualizing the data from -link-report: http://joeberkovitz.com/blog/2008/03/26/itdepends-code-dependency-analysis-for-flexair-applications/ http://code.google.com/p/it-depends/ Cheers, -- Anirudh Sasikumar http://anirudhs.chaosnet.org/ On Wed, Apr 1, 2009 at 11:02 AM,

RE: [flexcoders]Where does my SWF gain it's weight?

2009-04-01 Thread Tim Rowe
April 2009 5:01 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? This is a nice tool for visualizing the data from -link-report: http://joeberkovitz.com/blog/2008/03/26/itdepends-code-dependency-analysis-for-flexair-applications/ http://code.google.com/p

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-01 Thread Guy Morton
@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dorkie dork from dorktown Sent: Tuesday, March 31, 2009 10:17 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? Hi Alex, Thanks, FFR - –link-report outputfile.xml, shows up in bin-debug

RE: [flexcoders]Where does my SWF gain it's weight?

2009-04-01 Thread Gregor Kiddie
Of Guy Morton Sent: 01 April 2009 13:11 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? If you have multiple modules in the compile, am I right to think the link report only shows the info for the last module built? That's how it seems, but perhaps

Re: [flexcoders]Where does my SWF gain it's weight?

2009-04-01 Thread Guy Morton
recipient please contact is.helpd...@inps.co.uk From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Guy Morton Sent: 01 April 2009 13:11 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? If you have multiple modules

Re: [flexcoders]Where does my SWF gain it's weight?

2009-03-31 Thread dorkie dork from dorktown
://www.adobe.com/ Blog: http://blogs.adobe.com/aharui *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Nicolas Noben *Sent:* Friday, March 27, 2009 5:23 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders]Where does my SWF gain it's weight

RE: [flexcoders]Where does my SWF gain it's weight?

2009-03-31 Thread Alex Harui
/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dorkie dork from dorktown Sent: Tuesday, March 31, 2009 10:17 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? Hi Alex, Thanks

RE: [flexcoders]Where does my SWF gain it's weight?

2009-03-28 Thread Alex Harui
: Friday, March 27, 2009 5:23 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Where does my SWF gain it's weight? Yeah make a search through all the files for 'Embed' and make sure that everything that is embedded really needs to be. That's the biggest hog. Also make sure your final build

RE: [flexcoders]Where does my SWF gain it's weight?

2009-03-27 Thread Tracy Spratt
Have you looked into the Flex Profiler? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of dorkie dork from dorktown Sent: Friday, March 27, 2009 5:11 PM To: flexcoders@yahoogroups.com

RE: [flexcoders]Where does my SWF gain it's weight?

2009-03-27 Thread Maciek Sakrejda
If you have version control, just do a binary search through history to see where the bloat hit (something à la git bisect, though this can be easily scripted if you use another vcs). As far as actually analyzing a .swf and figuring out the bloat, perhaps someone else will chime in. You can

Re: [flexcoders]Where does my SWF gain it's weight?

2009-03-27 Thread dorkie dork from dorktown
I meant file size not memory unless the profiler can tell me that? On Fri, Mar 27, 2009 at 4:36 PM, Tracy Spratt tspr...@lariatinc.com wrote: Have you looked into the Flex Profiler? Tracy Spratt, Lariat Services, development services available --

Re: [flexcoders]Where does my SWF gain it's weight?

2009-03-27 Thread Nicolas Noben
Yeah make a search through all the files for 'Embed' and make sure that everything that is embedded really needs to be. That's the biggest hog. Also make sure your final build is published using 'Export release build'. You will save a fair bit at release time. But it's mostly assets' fault.