[flexcoders] Re: Switching easing function at runtime

2008-01-24 Thread ddanone2
Watch this link, you can view the source code: http://blog.diaztorres.com/2007/06/customeasingfunctionexplorer/customeasingexplorer.html# Cheers Raul --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: I'm trying to build an easing explorer, so I can easily compare the

[flexcoders] Custom Easing Function Explorer

2007-06-04 Thread ddanone2
You can make your custom easing function to apply on effects at http://www.madeinflex.com/2007/06/03/custom-easing-function-explorer/ simple but usefull. Cheers

[flexcoders] chart and dataProvider

2006-11-18 Thread ddanone2
Using same sample from Adobe doc to show a chart but trying to load data with HTTPService. Don't know why it doesn't show anything. Please any suggestions, thanks. This is the XML file: ?xml version=1.0 encoding=iso-8859-1? data mes label='Enero' dia label='01/01/2006'

[flexcoders] Re: Calling DashboardIteration1 WebService - Explicit vs Binding

2006-08-02 Thread ddanone2
Hi Darren, i havent worked with WebServices and Cairngorm so sorry, but cant help you. --- In flexcoders@yahoogroups.com, Darren Houle [EMAIL PROTECTED] wrote: I've been messing with the DashboardIteration1 Cairngorm example from Alex Uhlmann's blog and I have a question about the

[flexcoders] DataGrid refresh problem

2006-07-31 Thread ddanone2
Let me explain the situation: I have a main mxml, on load it instances a Localconnection to permit others swf's establish a connection with it and receive data. I load one SWF (child) on main.mxml, it instances two Localconnection, one to connect to the main mxml and another to allow receiving

[flexcoders] Re: Answer to the most frequent problem...

2006-07-31 Thread ddanone2
Tom, i dont believe what i'm reading!!! Maybe you work for free??? There are a GREAT TEAM behind FLEX who need to earn money to make FLEX bigger. BTW, I would like to know how many people has purchased Flex, i'm one of them. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED]

[flexcoders] Re: Answer to the most frequent problem...

2006-07-31 Thread ddanone2
BTW, I would like to know how many people has purchased Flex, i'm one of them. As of 7:34pst exactly 10,956 copies. Just kidding :) Hank GREAT!! How did you know that? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] Re: DataGrid refresh problem

2006-07-31 Thread ddanone2
. ;) --- In flexcoders@yahoogroups.com, Dima Ulich [EMAIL PROTECTED] wrote: Everything should work fine. Can you send the code to look at? - Original Message From: ddanone2 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 31, 2006 5:45:40 PM Subject: [flexcoders

[flexcoders] Re: Answer to the most frequent problem...

2006-07-31 Thread ddanone2
--- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: We made the SDK free because we want lots of developers using Flex regardless of whether they buy FlexBuilder or not. - Gordon Gordon, you know you are in the right way (I think), take a look to ZEND, maybe

[flexcoders] Re: php and flex

2006-07-30 Thread ddanone2
I dont use AMFPHP to comunicate with Flex, AMFPHP its a good solution but I prefer to make all server scripts by myself, also if you send a lot of registers to a datagrid in XML format the amount of bytes is too high, if you send registers in your propietry way you send less data but you have to

[flexcoders] DataProvider on DataGrid access by index

2006-07-30 Thread ddanone2
I fill the DataProvider of a DataGrid with an array, when the user selects a row i retrieve the selected row with selectedItem property. I want to get the value of each column not acessing by the dataField but acessing by an index, is that possible ? Thanks in advance -- Flexcoders Mailing

[flexcoders] Re: DataProvider on DataGrid access by index

2006-07-30 Thread ddanone2
--- In flexcoders@yahoogroups.com, howardescholz [EMAIL PROTECTED] wrote: Would selectedIndex work? --- In flexcoders@yahoogroups.com, ddanone2 nomejodas836@ wrote: I fill the DataProvider of a DataGrid with an array, when the user selects a row i retrieve the selected row with selectedItem

[flexcoders] Re: DataProvider on DataGrid access by index

2006-07-30 Thread ddanone2
[mydatagrid.selectedIndices][ fieldname ] ); } (Thanks to Felix) --- In flexcoders@yahoogroups.com, ddanone2 [EMAIL PROTECTED] wrote: I fill the DataProvider of a DataGrid with an array, when the user selects a row i retrieve the selected row with selectedItem property. I want to get the value of each

[flexcoders] Re: DataProvider on DataGrid access by index

2006-07-30 Thread ddanone2
; var thisColsVal = row[colProp]; } At 12:50 PM 7/30/2006, howardescholz wrote: Would selectedIndex work? --- In flexcoders@yahoogroups.com, ddanone2 nomejodas836@ wrote: I fill the DataProvider of a DataGrid with an array, when the user selects a row i retrieve the selected row