[flexcoders] Deserializing .NET web service

2012-04-05 Thread Angelo Anolin
Anyone here has code sample of flex application consuming a .NET webservice that is a DataSet serialized to bytearray? Appreciate any input. Thanks. Angelo

[flexcoders] Adding Headers to Web Service for Compression

2012-04-02 Thread Angelo Anolin
Hi FlexCoders, Anyone here has a working example of adding headers to the web service call such that Accept-Encoding gzip compression is added to the request headers? I have already enabled compression on the IIS 6 (Windows 2003) server and from the IE9 developer tools, I can see that the

[flexcoders] ADG Get All Items Under An Open Node

2012-01-19 Thread Angelo Anolin
My ADG has 3 levels of grouping: Building   Level     Room # i.e. Engineering Building   Level 1   Level 2   Level 3     Room A       50 students       25 students Accounting Building   Level 1     Room D       10 students       8 students     Room C       5 students How can I loop through

Re: [flexcoders] flex with sql server 2008

2011-12-29 Thread Angelo Anolin
Since you did mentioned that you have some knowledge of .NET, the only way to connect to SQL Server is via a backend service (i.e. Web Service) to which you could perform queries and CRUD operations. You would define the web service in your .NET backend and call the same from your flex

Re: [flexcoders] Re: Why Flex now?

2011-11-17 Thread Angelo Anolin
95% of organizations and businesses bottom line is to be able to deliver projects and applications with the least amount of time and budget. We are able to deliver software faster, better and more responsive using Flex/Flash technology running on the web than any other implementation out

[flexcoders] Stacked ColumnChart DataTip [1 Attachment]

2010-09-09 Thread Angelo Anolin
I have the following data: IDBasePriceBasisTotalNetPriceCreatedDate 2210.33012.330198.000Aug 5 2010 1:41PM 3200.2200.000200.220Aug 5 2010 1:41PM 14412.5300.000412.530Aug 26 2010 1:16PM 15412.53095.260317.270Aug 26 2010 1:17PM 22421.74089.710332.030Sep 8 2010 2:38PM Below is the MXML for the

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-29 Thread Angelo Anolin
, 2010 at 10:42 PM, Angelo Anolin angelo_ano...@yahoo.com wrote: Anybody? Having so much hard time trying to move flex3 to flex4. Basically this is a styling issue which is far beyond my expertise. If you have a component created named myButton.as, and you created a CSS file with a style named

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-29 Thread Angelo Anolin
the fully-qualified name with less typing. So, if your component is in package foo, then declare the namespace foo and use it to qualify the type-selector. On 8/29/10 11:33 AM, Angelo Anolin angelo_ano...@yahoo.com wrote: Wesley, I did not quite understand what you meant here (my less than

[flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Angelo Anolin
Dear FlexCoders, In Flex 3, you can simply name your CSS style to the name of the component you created. For example, you created an AS component named MyNewButton, hence, in your CSS file, you can declare a style with name MyNewButton and the component automatically picks up that style. But

Re: [flexcoders] styles are ignored

2010-08-27 Thread Angelo Anolin
I must assume that you are using Flex SDK 4. I am currently having the same issues now. Trying to port some Flex 3 codes to Flex 4 and a lot of styling and CSS things are going haywire. I thought that developer and designer productivity has been greatly enhanced in SDK 4.0 but it seems that

Re: [flexcoders] Where To Declare CSS Style Name in AS Component

2010-08-27 Thread Angelo Anolin
on this. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Fri, 27 August, 2010 10:51:02 Subject: [flexcoders] Where To Declare CSS Style Name in AS Component Dear FlexCoders, In Flex 3, you can simply name your CSS style to the name of the component you created

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-26 Thread Angelo Anolin
@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Would it be possible to simply add it to the MXML file where I am declaring the datagrid, instead of subclassing it? Thanks. From: turbo_vb timh...@... To: flexcoders@yahoogroups.com Sent: Tue, 17 August

[flexcoders] Automatic Calculation of TextInput Bounded Variables

2010-08-25 Thread Angelo Anolin
Dear FlexCoders, For brevity, I would give an example of what I want to achieve. I have three textinput, namely t1, t2 and t3. t3 is the sum of t1 and t2. I have declared three number variables that are bound to the text input. Is it possible that instead of coding for a change event in each

Re: [flexcoders] Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Angelo Anolin
that button to call the method in the MXML file (so that I could re-use the button on other datagrids). Thanks. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Mon, 16 August, 2010 13:54:33 Subject: [flexcoders] Method

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Angelo Anolin
=Launch dataField=contentURL mx:itemRenderer mx:Component mx:Button label=Launch click=parentDocument.goDownload();/ /mx:Component /mx:itemRenderer /mx:AdvancedDataGridColumn Don --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: I know someone has encountered this before

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Angelo Anolin
have read mostly, this should be able to do the trick. Any input and ideas appreciated. Thanks.. From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tue, 17 August, 2010 8:34:07 Subject: Re: [flexcoders] Re: Method for a Datagrid

Re: [flexcoders] Re: Method for a Datagrid Button Itemrenderer

2010-08-17 Thread Angelo Anolin
=flash.events.Event)] public class MyDataGrid extends DataGrid { } } -TH--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: I have written the following scripts, and yet this does not seem to work. in my MXML file (main) private function myDataGrid_CreationComplete() :void

