[flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue

2012-08-03 Thread Nitin Gopi
Hi


I am facing a problem while doing the release build. I am using the flex 3.6 
sdk in flashbuilder 4.5. External libraries used are alivepdf.swc, 
autocomplete.swc, flexgrid.swc, fusioncharts.swc and mate_09_1.swc. Normal 
build is taking too much time and when I do the export to release build this 
error comes **one or more errors were found while trying to build the release 
version. Unable to export**.
Thanks
Nitin Gopi

Re: [flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue

2012-08-03 Thread Alex Harui
There’s a way to show available memory to FB.  It sounds like you’re hitting 
the max.  You may need to break up your app into pieces.


On 8/3/12 8:00 AM, Nitin Gopi nitin.g...@yahoo.co.in wrote:






Hi

I am facing a problem while doing the release build. I am using the flex 3.6 
sdk in flashbuilder 4.5. External libraries used are alivepdf.swc, 
autocomplete.swc, flexgrid.swc, fusioncharts.swc and mate_09_1.swc. Normal 
build is taking too much time and when I do the export to release build this 
error comes **one or more errors were found while trying to build the release 
version. Unable to export**.
Thanks
Nitin Gopi





--
Alex Harui
Flex SDK Team
Adobe Systems, Inc.
http://blogs.adobe.com/aharui


[flexcoders] Grid Question - column head

2012-08-03 Thread Davidson, Jerry
We are using the advance data grid component.  Column heads consist of the 
label followed by an engineer bar followed by a number.  The first column is a 
button and it would make no sense to sort on it.  How do I eliminate the 
separator and the sort indicator?

Jerry


[flexcoders] ADG column/button

2012-08-03 Thread Davidson, Jerry
We have an item renderer to put a button in a column.  How would I configure 
the button so it doesn't take the entire column?  I would also like to center it

Jerry


Re: [flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue

2012-08-03 Thread Nitin Gopi
Hi Alex
I am not an expert in this topic, the problem is my company is using this app 
for last 4 years. They started it without using any modules or any framework. 
Now the app size has grown big. Breaking the app into modules may solve the 
problem, but it will take time. I will definitely suggest this solution to my 
superiors, but to keep things up and running we need some quick solution. Any 
ideas for that? 

Thanks
Nitin Gopi


 From: Alex Harui aha...@adobe.com
To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com 
Sent: Saturday, 4 August 2012 1:38 AM
Subject: Re: [flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue
 

  
There’s a way to show available memory to FB.  It sounds like you’re hitting 
the max.  You may need to break up your app into pieces.


On 8/3/12 8:00 AM, Nitin Gopi nitin.g...@yahoo.co.in wrote:



 
 
   

Hi

I am facing a problem while doing the release build. I am using the flex 3.6 
sdk in flashbuilder 4.5. External libraries used are alivepdf.swc, 
autocomplete.swc, flexgrid.swc, fusioncharts.swc and mate_09_1.swc. Normal 
build is taking too much time and when I do the export to release build this 
error comes **one or more errors were found while trying to build the release 
version. Unable to export**.
Thanks
Nitin Gopi

   



-- 
Alex Harui
Flex SDK Team
Adobe Systems, Inc.
http://blogs.adobe.com/aharui
 
 

Re: [flexcoders] Re: Adding stroke to text or bitmap at runtime

2012-08-03 Thread dorkie dork from dorktown
I discovered that using the DropShadowFilter with the right settings gets
really close to the border stroke created by the effects filters in
Photoshop. I mean it's like 95% accurate. I've posted examples (comparing
bitmap from photoshop and a live BorderStrokeFilter on my site
http://bit.ly/OP10l6.

PS The example also has a drop shadow filter explorer, text shadow filter
and skinnable container frame skin.

On Sat, Apr 28, 2012 at 1:33 AM, Alex H aha...@adobe.com wrote:

 **


 There are edge detection algorithms. You might need something like that.
 The glyph information would be better, but I don't think it is available.


 --- In flexcoders@yahoogroups.com, dorkie dork from dorktown
 dorkiedorkfromdorktown@... wrote:
 
  The picture I linked is not that clear. Here is a clearer picture and the
  article,
 
 http://www.blog.spoongraphics.co.uk/wp-content/uploads/2011/cafe-racer/13.jpg
 
 http://internetwebsitedesign.biz/design/how-to-create-a-retro-cafe-racer-motorcycle-ad-design
 
  What he is doing at design time I want to do at runtime.
 
  On Thu, Apr 26, 2012 at 8:41 PM, dorkie dork from dorktown 
  dorkiedorkfromdorktown@... wrote:
 
   I want to add a stroke (a border or outline) to the *edge* of the text
 or

   image itself.
  
   For example, the text and the image in this screenshot show what I'd
 like
   to do,
  
 http://blog.spoongraphics.co.uk/wp-content/uploads/2011/cafe-racer/retro-cafe-racer-ad.jpg.
  
  
   There are filters that add drop shadow or a glow around the
   non-transparent pixels (content) of a display object. But no one in the
   world has been able to create a filter to add a stroke.
  
   On Thu, Apr 26, 2012 at 1:05 AM, Alex Harui aharui@... wrote:
  
   **

  
  
   I'm still not sure I understand. Why do you have to add Stroke
   components? You can just call graphics APIs on them.
  
   If you must use components, can you overlay or underlay them in a
 Group
   parenting the Label?
  
  
  
   On 4/25/12 12:59 AM, dorkiedorkfromdorktown@... 

   dorkiedorkfromdorktown@... wrote:
  
  
  
  
  
  
   I'm looking for more of something like this:
  
   s:Label text=Hello Filters!
   s:stroke
   s:SolidColorStroke weight=4 color=#ABCDEF/
   /s:stroke
   /s:Label
  
   or this:
  
   s:Label text=Hello Filters!
   s:filters
   s:SolidColorStrokeFilter weight=4 color=#ABCDEF/
   /s:filters
   /s:Label
  
   On Fri, Apr 13, 2012 at 12:15 AM, Alex Harui aharui@... wrote:
  
  
  
  
  
  
   In Spark controls, you can add children to the TextLine like a sprite.
  
  
  
  
   On 4/12/12 5:43 PM, dorkiedorkfromdorktown@... 
   http://dorkiedorkfromdorktown@...  
   dorkiedorkfromdorktown@... http://dorkiedorkfromdorktown@...

wrote:
  
  
  
  
  
  
   How would you add a stroke to dynamic text at runtime? If that's not
   possible how would you add a stroke to a bitmap (snapshot of text)?
  
  
  
  
  
   --
   Alex Harui
   Flex SDK Team
   Adobe Systems, Inc.
   http://blogs.adobe.com/aharui
  
  
  
  
  
 

  



Re: [flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue

2012-08-03 Thread Alex Harui
Something usually has changed.  A new version of a SWC, a new version of Flash 
Builder?  If you go back to older versions, in theory the problem should go 
away.


On 8/3/12 4:55 PM, Nitin Gopi nitin.g...@yahoo.co.in wrote:






Hi Alex
I am not an expert in this topic, the problem is my company is using this app 
for last 4 years. They started it without using any modules or any framework. 
Now the app size has grown big. Breaking the app into modules may solve the 
problem, but it will take time. I will definitely suggest this solution to my 
superiors, but to keep things up and running we need some quick solution. Any 
ideas for that?

Thanks
Nitin Gopi





 From: Alex Harui aha...@adobe.com
 To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com
 Sent: Saturday, 4 August 2012 1:38 AM
 Subject: Re: [flexcoders] flashbuilder 4.6 flex sdk 3.6 release build issue




There’s a way to show available memory to FB.  It sounds like you’re hitting 
the max.  You may need to break up your app into pieces.


On 8/3/12 8:00 AM, Nitin Gopi nitin.g...@yahoo.co.in wrote:






Hi

I am facing a problem while doing the release build. I am using the flex 3.6 
sdk in flashbuilder 4.5. External libraries used are alivepdf.swc, 
autocomplete.swc, flexgrid.swc, fusioncharts.swc and mate_09_1.swc. Normal 
build is taking too much time and when I do the export to release build this 
error comes **one or more errors were found while trying to build the release 
version. Unable to export**.
Thanks
Nitin Gopi





--
Alex Harui
Flex SDK Team
Adobe Systems, Inc.
http://blogs.adobe.com/aharui