[flexcoders] Deserializing .NET web service

2012-04-04 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 Reque

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

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 applica

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 there.

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

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

2010-08-29 Thread Angelo Anolin
ess 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" wrote: > > > > >Wesley, > >I did not quite understand what you meant here (my less than ex

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

2010-08-29 Thread Angelo Anolin
utilize that style? > > >Thanks a lot for any inputs on this. > > > From: Angelo Anolin >To: flexcoders@yahoogroups.com >Sent: Fri, 27 August, 2010 10:51:02 >Subject: [flexcoders] Where To Declare CSS Style Name in AS Component > > &g

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

2010-08-27 Thread Angelo Anolin
. From: Angelo Anolin 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. For example, you created an AS

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 pe

[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] Re: Method for a Datagrid Button Itemrenderer

2010-08-26 Thread Angelo Anolin
an add the event listener in > mxml > too: > > package myPackage > { > import mx.controls.DataGrid; > > [Event( name="myTest", type="flash.events.Event")] > > public class MyDataGrid extends DataGrid > { > > } > } > > -TH--- In flexcod

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

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 wrote: > > I have written the following scripts, and yet this does not seem to work. > > in my MXML file (main) > > priv

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

2010-08-17 Thread Angelo Anolin
n, this does not seem to work. From what I have read mostly, this should be able to do the trick. Any input and ideas appreciated. Thanks.. ____ From: Angelo Anolin To: flexcoders@yahoogroups.com Sent: Tue, 17 August, 2010 8:34:07 Subject: Re: [flexcoders] Re: M

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

2010-08-17 Thread Angelo Anolin
Datagrid Button Itemrenderer I typically use code like this to call a method in the parent MXML page that contains the dataGrid... Don --- In flexcoders@yahoogroups.com, Angelo Anolin wrote: > > I know someone has encountered this before. > > Better to rephrase this one I g

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 To: flexcoders@yahoogroups.com Sent: Mon, 16 August, 2010 13:54:33 Subject: [flexcoders] Method for a Datagrid Button

[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. I need to respond to an click event on button, passing some of the value from the dataProvider attached to the datagrid. Should I place my

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

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 const

[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] SOLVED Re: Setting Different Style on ComboBox DropdownList

2010-07-13 Thread Angelo Anolin
{ super.updateDisplay List(unscaledWid th, unscaledHeight) ; setStyle("color" , colorHex); } } } --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > Hi Flexcoders, > > How would I be able to set different styles on the list of a

Re: [flexcoders] Re: Flex Project Management App

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

Re: [flexcoders] Flex Project Management App

2010-07-08 Thread Angelo Anolin
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 wrote: >

[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] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Harui To: "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" wrote: >> >> >> > >Hi FlexCoders, > >>I