[flexcoders] Method for a Datagrid Button Itemrenderer

2010-08-16 Thread Angelo Anolin
Hi Flexcoders, I have a datagrid and an button itemrenderer named btnRenderer.as I have set this button as an itemRenderer in one of my datagrid columns. mx:DataGridColumn id=dgColCancel width=100 itemRenderer=btnRenderer / I need to respond to an click event on button, passing some of the

[flexcoders] Detect Application Root

2010-08-12 Thread Angelo Anolin
Hi FlexCoders, I have a flex application hosted on an html file. How would I be able to detect from the Flex application the root url? Like for example, the root url goes like: www.mysite/myApp and the flex application is hosted on www.mysite/myApp/flex.html I want to invoke on Flex to

[flexcoders] Determining the Web Service Name on the ResultEvent

2010-07-20 Thread Angelo Anolin
Hi FlexCoders, What property of the currentTarget does it specify the name of the method of the web service which triggered it? Thanks. Angelo

Re: [flexcoders] e4x and XML in Web Service Calls

2010-07-20 Thread Angelo Anolin
Actually, when I added resultFormat=e4x in the operation declaration inside my webservice tags, the returning XML has some lg values. If for example I set the resultFormat=e4X, then in the resultHandler, it should be that: myXMLData = (event.result) but it seems the XML data is not

Re: [flexcoders] SOLVED Re: Setting Different Style on ComboBox DropdownList

2010-07-13 Thread Angelo Anolin
(color , colorHex); } } } --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Flexcoders, How would I be able to set different styles on the list of a combo box based on the values for the binding list to that? For example, I have some data retrieved

Re: [flexcoders] Re: Flex Project Management App

2010-07-09 Thread Angelo Anolin
milestone button is to create a new instance of the custom component and add it to the display list. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I came across a Flex PM site and I would like to ask what are the necessary controls / things I need

[flexcoders] Flex Project Management App

2010-07-08 Thread Angelo Anolin
Hi FlexCoders, I came across a Flex PM site and I would like to ask what are the necessary controls / things I need to do to achieve the same application. The site's page is: http://www.radscientist.com/flexpm/demo/index.html I am having problems re-creating those items which expands when the

Re: [flexcoders] Flex Project Management App

2010-07-08 Thread Angelo Anolin
@yahoogroups.com Sent: Thu, 8 July, 2010 13:56:55 Subject: Re: [flexcoders] Flex Project Management App You posted on this a few weeks ago, and I replied with some suggestions a few weeks ago. If you need additional help, reply to your original thread. On Thu, Jul 8, 2010 at 3:47 PM, Angelo Anolin

[flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps properly, except that the Vertical Gap is quite too big. There is a visible space between the lines that were wrapped inside the datagrid. Is

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Mon, 21 June, 2010 10:24:54 Subject: Re: [flexcoders] Datagrid Column Setting Vertical Gap Try “leading” On 6/21/10 9:17 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, I have

[flexcoders] Help With Collapsible Component

2010-06-18 Thread Angelo Anolin
Hi FlexCoders, I saw this example of a Flex Application. http://www.radscientist.com/flexpm/demo/index.html I want to be able to create the collapsible component which was used in the application. The one wherein you click on the + sign, the panel collapses. Care to tell what components do I

[flexcoders] Jazzing Up Your Flex Applications

2010-06-15 Thread Angelo Anolin
Hi Flexcoders, Am looking for some possible recommendations for ideas on how to jazz up an application. Jazz up means, placing effects, transitions, animations, etc. which would make the user be amazed and astounded on the visuals of the application. Although I am not a designer by nature, I

Re: [flexcoders] Different effects

2010-06-09 Thread Angelo Anolin
Hi Nick, Care to share where you are reading a lot about this topics? I am trying to put some animation and effects to a small data app I am creating at the moment. Thanks. From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Wed,

Re: [flexcoders] Re: Easiest Way To Decrease Font Size in Flex App

2010-06-08 Thread Angelo Anolin
To Decrease Font Size in Flex App You can set the global font size. More info here: http://livedocs.adobe.com/flex/3/html/help.html?content=styles_02.html --- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: I have a flex app compiled from MXML containing a lot of different

Re: [flexcoders] Update Datagrid

2010-06-08 Thread Angelo Anolin
Maybe you are not refreshing or retrieving the latest values for the datagrid. Hard to tell without any codes to show. =) From: Stephen sd_br...@ntlworld.com To: flexcoders@yahoogroups.com Sent: Tue, 8 June, 2010 5:01:48 Subject: [flexcoders] Update Datagrid

[flexcoders] Easiest Way To Decrease Font Size in Flex App

2010-06-07 Thread Angelo Anolin
I have a flex app compiled from MXML containing a lot of different controls (datagrids, label, textarea, textinputs, etc) and I want to decrease the font size as rendered on the swf. How do I achieve this? Take note that I did not used any css styling on the application and simply compiled the

Re: [flexcoders] Modify Flex ComboBox DataProvider

2010-06-04 Thread Angelo Anolin
flexcoders@yahoogroups.com Sent: Fri, 4 June, 2010 0:03:37 Subject: Re: [flexcoders] Modify Flex ComboBox DataProvider There’s a bug like that in Flex 3.5. Older and newer versions don’t have that problem. On 6/3/10 1:56 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote: I am finding

[flexcoders] Modify Flex ComboBox DataProvider

2010-06-03 Thread Angelo Anolin
I am finding some issues when I am trying to change a combobox's data provider. I have a checkbox that would trigger whether a combobox would use an xmlListCollection of all Locations (xmllcAll) or an XMLListCollection of just a subset of locations (xmllcSubset). In the change event of my

Re: [flexcoders] Best practice - remote calls from a flex library

2010-06-03 Thread Angelo Anolin
Looks more like you are trying to achieve inversion of control principle. Instead of the component calling invoking a method of an object, the object is *smart* enough to know when to invoke the call and provide data to the calling component. i think your application should do just fine

Re: [flexcoders] Set Width of An Item Renderer Component Based on Visible Property of the Control

2010-05-21 Thread Angelo Anolin
: includeInLayout={outerDocument. fncVisible( )} From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo Anolin Sent: Thursday, May 20, 2010 2:46 PM To: flexcod...@yahoogro ups.com Subject: [flexcoders] Set Width of An Item Renderer Component Based on Visible Property

Re: [flexcoders] init, creationcomplete and other events

