Re: [flexcoders] Re: New Into Flex

2009-04-27 Thread Angelo Anolin
@Brad and @Greg, Thanks for the heads up.  I have already bookmarked cflex.net after looking at some code samples there, I believe that it is also a good source. I also got the Flex in a Week video training and I believe I am somehow progressing out quick enough. I also have the Flex

RE: [flexcoders] Re: New Into Flex

2009-04-28 Thread Angelo Anolin
, making sure each part works before going on to the next.   Tracy Spratt, Lariat Services, development services available From: flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Monday, April 27, 2009 8:02 PM To: flexcod...@yahoogro ups.com Subject

[flexcoders] Flex - Create Application From Database

2009-05-14 Thread Angelo Anolin
Hi All, I have FB3 on my machine, coupled with VS 2008 Express. When I click on Data | Create Application From Database, I get the Popup WIndow - Create Application From Database. I click on the New button beside the Connection and I am directed to the Create Connection Profile. I then

Re: [flexcoders] Re: Flex - Create Application From Database

2009-05-14 Thread Angelo Anolin
to the database above. Password: The Password you use to connect to the database above. You should then click the Test Connection button to see if Flex can connect to the database with the parameters you have entered. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote

[flexcoders] modify item before binding to datagrid

2009-05-18 Thread Angelo Anolin
Hi. I am quite new in Flex and would like to ask a simple question. I am retrieving datasets from a .NET webservice and binding the same to a datagrid. The datagrid comes with a feature that when you click on any of the headers, the column is sorted ASC or DESC. Now, one column which I am

Re: [flexcoders] Re: Flex - Create Application From Database

2009-05-19 Thread Angelo Anolin
clicking the Test Connection button. Flex will try to connect and give you some sort of error if it can't. As I understand it, you should be able to connect to a NorthWind database. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote: Hi

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-19 Thread Angelo Anolin
, itemB:Object) :int { return ObjectUtil.numericC ompare(itemA[ TrackTotal. col], itemB[TrackTotal. col]); } where TrackTotal is a DG's id. HTH --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi. I am quite new in Flex and would like to ask a simple question. I am

[flexcoders] Master-Detail Datagrid and Form

2009-05-20 Thread Angelo Anolin
Hi. I am looking for a simple application where a datagrid is displayed. When the user clicks on the datagrid, the selected item's details is populated in a form element. I have no problem setting up the datagrid and populating it with XML data. I know that I need to map the itemClick

Re: [flexcoders] Re: Master-Detail Datagrid and Form

2009-05-20 Thread Angelo Anolin
form loads DG has first row highlighted and first row is detailed. Then everytime you change selection you get new details shown. Not sure if my code is the one to learn from but the approach works very well for me. HTH --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-20 Thread Angelo Anolin
...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote: Hi. I am quite new in Flex and would like to ask a simple question. I am retrieving datasets from a .NET webservice and binding the same to a datagrid. The datagrid comes with a feature that when you click on any of the headers

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
functionality if needed. Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Wednesday, May 20, 2009 9:46 AM To: flexcod...@yahoogro ups.com

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
To: flexcoders@yahoogroups.com Sent: Wednesday, 20 May, 2009 21:52:25 Subject: [flexcoders] Re: modify item before binding to datagrid Angelo, did you try the code I have replied to you with? --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: My apologies but I forgot

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-22 Thread Angelo Anolin
meant: import mx.utils.ObjectUtil ; --- In flexcod...@yahoogro ups.com, markgoldin_ 2000 markgoldin_ 2...@... wrote: How about import.utils. ObjectUtil; --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote: Hi Mark, I cannot seem to get your code working for me

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-23 Thread Angelo Anolin
as a reference to the clicked column's dataField retrieved via column collection. Just use same as mine code. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Mark, Thanks for your patience. I did write the import code for the ObjectUtil class. But I still cannot

Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-24 Thread Angelo Anolin
/ mx:DataGridColumn headerText= Address dataField=Address width=150/ /mx:columns /mx:DataGrid private function IDCompare(itemA: Object, itemB:Object) :int { return ObjectUtil.numericC ompare(itemA.SupplierID, itemB.SupplierID); } --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin

