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 documentatio

RE: [flexcoders] Re: New Into Flex

2009-04-28 Thread Angelo Anolin
s, 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 Sub

[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 ente

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

2009-05-14 Thread Angelo Anolin
e 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 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 bi

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

2009-05-18 Thread Angelo Anolin
ld with > sa). > > Then try 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 > > > >

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

2009-05-19 Thread Angelo Anolin
here TrackTotal is a DG's id. HTH --- In flexcod...@yahoogro ups.com, 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 dat

[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 event

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

2009-05-20 Thread Angelo Anolin
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 wrote: > > > Hi. I am looking for a simple application where a datagrid is displayed. &

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

2009-05-20 Thread Angelo Anolin
NumericColumnTr ackTotal( itemA:Object, 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 wrote: > >

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

2009-05-20 Thread Angelo Anolin
: [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 wrote: > > My apologies but I forgot to mention that I am getting the data from a .NET > web service which is a dataset and then

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

2009-05-21 Thread Angelo Anolin
at 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 Subject: Re: [flexcoders] Re: modify item before binding to datagrid

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

2009-05-21 Thread Angelo Anolin
@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 wrote: > > My apologies but I forgot to mention that I am getting th

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

2009-05-22 Thread Angelo Anolin
tem before binding to datagrid Of cource I meant: import mx.utils.ObjectUtil ; --- In flexcod...@yahoogro ups.com, "markgoldin_ 2000" wrote: > > How about > import.utils. ObjectUtil; > --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > > > Hi M

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

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

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

2009-05-23 Thread Angelo Anolin
This is how I would do it.. private function IDCompare(itemA: Object, itemB:Object) :int { return ObjectUtil.numericC ompare(itemA.SupplierID, itemB.SupplierID); } --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > H

[flexcoders] Flex Coding Standards

2009-05-23 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
> english/pt/ > I'm currently basing my coding standards from there :) > On Sun, May 24, 2009 at 2:04 PM, Angelo Anolin > wrote: >> >> >> >> Hi FlexCoders, >> >> Would someone be kind enough to share their coding standards relative to >>

[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 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. In this process, I

Re: [flexcoders] Flex DataGrid Filter via Popup Window

2009-05-25 Thread Angelo Anolin
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 on this. Instead of the

Re: [flexcoders] Flex DataGrid Filter via Popup Window

2009-05-27 Thread Angelo Anolin
] 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, A

[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 I

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

2009-05-27 Thread Angelo Anolin
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 to ArrayCollection   Hi

[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 App.mxm

[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 I

Re: [flexcoders] Referencing Hiddenfield in html page

2009-06-02 Thread Angelo Anolin
javascript to get it into Flex or you can pass the data into the Flex app via flashvars 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

[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 Kiddi

[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 reache

[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
: [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 wrote: Is there a PDF download for this document? I see this a lot in the

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 i

[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 = XML

[flexcoders] ArrayCollection to Delimited String

2009-06-04 Thread Angelo Anolin
Hi FlexCoders, Supposed I have an ArrayCollection variable represented like below:                          I want to store the same in a String variable where the resulting string would be like: var ResultString:String; ResultString = "MI|Lansing||MO|Jefferson City||MA|Boston||MT|Helena||M

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-07 Thread Angelo Anolin
yAC ) > { > myString += myObject.label + "|" + myObject.data; > > if ( myAC.getItemIndex( myObject ) < myAC.length - 1 ) > { > myString += "|"; > } > } > > trace(myString) ; > } > > -TH > > ---

[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
x and .NET 2009/6/8 Angelo Anolin : > 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 of e

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 : > > > > Hi Sam, > > Thanks for your reply. > > As of now, I actual

[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 e

Re: [flexcoders] Re: Flex and .NET

2009-06-09 Thread Angelo Anolin
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 wrote: > > > > Hi Sam, > > Thanks for your reply. > > As of now, I actually

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-09 Thread Angelo Anolin
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

Re: [flexcoders] Flex and Reporting

2009-06-09 Thread Angelo Anolin
rendering as images). On Thu, Jun 4, 2009 at 12:58 AM, Angelo Anolin 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

Re: [flexcoders] Re: Flex and Reporting

2009-06-10 Thread Angelo Anolin
: 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 wrote: > > Hi everyone, > > I am totally amazed at the cool front-end UI things that could be done in > Flex. I hav

[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 collection

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

2009-06-11 Thread Angelo Anolin
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 wrote: 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

[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:                                             Now, how would I be able to bind in both components my array collection? In the other columns, I can easily bind t

Re: [flexcoders] Re: Flex and Reporting

2009-06-16 Thread Angelo Anolin
point where I need to do some basic reporting (printing a Datagrid with a legend, etc), but somehow I run into troubles with FlexReport. Could you use it? Any other suggestions how I could print a datagrid with colored rows? Thanks, Martin --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: &g

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

2009-06-16 Thread Angelo Anolin
          nsOutwardAgeMonths. value = value.Months;                 addChild(nsOutwardA geMonths) ;                 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

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

2009-06-16 Thread Angelo Anolin
OutwardA geMonths) ; > 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 A

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

2009-06-19 Thread Angelo Anolin
gt; > private var nsOutwardAgeYear: NumericStepper = new > > > > > NumericStepper( ); > > > > > private var nsOutwardAgeMonths: NumericStepper = new > > > > > NumericStepper( ); > > > > > > > > > > public function NumericStepperRende rer() > > > > >

[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(); svcDP.addEventListener(ResultE

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 F

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

2009-07-01 Thread Angelo Anolin
the fault handler to see what the problem is. You may have a null XML object returned. --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > 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

[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(), REP_DATE_TAG:xl[i].REP_DATE.te

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

2009-07-02 Thread Angelo Anolin
n Order When Passed to .NET WebService How 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 : > > > Hi FlexCo

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

2009-07-02 Thread Angelo Anolin
are sending and receiving. --- In flexcod...@yahoogro ups.com, 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 my web service that ther

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

2009-07-02 Thread Angelo Anolin
pp 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 : &g

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

2009-07-07 Thread Angelo Anolin
http://tempuri. org/">bob http://tempuri. org/"> http://tempuri. org/">fred Is this anything like what you're getting? The edge case you described in another email about an empty string causing problems doesn't seem to cause problems. Also see inline. 2009/7/3

[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
; is an empty string. > > http://tempuri. org/">808 > http://tempuri. org/">bob > > http://tempuri. org/"> > http://tempuri. org/">fred > > Is this anything like what you're getting? The edge case you described > in another email a

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

2009-07-07 Thread Angelo Anolin
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 records from

[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 regards

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

2009-08-03 Thread Angelo Anolin
+= “ _   Public Function setUserPermits(ByVal sRowsXml As String, ByVal sSId As String) As DataTable …       Tracy Spratt, Lariat Services, development services available From:flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] On Behalf Of Angelo Anolin Sent

[flexcoders] Flex Charting

2009-08-16 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 to a component implementation. I did a little research and I f

Re: [flexcoders] Flex Charting

2009-08-17 Thread Angelo Anolin
Thanks a lot Tom. From: Tom Chiverton 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 as a separate file? Yup : h

[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 gradien

[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 metho

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 command

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

2009-08-19 Thread Angelo Anolin
Anyone?? Thanks. From: Angelo Anolin 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 on a Tree control, and

[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:     I want to be able to change the result of the operation "Call_One" to another result, since I am planning to re-use the same web service, but the result

[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 item

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

2009-08-21 Thread Angelo Anolin
flexcod...@yahoogro ups.com, 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: > > > > > > > I want to be able to change th

[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);    Alert.show(String(_xml

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

2009-08-25 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-25 Thread Angelo Anolin
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 To: flexcod

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

2009-08-26 Thread Angelo Anolin
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: [flexcoders] Fle

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

2009-08-26 Thread Angelo Anolin
method after your if/else block that's already in there. Beau On Wed, Aug 26, 2009 at 12:03 AM, Angelo Anolin wrote: > >Hi FlexCoders, > >This has puzzled me a bit.. > >I have the following scripts in my application: > >private var myAlert:int; > >priv

[flexcoders] SWF File Not Loading

2009-08-26 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: http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab";     height='100%'     width='100%'>           

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

2009-08-27 Thread Angelo Anolin
async/non-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 S

Re: [flexcoders] SWF File Not Loading

2009-09-02 Thread Angelo Anolin
.@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 object in an ASPX page.

Re: [flexcoders] SWF File Not Loading

2009-09-06 Thread Angelo Anolin
ents when running in the browser? If you see trace statements, check the sizes of the SWFLoader and its content Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs. adobe.com/ aharui From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo An

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.       .    and in your script, declare the function private function yourDoubleClickFunction():void {     // Place your codes here.. } HTH. From: ferrari.hunk To: flexcoders@

[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:             private function setDayName(monthNo:Number, dayNo:Number, yearNo:Number):String    {  // Make some calculations on the day based on the date p

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

2009-09-18 Thread Angelo Anolin
unction Call   Did you try it?  I would expect that to work.   Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs. adobe.com/ aharui   From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo Anolin Sent: Thursday, September 17, 2009 8:10 PM To:

[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 o

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, wh

Re: [flexcoders] Highlighting a day in DateChooser

2009-09-19 Thread Angelo Anolin
Datefield2.selectedDate = Datefield1.selectedDate From: David Harris 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 a DateField/DateChoos

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

2009-09-21 Thread Angelo Anolin
to use it with (Or the Application) ... xmlns:flexlibcontro ls="flexlib. controls. *" Secondly, instantiate the control in MXML... So, a full application example could look like: HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > Hi FlexCoders, > >

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

2009-09-21 Thread Angelo Anolin
em. I think if they >> could see a couple of slick data viz apps, they'd suddenly "get it". I >>> was hoping that a few flexcoders might have data viz apps they'd like >> to show off. >> >> Thanks very much. >> >> On Sep 19,

[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: http://www.adobe.com/2006/mxml"; initialize="RunEveryPop();"

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

2009-09-29 Thread Angelo Anolin
in an alert > message. > } Hope that helps, -Vito --- In flexcod...@yahoogro ups.com, 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. 

Re: [flexcoders] TitleWindow Popup Question(s)

2009-09-29 Thread Angelo Anolin
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 Reply-To: Date: Tue, 29 Sep 2009 00:55

[flexcoders] New to FlexBuilder Development Tool

2009-10-01 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 can

Re: [flexcoders] New to FlexBuilder Development Tool

2009-10-01 Thread Angelo Anolin
s. Thanks. Regards, Angelo ____ From: Angelo Anolin 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 to this too

[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 bei

Re: [flexcoders] TitleWindow Popup Question(s)

2009-10-06 Thread Angelo Anolin
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 Reply-To: Date: Tue, 29 Sep 2009 00:55:35 -0700 (PDT) To: Subject: [flexcoders] TitleWindow Popup Question(s

  1   2   3   >