[flexcoders] Re: f_in_box memory issues

2009-07-11 Thread ag_rcuren
I was messing around and opened several instances of my application simultaniously and received a warning that my I was out of virtual memory. So I starting looking at task manager and saw that my page file usage was around 8 gig! After seeing this I jumped over to process view and saw that my

[flexcoders] Re: how to hide ADG sort divider?

2009-07-11 Thread danilabuonora
no way, that was simple =) thanks a lot man. --- In flexcoders@yahoogroups.com, grg_blls grg_b...@... wrote: Yes, there is. Set for the ADG: sortExpertMode=true George --- In flexcoders@yahoogroups.com, danilabuonora danilabuonora@ wrote: hi, does anyone know how to make an

[flexcoders] Re: how to hide ADG sort divider?

2009-07-11 Thread grg_blls
Hi, I suppose that you already have: sortableColumns=false in the ADG. Are you? --- In flexcoders@yahoogroups.com, danilabuonora danilabuon...@... wrote: no way, that was simple =) thanks a lot man. --- In flexcoders@yahoogroups.com, grg_blls grg_blls@ wrote: Yes, there is. Set

[flexcoders] Re: Image Loader COMPLETE event wont fire for some images

2009-07-11 Thread toofah_gm
But why do images with transparency in them differ from this rule...they seem to exceed the maximum size earlier than those images that do not have transparency. I understand that they are bigger because of the alpha channel, but would like to know the exact rule about their max size if there

[flexcoders] Re: Flash component play in flex issue

2009-07-11 Thread Amy
--- In flexcoders@yahoogroups.com, j2me_soul j2me_s...@... wrote: I use this code to jump to each frame. But the component didn't play as same as playing in flash. All the transition effect disappear. It just jump one frame to another directly without transition. How to make the

[flexcoders] Re: Max Chr limit in TextArea

2009-07-11 Thread Don Kerr
Hey Alex. Good thought. Could be a parsing issue. I'll see where it truncates and on what chrs. I did try to change from htmlText to text but saw no difference in length. I didn't see anything in the docs about any limits, so it might be something else like you suggest. Thanks, Don --- In

RE: [flexcoders] Setting Tree.selectedItem

2009-07-11 Thread Tracy Spratt
I have a couple examples on www.cflex.net http://www.cflex.net/ . Search for expand tree. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of bhaq1972 Sent: Friday, July 10, 2009 8:21 AM

RE: [flexcoders] Re: Trying to make SoundManager class using getDefinitionByName

2009-07-11 Thread Tracy Spratt
Thanks, Steve, I may need to go that way. I am trying to do it with embedded sounds, because the files are tiny, and it is an AIR app so bandwidth is not an issue. Worst case is I make a switch function, but I am striving for something a bit easier to maintain. Tracy Spratt, Lariat

RE: [flexcoders] Re: Custom DataGrid with Form for itemeditor (any examples)???

2009-07-11 Thread Tracy Spratt
Peter Ent did a renderer for list that does something similar: http://weblogs.macromedia.com/pent/archives/flex_2/index.html But making such a thing for a dataGrid will be harder. Do you actually need the DataGrid(column resize, move, column sort, etc). If not, you can fake a dataGrid using

RE: [flexcoders] Re: Trying to make SoundManager class using getDefinitionByName

2009-07-11 Thread Tracy Spratt
I figured it out. I don't need getDefinitionByName at all since I already have the class references in the variables. This works: [Embed(source=beep-1.mp3)]private var beep1:Class; public function playSound(sSoundName:String):void { var classRef:Class;

[flexcoders] This is not as easy as it seems ... apparently...

2009-07-11 Thread Craig
I am trying to access the value of a DataGridColumn and change the DataField for another column based on this value... Here is my code: ?xml version=1.0 encoding=utf-8? mx:DataGrid xmlns:mx=http://www.adobe.com/2006/mxml; creationComplete=getDp() ... Datagrid mx:columns

Re: [flexcoders] Setting Tree.selectedItem

2009-07-11 Thread Terry Human
Hello, I'm trying to do an application where the user can select images and put in on a panel (similar the example Diagrammer in the tour of Flex). Could you send me some example? Thanks De: Tracy Spratt tr...@nts3rd.com Para: flexcoders@yahoogroups.com

[flexcoders] Programatic Deletion in Tree causes Error #1010:

2009-07-11 Thread Shailesh Mangal
All, We have few tree structure in various TitleWindow containers. Some of these Trees have data dependency e.g. deleting one node could cause deletion of another node and vice versa. What we are noticing is that when we programatically delete the nodes (as a result of deletion of a

[flexcoders] Catching graphics update on UIComponent

2009-07-11 Thread richmcgillicuddy
I have a UIComponent that is a component made up of a label and a background image. I am running a loop to update the component, change the label and copy the resulting bitmap to a standard image. My result is that I get the image without any updates. The add function just pushes the counter of

[flexcoders] newbie question : putting a semicolon in a mxml property

2009-07-11 Thread ew6014
hi guys i was reading the flex documentation and i noticed a ; inside a mxml property let me give you an example mx:Button label=some label click=t1.text = t2.text; / ive tried removing the semicolon ; and also tried leaving it there and there was no error of any kind. so im just wondering