[flexcoders] Re: [help needed] display data in tile window component..(flex + amfphp)

2009-12-28 Thread valdhor
So, I assume your custom component is a detailInfoWin ? if so, you need to pass the data in to this new component. If the code at the end of your post is part of this component, then you can do something like... infoWin.myarray = [data to pass in] after you create the new instance --- In flexc

[flexcoders] Access Checkbox ItemRenderer in AdvancedDataGrid

2009-12-28 Thread Matthew
Hi - I have a button outside an AdvancedDataGrid. On the click event, I want to find which of my checkbox item renderers are selected. For some reason, I can't figure out. Here's my code below. Any tips are greatly appreciated. Thank you!

[flexcoders] Re: Access Checkbox ItemRenderer in AdvancedDataGrid

2009-12-28 Thread Matthew
Sorry, I just answered my own question It appears that you should never be able to access an ItemRenderer directly. If I want to find out that a checkbox is selected then I must listen for that event in the ItemRenderer and then set a value on the 'data' property. Then, the dataProvider is

Re: [flexcoders] IE6 + SSL + Flex

2009-12-28 Thread Julian Alexander
Dear Venkat, Thanks for the direction, but unfortunately that just made it worse. Any other ideas? -Julian From: venkateswarlu naidu To: flexcoders@yahoogroups.com Sent: Sat, December 26, 2009 10:43:39 PM Subject: Re: [flexcoders] IE6 + SSL + Flex If y

[flexcoders] rewriting a function using prototype?

2009-12-28 Thread mitchgrrt
We have a situation where some ActionScript classes are automatically generated by an Ant script. So we can't edit them because they are regenerated on each build. I want to make one function in one of these classes behave differently. If I had normal source code editing available, I could just a

Re: [flexcoders] rewriting a function using prototype?

2009-12-28 Thread Paul Andrews
mitchgrrt wrote: > > > We have a situation where some ActionScript classes are automatically > generated by an Ant script. So we can't edit them because they are > regenerated on each build. > > I want to make one function in one of these classes behave > differently. If I had normal source co

Re: [flexcoders] line breaks in htmlText

2009-12-28 Thread David Pariente
Not sure if you already got an answer. Try using -- David Pariente RIA consultor -- El 23/12/2009, a las 17:04, Joel Stransky escribió: Ok, htmlText seems to be even worse in Flex and I didn't think it could be much worse. I'm trying to

[flexcoders] Re: rewriting a function using prototype?

2009-12-28 Thread mitchgrrt
In the generated classes there's a hierarchy. The one with the function I want to override is a base class of another class. If I extend and override, the other classes in the hierarchy won't get my fix. --- In flexcoders@yahoogroups.com, Paul Andrews wrote: > > How about extending the Ant ge

[flexcoders] Making Flash Animations