[flexcoders] Flex Coding Standards

2009-05-24 Thread Angelo Anolin
Hi FlexCoders, Would someone be kind enough to share their coding standards relative to flex development? I am starting Flex and I would want to at least follow good standard(s) especially on coding side. Thanks and best regards. Angelo

Re: [flexcoders] Flex Coding Standards

2009-05-24 Thread Angelo Anolin
flex_coding_ guidelines_ english/pt/ I'm currently basing my coding standards from there :) On Sun, May 24, 2009 at 2:04 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, Would someone be kind enough to share their coding standards relative to flex development? I am starting

[flexcoders] Flex DataGrid Filter via Popup Window

2009-05-25 Thread Angelo Anolin
Hello FlexCoders, I am trying to implement a datagrid filtering mechanism to datagrids in my application. In this process, I want to show a popup window where it would act like a response window.  The popup window will contain three controls, namely, two comboboxes, and a textinput control. 

Re: [flexcoders] Flex DataGrid Filter via Popup Window

2009-05-25 Thread Angelo Anolin
. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Monday, 25 May, 2009 15:48:25 Subject: [flexcoders] Flex DataGrid Filter via Popup Window Hello FlexCoders, I am trying to implement a datagrid filtering mechanism to datagrids in my application

Re: [flexcoders] Flex DataGrid Filter via Popup Window

2009-05-25 Thread Angelo Anolin
available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Monday, May 25, 2009 10:07 AM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] Flex DataGrid Filter via Popup Window   Some updates

Re: [flexcoders] Flex DataGrid Filter via Popup Window

2009-05-27 Thread Angelo Anolin
...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Monday, May 25, 2009 8:18 PM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] Flex DataGrid Filter via Popup Window   Hi Tracy,   Care to show some example codes on how to pass the datagrid reference? Thanks.   Kind regards, Angelo

[flexcoders] Converting XML Data Retrieved from Web Service to ArrayCollection

2009-05-27 Thread Angelo Anolin
Hi FlexCoders, I am able to retrieve an XML data from a backend (ASP.NET) webservice and simultaneously, bind it to my datagrid. I want to convert the XML data to an ArrayCollection and bind that Array Collection to the datagrid instead of the XML data. The conversion needs to be done so that

Re: [flexcoders] Converting XML Data Retrieved from Web Service to ArrayCollection

2009-05-27 Thread Angelo Anolin
services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Wednesday, May 27, 2009 8:10 PM To: flexcod...@yahoogro ups.com Subject: [flexcoders] Converting XML Data Retrieved from Web Service

[flexcoders] Compiling via Command Line

2009-05-28 Thread Angelo Anolin
I have created a Custom MXML named PopupInfo.mxml component which is based from a TitleWindow. Am using the MXMLC compiler to compile my App.mxml into a SWF file and embed the same to my asp.net page. The App.mxml file calls the PopupInfo.mxml to display a Popup and I am calling it from

[flexcoders] Referencing Hiddenfield in html page

2009-06-01 Thread Angelo Anolin
Hi FlexCoders, As I am trying to build a simple little application, I want to know how flex can access a hiddenfield value in an html (or aspx) page? In one of the old aspx application we have, we are using the HttpContext.Current.Request.ServerVariables to get the logged in User Name. Since

Re: [flexcoders] Referencing Hiddenfield in html page

2009-06-02 Thread Angelo Anolin
when you start the app.   Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Monday, June 01, 2009 11:47 PM To: flexcod...@yahoogro ups.com Subject

[flexcoders] Adobe Flex Language Reference

2009-06-02 Thread Angelo Anolin
Is there a PDF download for this document?  I see this a lot in the Adobe Developer's Guide PDF documentation. Thanks.

