RE: [flexcoders] Re: Inline functions and Anonymous

2009-12-04 Thread Alex Harui
Once it goes out of scope it is eligible for GC unless there is another reference to it Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of cuttenv Sent:

[flexcoders] Re: Inline functions and Anonymous

2009-12-04 Thread cuttenv
So at the end of the main function call everything would go out of scope and be eligible for garbage collection? The issue is that I see a LOT of functions definitions that are not being garbage collected and I am trying to pin point if using named functions like this could be the problem. I

[flexcoders] htmledit and Flex back office

2009-12-04 Thread Christophe
Hello, I have a database mySQL with my Flex application. But the use of htmlEdit to view the tables is too long, I am searching for a faster way to view tables in a back office. Thank you, Christophe,

[flexcoders] phpMyAdmin and Flex

2009-12-04 Thread Christophe
Hello, I have a database mySQL with my Flex application. But the use of phpMyAdmin to view the tables is too long, I am searching for a faster way to view tables in a back office. Thank you, Christophe,

[flexcoders] Loading sub-applications from AIR and RSL issues

2009-12-04 Thread cosmacol
Hi, I'm experimenting with the sub-application features of Flex to create an AIR application able to dynamically load, at run-time, remote SWCs and use them (a sort of portal). I had some degree of success, and found the following limitations: - must use SWFLoader instead of Loader to support

[flexcoders] Re: phpMyAdmin and Flex

2009-12-04 Thread invertedspear
Try the MySQL Query Browser. It's a free download from the MySQL team and should suit your needs. There are also numerous pay programs out there. My Favorite is the EMS MySQLManager. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, I have a database

[flexcoders] Compile Flex app for SSL

2009-12-04 Thread Greg Morphis
I have a Flex 2 app that needs to be compiled for our https server. It compiles and runs locally and on the dev server just fine, but when I push the code to production I get an error that says: faultDetail=Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url:

[flexcoders] am a newbie , can somebody explains to me this simple For loop statement?

2009-12-04 Thread fred44455
This is a function who is supposed to remove an item from the store item. I can't understand it. All I know from this function is that it removes only one item(_collection.splice(i, 1);) when it founds the loops stops (break). The all class was an Array Class and there was an AddItem function

[flexcoders] Re: How can I sort ADGColumn with icons as data?

2009-12-04 Thread jer_ela
ADG columns have a sortCompareFunction property. The function will get 2 objects representing 2 of the datagrid rows. The function decides how to compare the object for sorting purposes. So whatever data you have that determines which icon to display can be used to determine how the column

[flexcoders] Re: Help, please

2009-12-04 Thread Greg Morphis
So no one has any ideas what could be the cause of this? Any Adobe people out there? Where else can I post my problem to get some kind of help? On Thu, Dec 3, 2009 at 7:43 AM, Greg Morphis gmorp...@gmail.com wrote: Should I try uninstalled Flex Builder 2 and reinstalling it? Has no one ran into

[flexcoders] Struggling with simply using returned SQL data for a popMenuButton

2009-12-04 Thread steveb805
I've been trying like heck to get data returned from AMF Remoting and use it for the data provider for a popUpButton. This data is from MySQL, just regular text fields/int fields, etc.. --- public var dataXML :XMLListCollection; // the data

[flexcoders] Re: Help, please

2009-12-04 Thread invertedspear
You might try the adobe forums themselves, but you're using an old version of Flex as a plugin to eclipse so they might nor really have an answer for you. stackoverflow.com has a good community of people that might be able to help you, they're pretty much all developers so someone may have more

RE: [flexcoders] Loading sub-applications from AIR and RSL issues

2009-12-04 Thread Alex Harui
SWFLoader is for loading SWF, ModuleLoader is for loading Modules. Both must be added to the display list before loading. I'd double check your settings. I don't see how the sub-app would try to load the apps RSLs. See the Marshall Plan presentation on my blog. I would expect you can get

[flexcoders] Returning the UIComponent Dragged from a TileList

2009-12-04 Thread method_air
I can access the data from item(s) dragged from a TileList and dropped onto another component: var dragEvent:DragEvent = e as DragEvent; var items:Array = dragEvent.dragSource.dataForFormat(items) as Array; var data:Object = items[0]; How do I access the UIComponent containing the data? I want