2010-05-20 Thread Angelo Anolin
better explanations, please file a documentation bug. (The second sentence about creationComplete is confusing, but the rest doesn't seem too bad.) - Gordon From:flexcod...@yahoogro ups.com [mailto:flexcoders@ yahoogroups. com] On Behalf Of Angelo Anolin Sent: Wednesday, May 19, 2010 6:41

[flexcoders] Set Width of An Item Renderer Component Based on Visible Property of the Control

2010-05-20 Thread Angelo Anolin
Hi FlexCoders, I have declared an in-line item renderer in my datagrid: mx:DataGridColumn headerText=Test textAlign=center sortable=false mx:itemRenderer mx:Component mx:HBox horizontalAlign=center mx:LinkButton id=lnk1 label=Link 1 visible={outerDocument.fncVisible()}

Re: [flexcoders] Set Width of An Item Renderer Component Based on Visible Property of the Control - RESOLVED

2010-05-20 Thread Angelo Anolin
From: Angelo Anolin angelo_ano...@yahoo.com To: flexcoders@yahoogroups.com Sent: Thu, 20 May, 2010 16:45:31 Subject: [flexcoders] Set Width of An Item Renderer Component Based on Visible Property of the Control Hi FlexCoders, I have declared an in-line item

Re: [flexcoders] Which layout/container being used in Tour de flex

2010-05-20 Thread Angelo Anolin
On top of this, would Adobe / Flex team release the actual source codes for this application? This would be a great place to learn a lot more on Flex. angeLo From: bhaq1972 mbha...@hotmail.com To: flexcoders@yahoogroups.com Sent: Thu, 20 May, 2010 8:21:06

[flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
Hi FlexCoders, I am a bit stumped on this. I have a ComboBox change event which I want to call from a textchanged event of a text input. The ComboBox has an event parameter which I have no idea how to declare from the textchanged event of the text input. So how do I call the changed event of

Re: [flexcoders] init, creationcomplete and other events

2010-05-19 Thread Angelo Anolin
and other events Preinitialize, initialize, creationComplete, applicationComplete . Objects do not have a stage until applicationComplete . On 5/18/10 3:22 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, Does anyone have a link on which event fires up first

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
...@gmail.com To: flexcoders@yahoogroups.com Sent: Wed, 19 May, 2010 8:53:43 Subject: Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event On Wed, May 19, 2010 at 8:38 AM, Angelo Anolin angelo_ano...@yahoo.com wrote: I have a ComboBox change event which I want

[flexcoders] Weird DateField Behavior in Title Window

2010-05-19 Thread Angelo Anolin
Dear FlexCoders, I have a title window where I have a datefield and button control declared as follows: mx:DateField id=dateFieldTest formatString=DD/MMM/ change=dateFieldTest_Change(DateField(event.target).selectedDate) / mx:Button id=btnTest label=Test click=btnTest_Click(event) / and

Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event

2010-05-19 Thread Angelo Anolin
: Re: [flexcoders] Calling a ComboBox Change Event from TextInput TextChanged event On Wed, May 19, 2010 at 10:01 AM, Angelo Anolin angelo_ano...@yahoo.com wrote: What I mean is that the change event would be dispatched (or executed) by the textinput change event. Instead of attempting

Re: [flexcoders] Re: Generic Function To Set ComboBox Item

2010-05-19 Thread Angelo Anolin
in an XMLListCollection differently than in an ArrayCollection? So rather than... var item:String = dataProv.getItemAt(i).dpID; it would be var item:String = dataProv.getItemAt(i)@dpid; Try doing a debug of your code and see what is being returned also. --- In flexcoders@yahoogroups.com, Angelo Anolin

[flexcoders] Generic Function To Set ComboBox Item

2010-05-18 Thread Angelo Anolin
Hi FlexCoders, I would want to create a generic function to be able to set a ComboBox item. The function I have goes like this: private function selectComboItem(itemID:String, dataProv:XMLListCollection, cmb:ComboBox, dpID:String) :void { for (var i:int = 0; i dataProv.length; i++) {

[flexcoders] init, creationcomplete and other events

2010-05-18 Thread Angelo Anolin
Hi FlexCoders, Does anyone have a link on which event fires up first? For example, in an application container, which event fires up and any other pointers which I have to be aware of. Thanks. Angelo

Re: [flexcoders] XML List Collection Filter Function

2010-05-17 Thread Angelo Anolin
From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Fri, 14 May, 2010 12:09:50 Subject: Re: [flexcoders] XML List Collection Filter Function Post the XML and the filterfunction On 5/14/10 8:54 AM, Angelo Anolin angelo_anolin

Re: [flexcoders] XML List Collection Filter Function

2010-05-17 Thread Angelo Anolin
( ).toLowerCase( ).indexOf( tiSearch. text.toLowerCase ()) != -1; On 5/17/10 6:56 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi Alex, The XML being returned by the web service is as follows: NewDataSet Table EmployeeID123/EmployeeID EmployeeFirstNameLebron/EmployeeFirstName

[flexcoders] Remove Validation Highlight

2010-05-14 Thread Angelo Anolin
Hi FlexCoders, How do you remove the highlight to a textinput field which is rendered by a validator when the validation failed? Thanks. Angelo

[flexcoders] XML List Collection Filter Function

2010-05-14 Thread Angelo Anolin
Hi FlexCoders, For some reason, I do not know why my filter function being applied to an XML list collection does not filter those fields that are email addresses. Is this a bug or something? I traced the filter function and it is returning a true or false value depending on the index of the

Re: [flexcoders] Remove Validation Highlight

2010-05-14 Thread Angelo Anolin
:47 AM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi FlexCoders, How do you remove the highlight to a textinput field which is rendered by a validator when the validation failed? Thanks. Angelo

Re: [flexcoders] Re: XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-05-01 Thread Angelo Anolin
not notice over plain Object, but the data is now strongly-typed so the compiler will catch you if you type the property name incorrectly. And someday if you convert to RemoteObject/ AMF, you’ll already have a data class ready to go. On 4/30/10 10:54 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote

Re: [flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-04-30 Thread Angelo Anolin
Just my 2 cents. The way I see it, I'd rather focus on creating better, bigger and greater applications with Adobe/Flex which my users/customers will love rather than sulk in a corner because some guy is imposing his stupidity on what I can provide. From:

Re: [flexcoders] Re: XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-04-30 Thread Angelo Anolin
XMLDecoder to do it, but sometimes it is more efficient just to write your own converter. On 4/29/10 7:50 PM, Angelo Anolin angelo_anolin@ ... wrote: Any link to show us some samples? My data is coming from a .NET backend and most of it are in XML format and parsed

Re: [flexcoders] XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-04-29 Thread Angelo Anolin
Any link to show us some samples? My data is coming from a .NET backend and most of it are in XML format and parsed into XMLListCollection. Would appreciate some more info on this. THanks. From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-19 Thread Angelo Anolin
] ); } } By subclassing you don’t have to assign the labelFunctions to the columns that need them. On 4/16/10 2:12 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote: Hi Alex, Appreciate if you could show a little example. Thanks. Angelo From:Alex Harui aha

Re: [flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread Angelo Anolin
to find out which button dispatched the event (hint: Add a breakpoint in your handler and check the event.target and event.currenttarget properties). --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Valdhor, Care to show some examples? Or some links? Thanks

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread Angelo Anolin
: Amy amyblankens...@bellsouth.net To: flexcoders@yahoogroups.com Sent: Fri, 19 March, 2010 9:13:38 Subject: [flexcoders] Re: Reuse a LabelFunction   --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have created a labelfunction which I use in my

Re: [flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread Angelo Anolin
Propagation( );                 Alert.show( Button Clicked, event.target. label);             }         ]]     /mx:Script     appButtonComponent: ButtonComponent id=myButtonCompone nt/ /mx:Application --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Valdhor, Thanks