Re: [flexcoders] Referencing Hiddenfield in html page

2009-06-02 Thread Angelo Anolin
From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Tuesday, June 02, 2009 9:02 PM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] Referencing Hiddenfield in html page   Hi Tracy, I was able to work out something

Re: [flexcoders] Compiling via Command Line

2009-06-03 Thread Angelo Anolin
Hi Gregor, Thanks for the reply. I found out that as long as the file PopUpInfo.mxml being referenced by my main mxml file is in the same path, then the SWF will be compiled with the reference to it as well. Thanks again for the heads up. From: Gregor

[flexcoders] Filter Does Not Work on a Column when Record Count is more than 4000

2009-06-03 Thread Angelo Anolin
Hi FlexCoders, I have this very strange bug which I don't have any idea why it is happening. Basically, I have a datagrid which I am populating with an ArrayCollection data.  The array collection is being populated through via XML which I am retrieving from a web service. When the record

[flexcoders] Flex and Reporting

2009-06-04 Thread Angelo Anolin
Hi everyone, I am totally amazed at the cool front-end UI things that could be done in Flex.  I have been dabbling a lot on Flex and steadily getting the hang of it. Anyway, one thing which I am looking for is on creating and printing reports.  I am looking for some resources on how to achieve

Re: [flexcoders] Adobe Flex Language Reference

2009-06-04 Thread Angelo Anolin
:15:58 Subject: Re: [flexcoders] Adobe Flex Language Reference Angelo Not in PDF as I remember, but you can use a local version in html that is built-in in SDK. Regards Igor Costa On Wed, Jun 3, 2009 at 1:02 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Is there a PDF download

Re: [flexcoders] Re:Flex and Reporting

2009-06-04 Thread Angelo Anolin
Hi Martin, I was able to take a look at the FlexReport on the Kemelyon website and it seems somewhat a good start. I tried to get the codes from google but I think I am not able to gather much since I am not able to run the sample properly. Perhaps if you could share here the code/scripts in

[flexcoders] Convert ArrayCollection to XML then to String

2009-06-04 Thread Angelo Anolin
Hi FlexCoders, I was able to perform the following conversion of String to XML to Array Collection.  The code are as follows: var _str:String; var _xmlData:XML; var _arrColl:ArrayCollection = new ArrayCollection; var _xl:XMLList = _xmlData.children(); var oTemp:Object; var i:int; _xmlData =

[flexcoders] ArrayCollection to Delimited String

2009-06-04 Thread Angelo Anolin
Hi FlexCoders, Supposed I have an ArrayCollection variable represented like below: mx:ArrayCollection id=myAC  mx:Array id=myArray   mx:Object label=MI data=Lansing/   mx:Object label=MO data=Jefferson City/   mx:Object label=MA data=Boston/   mx:Object label=MT data=Helena/   mx:Object label=ME

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-07 Thread Angelo Anolin
) myAC.length - 1 ) { myString += |; } } trace(myString) ; } -TH --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote: Hi FlexCoders, Supposed I have an ArrayCollection variable represented like below: mx:ArrayCollection id=myAC mx:Array id=myArray mx:Object

[flexcoders] Flex and .NET

2009-06-07 Thread Angelo Anolin
Hi FlexCoders, I have recently discovered the wonders of developing RIAs with Flex / FlexBuilder and have completely decided to use the same in further development efforts on my part.  With a little .NET knowledge, I decided to venture out on the path of Flex by combining it with some wisdom I

Re: [flexcoders] Flex and .NET

2009-06-07 Thread Angelo Anolin
: [flexcoders] Flex and .NET 2009/6/8 Angelo Anolin angelo_anolin@ yahoo.com: I feel that this is probably not the BEST way of doing this.  I tried initially to pass an XML delimmited string, but .NET seems to read XML differently( ?) from Flex. I'd say XML would be a good way of doing it. What kind

Re: [flexcoders] Flex and .NET