[flexcoders] Returning the UIComponent Dragged from a TileList

2009-12-04 Thread Loud Jazz
I can access the data from item(s) dragged from a TileList and dropped onto another component: var dragEvent:DragEvent = e as DragEvent; var items:Array = dragEvent.dragSource.dataForFormat(items) as Array; var data:Object = items[0]; How do I access the UIComponent containing the data? I

[flexcoders] ActiveX

2009-12-04 Thread phe.tiger
It is possible, with AIR and Adobe Flex Application handle or load a ActiveX? Thanks

[flexcoders] Flash Builder perspective broken

2009-12-04 Thread Mano Torquato
Hi, I can't get Flash Builder working. When I try to open the Flash perspective all windows collaps and I get the following exception: java.lang.NullPointerException at org.eclipse.ui.part.MultiPageEditorPart.createContainer(MultiPageEditorPart.java:285) at

[flexcoders] am a newbie , can somebody explains to me this simple For loop statement?

2009-12-04 Thread Ballai Tibi
public function removeItem(item:StoreItem):void { var i:uint; //declares a local variable i of type uint (unsigned int) /*initialize *i* with the value *0*; until *i* is smaller than the collection's length, execute the code inside the for loop and increment *i* by one at the end

[flexcoders] Re: Line Chart Data Tips Don't Display When There's a Single Data Point

2009-12-04 Thread carriecharp
I thought I'd share the workaround I found for my original problem where data tips weren't displaying when you have only one point in the Line Series in a Line Chart. If I change the type of chart to a Plot Chart (still using Line Series), the data tip will appear. This however introduces

[flexcoders] BlazeDS issue

2009-12-04 Thread cmohan.rm
hi all I am seeing the following error: :Error Retrieving Data Thu Dec 03 15:02:36 EST 2009: 0,local,Unidentified Error, Code=16006, Details: java.lang.ClassNotFoundException: flex.messa ging.io.ArrayCollection, Severity: 1, Code: 16006 On the web I read somewhere a suggestion to include the

[flexcoders] so many methods to zoom/move an image, which one should I choose?

2009-12-04 Thread terryz17
Hi, all: How are you? I want to zoom/move an image. I found there are many ways to do that: 1. to use an Image control , change the x, y, widith,height . Or to call move method. 2. to use zoom/move effect. 3. to create a custom control, using BitmapData and apply the specific metrix. 4. ... It

[flexcoders] Re: phpMyAdmin and Flex

2009-12-04 Thread billheaton08
I use Sequel Pro on my mac when I prefer not to use phpMyAdmin or the MySQL Query Browser. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: I have a database mySQL with my Flex application. But the use of phpMyAdmin to view the tables is too long, I am searching

[flexcoders] Re: BlazeDS issue

2009-12-04 Thread tiborballai
Hi, Can you make sure that you have the flex-messaging- core.jar file in your blazeDS application's web-inf\lib folder? Tibor. --- In flexcoders@yahoogroups.com, cmohan.rm chand...@... wrote: hi all I am seeing the following error: :Error Retrieving Data Thu Dec 03 15:02:36 EST 2009:

RE: [flexcoders] am a newbie , can somebody explains to me this simple For loop statement?

2009-12-04 Thread Gordon Smith
Are you asking for an explanation of the for-loop? The comment above it explains what it does. The general form is for (a; b; c) { d; ... } and it is basically equivalent to the following while-loop: a; while (b) { d; ... c; } The 'a' part is typically an assignment statement to initialize a

[flexcoders] Re: BlazeDS issue

2009-12-04 Thread Chandu
yes I have all the flex jars in web-inf\lib folder. I want to somehow include these jars into the tomcat classpath without any issues. But when I do that the web-apps dont deploy. Thanks -- It is so simple to be happy but so difficult to be simple

[flexcoders] Give Me First Task !!!! Plz

2009-12-04 Thread Shabir Gilkar
Hi All! I being beginner in Flex Builder 3.0, and you being as Experienced in Flex Programming *What task you you would like to assign me at my first place?* I know Basics of Flex, like how to use different components etc and how to debugg etc and i know As3 as beginner. i had watched adobe