Re: [flexcoders] DataGrid vs List ?

2010-04-16 Thread Angelo Anolin
Nick, Just my thought. I believe rendering datagrid is much slower than a list even if it is only for a single column. Angelo   From: Nick Middleweek n...@middleweek.co.uk To: flexcoders@yahoogroups.com Sent: Fri, 16 April, 2010 9:49:03 Subject:

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread Angelo Anolin
ups.com mailto:flexcoders% 40yahoogroups. com , Angelo Anolin angelo_anolin@ ... wrote: Hi Amy, But as you can see in the function, I am specifying the Datafieldname from the object which was passed. How can I make it more generic so that I can re-use it in other datagrid columns?  I

Re: [flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread Angelo Anolin
...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Valdhor, Wouldn't it be enough to set the click event on the appButtonComponent' s MXML declaration, like: click=myButtonComp onent_Click( event) I think I am missing a point here but could you please elaborate further why

[flexcoders] MXML Component Call Event in Parent

2010-04-15 Thread Angelo Anolin
Hi FlexCoders, I have created a component consisting of some buttons which I am using in another MXML component. How would I trigger from the parent component an event which was done inside the component.  For example, I clicked on a button on the component which I embedded, that should map

Re: [flexcoders] Re: MXML Component Call Event in Parent

2010-04-15 Thread Angelo Anolin
the event is set to bubble. Once it has, the event should bubble up the chain to the parent where an event listener should catch it. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have created a component consisting of some buttons which I am using

[flexcoders] iwobanas MDatagrid Control

2010-04-14 Thread Angelo Anolin
Has anyone here already used Iwo Banas MDatagrid control?   I am having problem when I try to use an XMLListCollection as my data provider for the MDatagrid.   Using an ordinary datagrid, the data contained in my XMLListCollection is displayed.   My XMLListCollection is defined as:  

[flexcoders] Looking for Simple Flash Detection script

2010-04-07 Thread Angelo Anolin
Dear FlexCoders, Is there an easy way to run a detection script to detect if Flash Player is installed on a browser? I have tried numerous javascripts / vbscripts / etc but most of them does not seem to work in my case. I also tried this site:

[flexcoders] Re-Compiling MXML with Flex 4 (Before I Used Flex 3.X)

2010-03-26 Thread Angelo Anolin
I am in the process of re-compiling some of the MXML files I have done using Flex 4 from Flex 3.  So far, some of my source codes have compiled properly, and most of them simply trigger an error when it comes to the backgroundGradientColors of the application container.  Other than that, I am

Re: [flexcoders] Re-Compiling MXML with Flex 4 (Before I Used Flex 3.X)

2010-03-26 Thread Angelo Anolin
and I believe the backgroundGradient is no longer applicable there but still is on halo. -Jake On Fri, Mar 26, 2010 at 2:44 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote:   I am in the process of re-compiling some of the MXML files I have done using Flex 4 from Flex 3.  So far, some of my

Re: [flexcoders] Re-Compiling MXML with Flex 4 (Before I Used Flex 3.X)

2010-03-26 Thread Angelo Anolin
to be the default.  Now the default is spark which is the visual change and I believe the backgroundGradient is no longer applicable there but still is on halo. -Jake On Fri, Mar 26, 2010 at 2:44 PM, Angelo Anolin angelo_anolin@ yahoo.com wrote:   I am in the process of re-compiling some of the MXML files

[flexcoders] Reuse a LabelFunction

2010-03-17 Thread Angelo Anolin
Hi FlexCoders, I have created a labelfunction which I use in my datagrid to format the display value. mx:DateFormatter id=df formatString=DD/MM/ / And this is the AS function private function labelFunctionTest(itm:Object, col:DataGridColumn) :String {     return

Re: [flexcoders] Re: Reuse a LabelFunction

2010-03-17 Thread Angelo Anolin
mailto:flexcoders% 40yahoogroups. com , Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have created a labelfunction which I use in my datagrid to format the display value. mx:DateFormatter id=df formatString=DD/MM/ / And this is the AS function private function labelFunctionTest

Re: [flexcoders] Re: Reuse a LabelFunction

2010-03-17 Thread Angelo Anolin
@yahoogroups.com Sent: Wed, 17 March, 2010 14:41:19 Subject: [flexcoders] Re: Reuse a LabelFunction Use an itemRenderer instead. If you need help creating one, let me know. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I have created

Re: [flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-16 Thread Angelo Anolin
This is quite a preposterous proposition. 15 million records and user can view 100 records at a time? 15million divided by 100 equates to 150,000 thumb movement. assuming a thumb movement of even 5 times per second, it would still take 30,000 seconds or roughly 8.33 hours assuming your user is

Re: [flexcoders] Compiler Not Reporting Errors

2010-03-16 Thread Angelo Anolin
have you tested if the command line sdk compiler would not throw out any compiler errors as well? How about downloading the latest flex3 sdk and trying again, both using FB and the command line compiler? angeLo From: okie_174 rj...@intertech-usa.com To:

[flexcoders] Context Menu

2010-03-01 Thread Angelo Anolin
Hi FlexCoders, Has anyone implemented a right mouse click context menu which contains sub-menu items?  I have been able to create a datagrid control with right mouse menu and the context menu I have defined appears, but I have no idea on how to implement one which contains sub-menu. Any

[flexcoders] Accessing checkbox inside a Datagrid ItemRenderer

2010-02-26 Thread Angelo Anolin
Hi FlexCoders, Having some troubles trying to resolve this. I hope someone can give me guidelines on how I would be able to achieve this. I need to reference a checkbox inside the datagrid. Below please find some codes I have used. mx:DataGrid id=dgCurrentTasks width=100% height=100%

[flexcoders] Embedded Flash in ASP.Net Page

2010-02-25 Thread Angelo Anolin
Hi FlexCoders, I am using ASP.Net as my server technology in development of Flex apps. When I embed the Flash (swf file) into my ASP.Net page and set the height to percentage (say 100% or 80%), the flash object is like cut off at the middle.  Setting it to a numeric value, say 1000, the flash

Re: [flexcoders] Embedded Flash in ASP.Net Page

2010-02-25 Thread Angelo Anolin
on your web server and between the BODY tags put similar code that can be found on Step 4 of this link: http://www.w3school s.com/flash/ flash_inhtml. asp See what happens then... HTH, Nick On 25 February 2010 16:53, Angelo Anolin angelo_anolin@ yahoo.com wrote

Re: [flexcoders] Re: A popupbutton without arrow?

2010-02-19 Thread Angelo Anolin
Mind sharing your code / scripts? Thanks. From: Leonardo Camargo camargoleona...@gmail.com To: flexcoders@yahoogroups.com Sent: Tue, 19 January, 2010 11:06:03 Subject: Re: [flexcoders] Re: A popupbutton without arrow? Yep! But I had already figured it out

Re: [flexcoders] Merry christmas

2009-12-24 Thread Angelo Anolin
Merry Christmas to Everyone in this group. A group which am very thankful because I learned a lot and still learning a lot more. Happy Holidays. Angelo From: Yesaya yongha...@gmail.com To: flexcoders@yahoogroups.com Sent: Thu, 24 December, 2009 16:48:49

[flexcoders] Adobe Flex 4 Beta In A Week Videos RSS Link

2009-12-13 Thread Angelo Anolin
Could someone post me the RSS link for the Adobe Flex 4 Beta In A Week training video? The link for the page is here: http://www.adobe.com/devnet/flex/videotraining/flex4beta/ But I want to add it to my Adobe Media Player so that I could stream the video and download them to my PC for

Re: [flexcoders] Using Flex and Vb.Net

2009-10-27 Thread Angelo Anolin
You can use Flex for the UI (front-end) and the server side processing using VB.Net. Your VB.Net comes to the picture as web/http services. Although I only began doing the same a few months back, I must say that it's darn pretty good rather than creating a web app using static HTML/ASP.Net

Re: [flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-25 Thread Angelo Anolin
Could you try this one in your resultHandler private function resultHandler( event:ResultEven t):void { var xmlResult:XML = XML(event. result); var Employees:XMLListCollection = new XMLListCollection( xmlResult.table( )); trace(Employees) ; } From:

Re: [flexcoders] Re: Delay / Pause between script executions

2009-10-23 Thread Angelo Anolin
{ timerLabel.text = messages[labelTimer .currentCount % messages.length] ; } ]] /mx:Script mx:Label id=timerLabel text=This is my first message/ /mx:Application HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Flexcoders

Re: [flexcoders] Search Suggestion

2009-10-23 Thread Angelo Anolin
You're probably looking for AutoSuggest.. One example: http://sherifabdou.com/2008/03/autosuggest-flex/ http://www.sherifabdou.com/FlexAIRExamples/AutoSuggest/AutoSuggestExample.swf And another one: http://elromdesign.com/blog/Flex/API/AutoSuggest/

[SOLVED] - [flexcoders] Re: Delay / Pause between script executions

2009-10-23 Thread Angelo Anolin
) { labelTimer.stop( ); } timerLabel.text = messages[(labelTime r.currentCount - 1) % messages.length] ; } ]] /mx:Script mx:Label id=timerLabel / /mx:Application --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Steve