2009-06-08 Thread Angelo Anolin
say it would be better just to transmit the IDs back to the webservice, and let the webservice hit the database for the row data (some caching on the server-side would help too). 2009/6/8 Angelo Anolin angelo_anolin@ yahoo.com: Hi Sam, Thanks for your reply. As of now, I actually prefer

[flexcoders] Parser Error in mx:ComboBox DataProvider

2009-06-09 Thread Angelo Anolin
Hi Flexcoders, Little error which I cannot seem to get off. I am declaring a private ArrayCollection and setting the combobox dataprovider to the arraycollection. My combobox is inside a datagrid Itemrenderer tag. When I set the dataprovider for the combobox, I get a red mark stating Parser

Re: [flexcoders] Re: Flex and .NET

2009-06-09 Thread Angelo Anolin
would have thought the best way was to send the query back to the back end, get it to do the data lookup again and pass the data into Crystal Reports. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Sam, Thanks for your reply. As of now, I

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-09 Thread Angelo Anolin
somewhere else you need to consider, what happens if your delimiter is in a piece of text? On Sun, Jun 7, 2009 at 2:25 PM, Angelo Anolin angelo_anolin@ ...wrote: Hi Tim, Thanks for the tip(s). Was able to make this thing work out. Regards, Angelo

Re: [flexcoders] Flex and Reporting

2009-06-09 Thread Angelo Anolin
for rendering as images). On Thu, Jun 4, 2009 at 12:58 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi everyone, I am totally amazed at the cool front-end UI things that could be done in Flex. I have been dabbling a lot on Flex and steadily getting the hang of it. Anyway, one thing which I am

Re: [flexcoders] Re: Flex and Reporting

2009-06-10 Thread Angelo Anolin
: [flexcoders] Re: Flex and Reporting Have you seen Stimulsoft. One of things it has is a Flex runtime designer very nice. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi everyone, I am totally amazed at the cool front-end UI things that could be done

[flexcoders] Read Items / Loop Through Datagrid Rows

2009-06-11 Thread Angelo Anolin
Hi FlexCoders, I am dynamically creating a datagrid with 5 columns and 10 rows. Columns 2, 3, 4 and 5 are all rendered as textinput control where user can enter some information. How do I loop through all the datagrid rows and store the values entered in the datagrid into an array

Re: [flexcoders] Read Items / Loop Through Datagrid Rows

2009-06-11 Thread Angelo Anolin
is trying but this new approach is better for me, I've far more control over what I can do. On Thu, Jun 11, 2009 at 10:12 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, I am dynamically creating a datagrid with 5 columns and 10 rows.  Columns 2, 3, 4 and 5 are all rendered

[flexcoders] ArrayCollection and Datagrid Binding and DataProvider Question

2009-06-11 Thread Angelo Anolin
Good day. Learning Flex here for the past two (like three actually) weeks.  Using only mxml compiler. I have a question with regards to the above subject: Assuming I declared an ArrayCollection as follows: [Bindable] private var _arrItems:ArrayCollection = new ArrayCollection([{itemNo:1,

[flexcoders] Binding two elements in a single datagrid column

2009-06-14 Thread Angelo Anolin
Hi FlexCoders, I have a datagrid, where one of the columns is defined as follows: mx:DataGridColumn width=150  mx:headerRenderer   mx:Component    mx:VBox horizontalScrollPolicy=off verticalScrollPolicy=off verticalGap=2 mx:Box horizontalAlign=center width=100%  mx:Label text=Age /    

Re: [flexcoders] Re: Flex and Reporting

2009-06-16 Thread Angelo Anolin
: Wednesday, 10 June, 2009 16:27:00 Subject: [flexcoders] Re: Flex and Reporting Have you seen Stimulsoft. One of things it has is a Flex runtime designer very nice. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi everyone, I am totally

Re: [flexcoders] Re: Binding two elements in a single datagrid column

2009-06-16 Thread Angelo Anolin
) ;                 addChild(nsOutwardA geYear);             }         }     } } I will leave it as an exercise for the reader how to add an event listener for the change event. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have a datagrid, where