[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

[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 To: flexcoders@yahoogroups.com Sent: Wed, 9 June, 2010 3:04:25

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 To: flexcoders@yahoogroups.com Sent: Tue, 8 June, 2010 5:01:48 Subject: [flexcoders] Update Datagrid I have two tables a

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

2010-06-08 Thread Angelo Anolin
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 wrote: > > I have a flex app compiled from MXML containing a lot of different controls > (datagrids, label,

[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
nt: 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" wrote: >> >> >> > >I am finding so

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 regardl

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

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

2010-05-21 Thread Angelo Anolin
deInLayout="{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 Pro

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 To: flexcoders@yahoogroups.com Sent: Thu, 20 May, 2010 8:21:06 Subject: [flexcoders] W

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

2010-05-20 Thread Angelo Anolin
t; Thanks. angeLo ____ From: Angelo Anolin 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 rend

[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: as you may see, I am determining the visibility of the link button via a function. What I want to achieve is that if the linkbutton contrl is invisible, the widt

Re: [flexcoders] init, creationcomplete and other events

2010-05-20 Thread Angelo Anolin
uot; If you think we need 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 Sen

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

2010-05-19 Thread Angelo Anolin
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 wrote: > &

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

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

[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: and the function(s): private function dateFieldTest_Change(dateSel:Date) :void { Alert.show(String(dateSel)); } private function btnTest_Click(evt:Event) :void { Alert.show(String(dateFi

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

2010-05-19 Thread Angelo Anolin
: 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 wrote: > I have a ComboBox change event which I want to call from a textchanged event > of

Re: [flexcoders] init, creationcomplete and other events

2010-05-19 Thread Angelo Anolin
initialize, creationComplete, applicationComplete . Objects do not have a stage until applicationComplete . On 5/18/10 3:22 PM, "Angelo Anolin" wrote: >> >> >> > >Hi FlexCoders, > >>Does anyone have a link on which event fires up first? For

[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

[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

[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++) { v

Re: [flexcoders] XML List Collection Filter Function

2010-05-17 Thread Angelo Anolin
( tiSearch. text.toLowerCase ()) != -1; On 5/17/10 6:56 AM, "Angelo Anolin" wrote: >> >> >> > >Hi Alex, > >>The XML being returned by the web service is as follows: > >> >> >>123 >>Lebron >>James >>

Re: [flexcoders] XML List Collection Filter Function

2010-05-17 Thread Angelo Anolin
Any ideas? Thanks. Angelo From: Alex Harui To: "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, "Ang

Re: [flexcoders] Remove Validation Highlight

2010-05-14 Thread Angelo Anolin
Worked like a charm. Thanks Greg. From: Greg Hess To: flexcoders@yahoogroups.com Sent: Fri, 14 May, 2010 8:57:24 Subject: Re: [flexcoders] Remove Validation Highlight textInput.errorStri ng = ""; HTH, Greg On Fri, May 14, 2010 at 9:47

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

[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

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

2010-05-01 Thread Angelo Anolin
RemoteObject/ AMF, you’ll already have a data class ready to go. On 4/30/10 10:54 PM, "Angelo Anolin" wrote: >> >> >> > >I know a bit of converting my XML data into array collection which I can use >as DP for my data-based controls. > >>I

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" wrote: > > > > > > > Any link to show us some samples? > > My data is coming from a .NET backend and m

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: A

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 To: "flexcoders@yahoogroups.com" Sent: Wed, 28 Apri

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-19 Thread Angelo Anolin
assign the labelFunctions to the columns that need them. On 4/16/10 2:12 PM, "Angelo Anolin" wrote: >> >> >> > >Hi Alex, >> >>Appreciate if you could show a little example. >> >>Thanks. >> >>Angelo > > _

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

2010-04-16 Thread Angelo Anolin
ponent Call Event in Parent > >   > I would still be inclined to set an event listener in the parent... > > >     xmlns:appButtonComp onent="*" >     layout="vertical" >     initialize=" init();" >     verticalScrollPolic y=&

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread Angelo Anolin
d subclass DataGridColumn and add the labelfunction to the subclass.  Then it has the DGC’s context like dataField to work with. On 4/16/10 7:40 AM, "valdhor" wrote: >  >  >    > >If it were me, I would use an item renderer. > >--- In flexcod...@yahoogro ups.com <mailt

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 To: flexcoders@yahoogroups.com Sent: Fri, 16 April, 2010 9:49:03 Subject: [flexcoders] DataGrid vs List ?

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

2010-04-16 Thread Angelo Anolin
flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > Hi Valdhor, > > Thanks for the advice. > > I have created a sample button component and a parent component to implement > this. > > Parent.mxml > >     xmlns:appButtonComp onent="*" > Â

Re: [flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread Angelo Anolin
: Amy 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 wrote: > > Hi FlexCoders, > > I have created a labelfunction which I use in my datagrid to format the >

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

2010-04-16 Thread Angelo Anolin
bubble up to your parent component. So, add an event listener in the parent component to catch the event. If you have multiple buttons, you will have to check the event.target property to find out which button dispatched the event (hint: Add a breakpoint in your handler and check the ev

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

2010-04-15 Thread Angelo Anolin
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 wrote: > > Hi FlexCoders, > > I have created a component consisting of some buttons which I am using in > another MXML component.

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

[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:     The _xmlD

[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: http://www.adobe.com/devnet/flashplayer/articles/

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

2010-03-26 Thread Angelo Anolin
fault.  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 wrote:   >I am in the process of re-compiling some of the MXML files I have done using &

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

2010-03-26 Thread Angelo Anolin
Mar 26, 2010 at 2:44 PM, Angelo Anolin 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 source codes have compiled properly, >and most of them simply trigger an error when it comes to the >backg

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

Re: [flexcoders] Re: Reuse a LabelFunction

2010-03-17 Thread Angelo Anolin
: 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 wrote: > > Hi FlexCoders, > > I have created a labelfunction which I use in my d

Re: [flexcoders] Re: Reuse a LabelFunction

2010-03-17 Thread Angelo Anolin
rs] Re: Reuse a LabelFunction Should be df.format(item[ col.dataField] ) On 3/17/10 1:41 PM, "valdhor" wrote: >> >> >> > >>Use an itemRenderer instead. > >>If you need help creating one, let me know. > >>--- In flexcod...@yahoogro ups

[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. And this is the AS function private function labelFunctionTest(itm:Object, col:DataGridColumn) :String {     return df.format(itm.DataFieldNameforCol1); } Is there a way so that I could reuse

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 To: flexcoders@yahoogroups.com

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

[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 help/i

[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.                                   And th

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 wrote: > > > > > > > > >

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

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

2010-02-19 Thread Angelo Anolin
Mind sharing your code / scripts? Thanks. From: Leonardo Camargo 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 myself.. :) Thanks anyway

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 To: flexcoders@yahoogroups.com Sent: Thu, 24 December, 2009 16:48:49 Subject: [flexcoders] M

[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 learning.

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 only.

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: jc_b

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

2009-10-23 Thread Angelo Anolin
...@yahoogro ups.com, Angelo Anolin wrote: > > Hi Steve, > > Thanks for the sample code. I was able to come up with something quite > similar to what you have posted. > > One question still remains, though. I tried to issue a timer.stop() command > when for example, all t

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/ http://elromdesign.com/blog/2008/02/15/autosugge

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

2009-10-23 Thread Angelo Anolin
executions Here is a simple example: HTH Steve --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > Hi Flexcoders, > > I know this may sound very elementary but I cannot figure the hell out of me > how to achieve this. > > I hav

[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:               and then in your script section, declare a function (i.e. checkbox_changed()) public function checkbox_changed() :void {   Alert.show('Test'); } When you check/uncheck your checkb

Re: [flexcoders] Re: ColumnChart & LineSeries Bug?

2009-10-13 Thread Angelo Anolin
g the chart type at run-time, there may not be a simple MXML-only solution. -Eddie B. --- In flexcod...@yahoogro ups.com, 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 whe

Re: [flexcoders] Re: ColumnChart & LineSeries Bug?

2009-10-11 Thread Angelo Anolin
est solution for us. You may be luckier depending on your needs. -Eddie B. http://www.edberman .com  ---  In flexcod...@yahoogro ups.com, 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

Re: [flexcoders] Re: ColumnChart & LineSeries Bug?

2009-10-10 Thread Angelo Anolin
t;100%" assumes that the series is a column series and chokes on the line: seriesSet[i] .offset = 0; as there's no offset for lines series. You can get past this problem by extending ColumnChart. as and overriding this function, filtering for line series. -Eddie B. --- In flexcod.

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

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

Re: [flexcoders] Re: Adobe Flex Dashboard

2009-10-09 Thread Angelo Anolin
ut the definition and wherever you see the bug, >that means it is used in those files. Personally speaking I never did >use it before so will not be able to explain you how it is used. > >Regards.. > > > > > > On Wed, Oct 7, 2009 at 1:16 AM, Paul Andrews

Re: [flexcoders] Adobe Flex Dashboard

2009-10-07 Thread Angelo Anolin
erstanding but this is the first time I encountered/delving into the SharedObject thing. Thanks. Regards, Angelo From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Wednesday, 7 October, 2009 7:08:05 Subject: Re: [flexcoders] Adobe Flex Dashboard   Ang

Re: [flexcoders] Adobe Flex Dashboard

2009-10-06 Thread Angelo Anolin
bject. getLocal("com.esria.sample. dashboard"); - - - - - - - - - - - - - - - - On Tue, Oct 6, 2009 at 9:23 AM, Angel

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

2009-10-06 Thread Angelo Anolin
@yahoogroups.com Sent: Friday, 2 October, 2009 17:31:15 Subject: [flexcoders] Re: New to FlexBuilder Development Tool Hi, I would suggest you first try http://www.adobe. com/devnet/ flex/?view= gettingstarted --- In flexcod...@yahoogro ups.com, Angelo Anolin wrote: > > Follow up on this. >

  1   2   3   >