2009-12-28 Thread Christophe
Hello, Is it possible to make basics animations with Flex for inclusion in a php web site ? (Because I don't know Flash). Thank you, Christophe,

[flexcoders] Pie chart with resizable slice ?

2009-12-28 Thread Dharmendra
Hello All, Is it possible to create a pie chart with re-sizable slice.. ie user should be able to decrease and increase the area of any slice by just using mouse drag. If I increase area of any particular slice, other adjacent slice should automatically get reduced. Please provide me some po

RE: [SPAM] [flexcoders] Making Flash Animations

2009-12-28 Thread Tracy Spratt
Yes. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Christophe Sent: Monday, December 28, 2009 1:05 PM To: flexcoders@yahoogroups.com Subject: [SPAM] [flexcoders] Making Flash Animation

RE: [SPAM] RE: [SPAM] [flexcoders] Making Flash Animations

2009-12-28 Thread Tracy Spratt
Actually I might have misunderstood your question. Can you be more specific? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Tracy Spratt Sent: Monday, December 28, 2009 1:32 PM To:

[flexcoders] Re: line breaks in htmlText

2009-12-28 Thread mitchgrrt
You may have to escape the "<" and ">" htmlText="line1
line2" either that or put it inside CDATA --- In flexcoders@yahoogroups.com, David Pariente wrote: > > Not sure if you already got an answer. > Try using > > -- > David Pariente > RIA consultor >

RE: [SPAM] [flexcoders] Re: Access Checkbox ItemRenderer in AdvancedDataGrid

2009-12-28 Thread Tracy Spratt
You got it. The reason is that item renderers only exist for the visible rows, and are re-cycled when you scroll, or the data changes. Attempting to get data out of a renderer is like trying to taste Emeril's cooking by licking the tv screen. Tracy Spratt, Lariat Services, development servic

[flexcoders] Re: Pie chart with resizable slice ?

2009-12-28 Thread invertedspear
I don't see why you couldn't do this. You would have to use some custom mouse events that would change the data in your data provider. Not sure of the details but the process would go something like: onMouseDown: figure out which pie slice(and which item in the dataprovider) to change onmouse

[flexcoders] Jagoan invites you to connect

2009-12-28 Thread Jagoan via Yahoo!
Join Jagoan on Yahoo! Messenger. Come chat with me, share files and more. Stay in the loop with all your friends. Get started : http://invite.msg.yahoo.com/invite?op=accept&intl=us&sig=SB4zP.6h3RfxNiQ6qXCFduW9BmtJ6r392y8vUlKHHqKj_tvy0pzW * Stay connected at home, at work, or on the go * Have fu

RE: [SPAM] [flexcoders] Pie chart with resizable slice ?

2009-12-28 Thread Tracy Spratt
The core idea will be to update the dataProvider of the pie chart on mouse drag. The basics of that should be pretty simple, but I foresee some details you will need to handle, primarily the calculations regarding the mouse position to percentage calculation. I'd google this before starting.

Re: [flexcoders] IE6 + SSL + Flex

2009-12-28 Thread Guy Morton
Yes. Drop support for IE6. It has very little market share these days and is about the worst browser out there. Use a little browser detection javascript to tell users of IE6 it's time to update to something that isn't so crappy. Firefox, Google Chrome and Safari are all far better browsers tha

[flexcoders] Flex 3 Libraries - Copying into Flex Project Directory

2009-12-28 Thread richmcgillicuddy
In flex 3, if I have a flex project with a shared library in a source path (options - flex build path), sometimes the project will copy over everything below the flex project directory from the shared library. Where is this flag to stop this behavior? Rich

[flexcoders] Adding a custom UI component as a panel titleIcon.

2009-12-28 Thread invertedspear
This should be easy but I'm kind of a newbie. The concept of this seems easy, but I'm having trouble getting it right and can't find anything to help me on this. I have a panel I need to perform a drag and drop operation on, but I only want to perform that if the user mouses down on a particula

[flexcoders] Re: rewriting a function using prototype?

2009-12-28 Thread jamesfin
I've used this in this pasta bit more verbose but does the trick. http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="createJunk()"> package { public class junk1 { import mx.controls.Alert; public var dF1:Functi

[flexcoders] logging to server?

2009-12-28 Thread mitchgrrt
I've been reading the documents on Flex logging. It seems like there's a pretty good API for logging to the place where trace() calls go, or to a file on the client, or to the server if you're using one of the Flex data services like LCDS. I want to log some data and messages that will go to

RE: [flexcoders] Re: Using URLLoader with AsyncToken

2009-12-28 Thread Karthik Kailash
Hey James, Thanks for the pointer - I did check out anirudh's article before attempting to write my own. What are your thoughts on the code? Karthik Karthik Kailash | Product SocialVision, Online Television Becomes a Social Experience CELL . 408.768.7704 | WEB . www.socialvisioninc.

RE: [SPAM] [flexcoders] logging to server?

2009-12-28 Thread Tracy Spratt
Other than LCDS, there is no built-in server functionality, in order to preserve platform independence. However, basic server communications can be extremely simple. The HTTPService protocol is the simplest to use, unless you are comfortable with java/amf/remoteObject. WebService uses SOAP, w

Re: [flexcoders] Making Flash Animations

2009-12-28 Thread cholid cholid
course can I use a flash before knowing flex and I can only make things simple I think more cool flex What kind of animation you want to make? maybe i can help you --- On Mon, 12/28/09, Christophe wrote: From: Christophe Subject: [flexcoders] Making Flash Animations To: flexcoders@yahoogroups

Re: [flexcoders] IE6 + SSL + Flex

2009-12-28 Thread Julian Alexander
Dear Guy, While I generally see you're point, there are a few flaws in what you're saying: 1. Try saying that to a corporate executive who is expecting your software to work in his existing infrastructure and see how far you get. 2. It is a problem in all version of IE anyway, so if you used the

Re: [SPAM] [flexcoders] logging to server?

2009-12-28 Thread mitchgrrt
We have server side Java, and an existing XML/Web Services framework for communicating between Flex and Java. I'll add a logging interface. It shouldn't be hard, like you say. I just wanted to double check that I hadn't missed the chance to use something that's already built in. Thanks. - M

[flexcoders] AmfPhp Version Question

2009-12-28 Thread Dan Pride
The only download up on amfphp.org seems to be 1.9beta which is two years old??? Isnt' there anything since then ?? Thanks Dan pride

[flexcoders] remove expand option from tree node?

2009-12-28 Thread MicC
The xml file on which the tree is based goes many nodes deep. I need to disable the expand option/icon from most of the 3rd level nodes and all of the 4th level nodes. I was hoping for a nodeExpand="false" attribute that I could loop through the tree and apply but cannot find one. TIA, Mic.

[flexcoders] Re: remove expand option from tree node?

2009-12-28 Thread MicC
got it! Embedded isBranch="false" into the xml very cool. --- In flexcoders@yahoogroups.com, "MicC" wrote: > > The xml file on which the tree is based goes many nodes deep. I need to > disable the expand option/icon from most of the 3rd level nodes and all of > the 4th level nodes. I was h

[flexcoders] http request issue on linux

2009-12-28 Thread ynotob
I have the following http service defined I call it with the following code: var params:Object = new Object(); params.request = "action.list.user"; params.email = txtEmail.text; params.boson = new Date().getMilliseconds() // Added to prevent the result from being cached. httpListUser.send(par