Re: [flexcoders] Re: Binding two elements in a single datagrid column

2009-06-16 Thread Angelo Anolin
(nsOutwardA geYear); } } } } I will leave it as an exercise for the reader how to add an event listener for the change event. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote: Hi FlexCoders, I have a datagrid, where one of the columns

Re: [flexcoders] Re: Binding two elements in a single datagrid column

2009-06-19 Thread Angelo Anolin
(nsOutwardA geYear); } } } } I will leave it as an exercise for the reader how to add an event listener for the change event. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ wrote

[flexcoders] Web Service Question (Help!)

2009-06-30 Thread Angelo Anolin
Hi FlexCoders, I am totally confused with the error I am having at the moment. Been banging my head on this for the past 3 hours.. In one of my function, I am trying to call a WebService method passing an ArrayCollection. var svcDP:WebService = new WebService();

Re: [flexcoders] Time Difference between two columns in DataGrid using itemrenderer

2009-07-01 Thread Angelo Anolin
I think you would find it better to do the calculation on the database itself. All database have a lot of date/time diff functions which you can use. That way, you all simply bind the data retrieved in your datagrid without the need for calculating it. hth

Re: [flexcoders] Re: Web Service Question (Help!)

2009-07-01 Thread Angelo Anolin
. getStackTrace( ) in the fault handler to see what the problem is. You may have a null XML object returned. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I am totally confused with the error I am having at the moment. Been banging my head

[flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-01 Thread Angelo Anolin
Hi FlexCoders, I have an array collection which I am populating as follows: var oTemp:Object; var xl:XMLList = _xmlData.children(); var i:int; for(i = 0; i xl.length(); i++)  {  oTemp = {ID_TAG:xl[i].ID.text(), CAT_TAG:xl[i].CAT.text(), DET_TAG:xl[i].DET.text(),

Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-02 Thread Angelo Anolin
is it being parsed in .NET? You can parse it into a hashtable, or better yet, use a pre-defined object. Not sure why the order is different, but it is probably fragile to rely on the order in this case. 2009/7/2 Angelo Anolin angelo_anolin@ yahoo.com: Hi FlexCoders, I have an array collection which

Re: [flexcoders] Re: Web Service Question (Help!)

2009-07-02 Thread Angelo Anolin
? This will show you exactly what you are sending and receiving. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Valdhor, I think you are quite right. Seems that the ArrayCollection which I am passing is becoming NULL or does not contain any value.  Although I ensure from

Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-03 Thread Angelo Anolin
Flex app differ too wildly to do this? Are you using the XmlSerializer to deserialize this? Or are you using WCF? Or are you doing it some other way, or manually? I'd provide an example, but I don't know enough details on your situation to give something useful :) 2009/7/3 Angelo Anolin

Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-07 Thread Angelo Anolin
in another email about an empty string causing problems doesn't seem to cause problems. Also see inline. 2009/7/3 Angelo Anolin angelo_anolin@ yahoo.com: I think by doing things like this, it may not be the best way. You mentioned you'd map the XML to typed objects in .NET.  How can I do

[flexcoders] Performing a Trace with SDK Compiler Only

2009-07-07 Thread Angelo Anolin
Hi FlexCoders, Care to show some examples of performing a trace using the SDK compiler only? As of the moment, I am resorting to Using Alert.show, and it is quite tedious on my part to do that all the time. Thanks and regards, Angelo

Re: [flexcoders] Re: ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-07 Thread Angelo Anolin
...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Sam Lai, THanks for the input and my apologies for replying late since I felt the need to get deeper on the issue I am encountering. In my web service, the arraycollection is received as an array list and yes, it is like an array

Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-07-07 Thread Angelo Anolin
...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Friday, July 03, 2009 2:09 AM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService   Hi Sam, Basically this is the process which I am using.   .NET Retrieve

[flexcoders] Passing XMLListCollection to .NET

2009-08-03 Thread Angelo Anolin
Hi FlexCoders, Been quite a while. Had been busy with a lot of things other than Flex. Anyway, I want to pass an XMLListCollection to a .NET web service. What type of variable should I assign it to in .NET? I am thinking of ArrayList but it seems it does not match properly. Thanks and

Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed to .NET WebService

2009-08-03 Thread Angelo Anolin
available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Tuesday, July 07, 2009 8:09 PM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] ArrayCollection Does Not Show Items In Order When Passed

[flexcoders] Flex Charting

2009-08-17 Thread Angelo Anolin
Hi. Am doing some flex coding using only a text editor and the SDK compiler.  I run across some examples of Chart and when I try to compile the application (using the MXMLC compiler), I am getting an error: Error: Could Not Resolve mx:PieChart to a component implementation. I did a little

Re: [flexcoders] Flex Charting

2009-08-17 Thread Angelo Anolin
Thanks a lot Tom. From: Tom Chiverton tom.chiver...@halliwells.com To: flexcoders@yahoogroups.com Sent: Monday, 17 August, 2009 16:46:12 Subject: Re: [flexcoders] Flex Charting   On Monday 17 Aug 2009, Angelo Anolin wrote: find it.  Is it downloaded

[flexcoders] Some Qs on Flex Pie Chart

2009-08-17 Thread Angelo Anolin
Flex Pie Chart I have recently downloaded the DataVisualization.swc file to do some Flex Charting learning. I have some questions with regards to the Pie Chart (which am focusing at the moment). 1. How Do I specify a gradient for each pie in the pie chart?  I see some examples but the

[flexcoders] Tree Control Populating from Database via XMLListCollection

2009-08-19 Thread Angelo Anolin
Hi FlexCoders, Am currently working on a Tree control, and being my first time to delve into this, I need your inputs and advice. My tree control is retrieving data from a .NET web service. My .NET webservice returns a string which is parsed from a dataset via the command DataSet.GetXML

Re: [flexcoders] Flex 3.3 SDK and DataVisualization

2009-08-19 Thread Angelo Anolin
Most likely the datavisualization.swc is not being included during the compile of the MXML. I ran across the same problem. What I did was copied the datavisualization.swc to a folder where the MXMLC compiler is located and when I run the compiler, I include the folder as library in the

Re: [flexcoders] Tree Control Populating from Database via XMLListCollection

2009-08-19 Thread Angelo Anolin
Anyone?? Thanks. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Wednesday, 19 August, 2009 20:53:49 Subject: [flexcoders] Tree Control Populating from Database via XMLListCollection Hi FlexCoders, Am currently working

[flexcoders] Coding The itemClick event of the List Control

2009-08-19 Thread Angelo Anolin
Hi. I looked up the documentation for Flex and was not able to find a good sample of coding for the itemClick event for a list control. Any good example or link would be appreciated. Thanks.

[flexcoders] Changing ResultHandler of WebService Operation

2009-08-20 Thread Angelo Anolin
Hi FlexCoders, How do I change the Result property of a web service operation? For example, I have declared my WebService as follows: mx:WebService id=ws   mx:operation name=Call_One result=Call_OneRH(event) fault=Call_OneFH(event) /   mx:operation name=Call_Two result=Call_TwoRH(event)

[flexcoders] Determine Drag Source Control

2009-08-20 Thread Angelo Anolin
Hi FlexCoders, I have some inquiry with regards to Drag and Drop. Supposedly I have 5 List controls with IDs: lstControl_Source1 lstControl_Source2 lstControl_Source3 lstControl_Source4 lstControl_Source5 All these list controls are possible source of drag items. I am dropping the dragged

Re: [flexcoders] Re: Changing ResultHandler of WebService Operation

2009-08-21 Thread Angelo Anolin
not tried it. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, How do I change the Result property of a web service operation? For example, I have declared my WebService as follows: mx:WebService id=ws mx:operation name=Call_One result=Call_ OneRH

[flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-25 Thread Angelo Anolin
Hi FlexCoders, Needing your input on the following: I have created a function for the dragevent of a list. Code is as follows: private function myFunction(evt:DragEvent):void {  var nameID:String = 'Angelo';    // Call a webservice operation here  ws.GetStatus(nameID);    

[flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Angelo Anolin
Hi FlexCoders, This has puzzled me a bit.. I have the following scripts in my application: private var myAlert:int; private function testFunction(evt:Event):void { Alert.show('do you want to proceed', 'Title', Alert.YES | Alert.NO, null, alertHandler, null, Alert.YES); if(myAlert == 1)

Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-26 Thread Angelo Anolin
operations” from the result handler. There is no other way. Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Tuesday, August 25, 2009 9:54 PM

Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-26 Thread Angelo Anolin
. There is no other way. Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent: Tuesday, August 25, 2009 9:54 PM To: flexcod...@yahoogro ups.com Subject

Re: [flexcoders] Question on Flex Script Execution + Alert.show

2009-08-26 Thread Angelo Anolin
in there. Beau On Wed, Aug 26, 2009 at 12:03 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, This has puzzled me a bit.. I have the following scripts in my application: private var myAlert:int; private function testFunction( evt:Event) :void { Alert.show('do you want to proceed

[flexcoders] SWF File Not Loading

2009-08-27 Thread Angelo Anolin
Hi FlexCoders, Got a question again. I am embedding my SWF object in an ASPX page. The HTML markup for the aspx page is shown as below: object id='mySwf'     classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354    

Re: [flexcoders] Flex Function and Web Service ResultHandler Question

2009-08-27 Thread Angelo Anolin
-blocking coding paradigm. This is a hurdle that almost all new Flex developers must get over. Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent

Re: [flexcoders] SWF File Not Loading

2009-09-02 Thread Angelo Anolin
. adobe.com/ aharui From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo Anolin Sent: Wednesday, August 26, 2009 11:33 PM To: flexcod...@yahoogro ups.com Subject: [flexcoders] SWF File Not Loading Hi FlexCoders, Got a question again. I am embedding my SWF

Re: [flexcoders] SWF File Not Loading

2009-09-06 Thread Angelo Anolin
] On Behalf Of Angelo Anolin Sent: Wednesday, September 02, 2009 12:17 AM To: flexcod...@yahoogro ups.com Subject: Re: [flexcoders] SWF File Not Loading Hi Alex, I added some trace statements and the app is actually loading. But the same does not show up in the browser. Am going to check some CSS

Re: [flexcoders] Double click on Datagrid cell

2009-09-14 Thread Angelo Anolin
Could you try to declare the double click event on the datagrid, i.e. mx:DataGrid id=myDataGrid doubleClick=yourDoubleClickFunction()   mx:columns     .   /mx:columns /mx:DataGrid and in your script, declare the function private function yourDoubleClickFunction():void {     // Place

[flexcoders] Label Control Text Value Coming From a Function Call

2009-09-17 Thread Angelo Anolin
Hi FlexCoders, I have a label control where the text value that should be displayed is coming from a defined function.       For example:       mx:Label id=LabelDay1 text= horizontalCenter=true /       private function setDayName(monthNo:Number, dayNo:Number, yearNo:Number):String    {  //

Re: [flexcoders] Label Control Text Value Coming From a Function Call

2009-09-18 Thread Angelo Anolin
[mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo Anolin Sent: Thursday, September 17, 2009 8:10 PM To: flexcod...@yahoogro ups.com Subject: [flexcoders] Label Control Text Value Coming From a Function Call     Hi FlexCoders,   I have a label control where the text value that should be displayed

[flexcoders] Using Just Some Components of Flexlib

2009-09-18 Thread Angelo Anolin
Hi FlexCoders, I have been browsing out the Flexlib in Google Code and I am thinking of using just some of the controls, particularly the Propt TextInput control. I have downloaded the ZIP file and have extracted the same. As I am using more of the command line compiler in Vista, how do I use

Re: [flexcoders] Trying to convince people to develop with Flex

2009-09-19 Thread Angelo Anolin
I believe the best way to do this is to port (convert) one of your slow, dull and hard to maintain application and show how the same could be done in Flex, albeit much better. Manager would only see the value of a development platform if they know that their business bottom line is improved,

Re: [flexcoders] Highlighting a day in DateChooser

2009-09-19 Thread Angelo Anolin
Datefield2.selectedDate = Datefield1.selectedDate From: David Harris djohnsma...@gmail.com To: flexcoders@yahoogroups.com Sent: Saturday, 19 September, 2009 10:50:51 Subject: [flexcoders] Highlighting a day in DateChooser Hi Everyone, Is it possible with

Re: SOLVED - [flexcoders] Re: Using Just Some Components of Flexlib

2009-09-21 Thread Angelo Anolin
/ mxml layout=absolute xmlns:flexlibcontro ls=flexlib. controls. * flexlibcontrols: PromptingTextInp ut prompt=Prompt Goes Here/ /mx:Application HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have been browsing out

Re: [flexcoders] Re: Trying to convince people to develop with Flex

2009-09-21 Thread Angelo Anolin
might have data viz apps they'd like to show off. Thanks very much. On Sep 19, 2009, at 10:32 AM, Angelo Anolin angelo_anolin@ ... wrote: I believe the best way to do this is to port (convert) one of your slow, dull and hard to maintain application and show how the same could

[flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
Hi FlexCoders, Just a little TitleWindow popup question. I want a function to be executed everytime my popup title window component is displayed.  How do I achieve this? I tried in the title window using the initialize property like: mx:TitleWindow xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Re: TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
message. } Hope that helps, -Vito --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, Just a little TitleWindow popup question. I want a function to be executed everytime my popup title window component is displayed.  How do I achieve this? I

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
getTitleWindowTitle () :void {  Alert.show(Titlewin dow.Title) ;  // I Should be able to display the Title of the title window in an alert message. }   Advice and inputs would be highly appreciated.   Thanks.,      From: Angelo Anolin angelo_anolin@ yahoo.com

[flexcoders] New to FlexBuilder Development Tool

2009-10-02 Thread Angelo Anolin
Finally, I got my own FlexBuilder standard edition. I am quite new to this tool. I have mostly developed apps by simply using the command line compiler. I am browsing for some examples to load to my FB3 and I found this example: http://demo.quietlyscheming.com/ChartSampler/app.html As you

Re: [flexcoders] New to FlexBuilder Development Tool

2009-10-02 Thread Angelo Anolin
. Regards, Angelo From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, 2 October, 2009 14:52:00 Subject: [flexcoders] New to FlexBuilder Development Tool Finally, I got my own FlexBuilder standard edition. I am quite new

[flexcoders] Adobe Flex Dashboard

2009-10-06 Thread Angelo Anolin
Hi Flexcoders! I started dabbling with the codes for the Adobe Flex Dashboard (http://examples.adobe.com/flex3/devnet/dashboard/main.html) and has been able to load properly all the necessary files and components to run the application. My question is that I think the last view settings are

Re: [flexcoders] TitleWindow Popup Question(s)

2009-10-06 Thread Angelo Anolin
in the main header of the title window. Then I can update the title by simply assigning values to that variable whenever I like. Hope that helps. Dave. From: Angelo Anolin angelo_anolin@ yahoo.com Reply-To: flexcod...@yahoogro ups.com Date: Tue, 29 Sep 2009 00

Re: [flexcoders] Re: New to FlexBuilder Development Tool

2009-10-06 Thread Angelo Anolin
the app.mxml file or the ChartSeriesStyles. mxml files. They should both work. This kind of thing happens quite a lot with downloaded examples. You have to figure out where the errors are and fix them. HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Finally

  1   2   3   >