[flexcoders] Delay / Pause between script executions

2009-10-22 Thread Angelo Anolin
Hi Flexcoders,   I know this may sound very elementary but I cannot figure the hell out of me how to achieve this.   I have a label control.  I want to display different messages after every 5 seconds, such as:   myLabel.text = This is my first message // Need to delay for about 5 seconds here  

Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Angelo Anolin
Agha, You need to use Itemrenderer to render your checkbox control inside your gridview: mx:DataGridColumn headerText=Testing width=100 textAlign=center   mx:itemRenderer     mx:Component   mx:CheckBox label=Test change=outerDocument.checkbox_changed() /     /mx:Component   /mx:itemRenderer

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-13 Thread Angelo Anolin
AND changing the chart type at run-time, there may not be a simple MXML-only solution. -Eddie B. --- In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Eddie, Thanks for the link. I tried to emulate the example as you have provided in the link but it seems that when I

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-11 Thread Angelo Anolin
for us. You may be luckier depending on your needs. -Eddie B. http://www.edberman .com  ---  In flexcod...@yahoogro ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi Eddie, Thanks for the pointers. Care to show some sample code on how I may be able to achieve extending the ColumnChart. as? I

[flexcoders] ColumnChart LineSeries Bug?

2009-10-10 Thread Angelo Anolin
Hi FlexCoders, I wonder if any of you came up with this bug in ColumnChart. In my ColumnChart, I have the following MXML: ComboBox dataProvider={['overlaid','clustered','stacked','100%']} id=stackType selectedItem=clustered / ColumnChart id=myChart2 type={stackType.value} showDataTips=true

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-10 Thread Angelo Anolin
ups.com, Angelo Anolin angelo_anolin@ ... wrote: Hi FlexCoders, I wonder if any of you came up with this bug in ColumnChart. In my ColumnChart, I have the following MXML: ComboBox dataProvider= {['overlaid' ,'clustered' ,'stacked' ,'100%']} id=stackType selectedItem= clustered

Re: [flexcoders] Re: Adobe Flex Dashboard

2009-10-09 Thread Angelo Anolin
...@... wrote: Angelo Anolin wrote: Hi Paul, I looked at the StateManager. as file and in the line which Vivian pointed out, this is it: private static var sharedObject: SharedObject = SharedObject. getLocal( com.esria. sample.dashboard ); So, how do I know which

[flexcoders] Flex 3 4 Compatibility

2009-10-09 Thread Angelo Anolin
Hi Flexcoders, I have somewhat a non-technical question and these question is actually raised on those who have a lot of experience in development with Flex. I have been dabbling a lot with Flex 3.4 (using Command Line Compiler and FlexBuilder) and there is one project which I am currently

Re: [flexcoders] Adobe Flex Dashboard

2009-10-07 Thread Angelo Anolin
  Angelo Anolin wrote: Thanks a lot for pointing this one out Vivian. Although I still cannot fathom how the SharedObject is retained even after the application (SWF) is recompiled. I even did a restart of the machine and the settings are still there. Isn't it being retained in some sort

[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

  1   2   3   >