Re: [flexcoders] Understanding Custom Event Creation

2008-06-15 Thread Michael Schmalle
Right Eric, this was a quick and dirty example. Another thing to note: Event bubbling is dangerous. Only make your event bubble if it is absolutely necessary. I have made some big components and learned the hard way. :) This is just my opinion but event bubbling almost breaks OOP

[flexcoders] Re: Split up data inside itemrenderer

2008-06-15 Thread pioplacz
Here is my main mxml file: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; height=100% layout=absolute creationComplete=startupServices() xmlns:lib=flexlib.containers.* styleName=ListItems xmlns:view=view.* verticalGap=0 !-- Call the XML list

Re: [flexcoders] Understanding Custom Event Creation

2008-06-15 Thread Josh McDonald
That's a pretty broad statement to make. I think bubbling system-wide events are a great way to achieve loose coupling between UI and business code. But then again if you're listening for a NewUserCreated event, your function should be expecting a NewUserCreatedEvent, not an Event. -Josh On Sun,

[flexcoders] [BlazdeDS] setting concurrency property through actionAcript

2008-06-15 Thread levani dvalishvili
Hi all, in this document : http://livedocs.adobe.com/blazeds/1/blazeds_devguide/help.html?content=rpc_07.html it says you can You can set the concurrency property on a RemoteObject component's mx:method tag but I don't use method tag, does that mean I cant set concurrency to be last ? how

[flexcoders] Printing full page w/ no margins

2008-06-15 Thread Josh Millstein
Does anybody know why I can't get anything to print in the bottom or right margins of my flexPrintJob? When I preview (and print) any components they end up begin flush with the upper and left sides of the paper with a significant margin on the bottom and right margins. The only think I can do

Re: [flexcoders] Understanding Custom Event Creation

2008-06-15 Thread Michael Schmalle
Didn't mean it to be 'broad'. I agree but there are still problems with it. Mike On Sun, Jun 15, 2008 at 8:53 AM, Josh McDonald [EMAIL PROTECTED] wrote: That's a pretty broad statement to make. I think bubbling system-wide events are a great way to achieve loose coupling between UI and

RE: [flexcoders] Re: Split up data inside itemrenderer

2008-06-15 Thread Tracy Spratt
You can't do complex assignments outside of a function, because of the way the mxml is compiled into the as class. Override the set data() function and store your data in a local var, then call invalidateProperties(). Then do your work in a commitProperties override. Tracy

[flexcoders] fisheye dataprovider change

2008-06-15 Thread sudha_bsb
Hi, I am doing this adding of images and removal of images at run time to the fisheye data provider. While adding the images fisheye works fine but after removal of one of the items...the fisheye doesn't adjust itself so that all the images occupy the space availableThe removed image space is

Re: [flexcoders] Re: HTTPService Bug

2008-06-15 Thread Brent Dearth
I wrote about DTO serialization and object instantiation, awhile back. Relies on ObjectTranslator, along with xmlDecode: http://booleanbetrayal.com/2007/05/18/httpservice-xmldecode-objecttranslator-and-rabidsquirrels/ Hope that helps. On Thu, Jun 12, 2008 at 12:34 AM, Alex Harui [EMAIL

[flexcoders] fisheye dataprovider change

2008-06-15 Thread rambabu
Hi, I am doing this adding of images and removal of images at run time to the fisheye data provider. While adding the images fisheye works fine but after removal of one of the items...the fisheye doesn't adjust itself so that all the images occupy the space availableThe removed image space is

[flexcoders] Flex Server option suddenly disabled?

2008-06-15 Thread flexcoderman
i went to open and begin work on my project and now flex server option is disabled? its doing everything on a local file ... all i did was open the project but some how it no longer references a server location etc for me to validate under flex properties/ server please help

[flexcoders] Newbie help with Flex Builder CS3

2008-06-15 Thread brucewhealton
Hello all, I have to say that this relates to some very basic things that I guess I don't yet have a good handle on yet. Ok, the first issue relates to a problem I am having with the Flash Player. I did address the issue previously on this list of not having the correct Flash Player,

[flexcoders] Flex Newbie help - part 2 - related problems

2008-06-15 Thread brucewhealton
Anyway, the reason this trouble started was because I was trying to test out a dataGrid that was to be populated by an xml file. I was following a training video on the site Lynda.com It ran fine on the video but when I tried that out it said that there was a problem related to accessing the

[flexcoders] Flex Newbie help - part 2 - related problems

2008-06-15 Thread brucewhealton
Sorry, please ignore the prior posting as it went before I had a chance to edit it clearly. This is a very depressing problem to run into as I thought I was moving on nicely with learning Flex. Also, I'm not entirely sure how to describe what is going on, which makes finding a solution rather

[flexcoders] Re: [ANN] Flex-mojos 1.0-RC4

2008-06-15 Thread Marvin Froeder
Flex-mojos 1.0 final is out. Have the same Rc4 content. http://blog.flex-mojos.info/2008/06/16/10-final/ I hope every one enjoy it. VELO On Fri, Jun 13, 2008 at 12:13 AM, Marvin Froeder [EMAIL PROTECTED] wrote: Hi guys, Final flex-mojos RC for 1.0. Almost all reported issues fixed.

[flexcoders] Re: Newbie help with Flex Builder CS3 - update

2008-06-15 Thread brucewhealton
Hello all, For reasons I cannot understand, this problem is somewhat fixed. What I mean is that the application using a DataGrid which pulls in data from an XML file is working in Firefox browser. It is not working in Internet Exployer, which instead keeps telling me that I need the

[flexcoders] Re: Flex Server option suddenly disabled?

2008-06-15 Thread flexcoderman
turns out its in the bugs listings http://bugs.adobe.com/jira/browse/FB-12197

[flexcoders] Re: closing and reopening windows in Air App

2008-06-15 Thread Omar Fouad
Why no one is answering? On 6/13/08, Omar Fouad [EMAIL PROTECTED] wrote: Hi list, I got a small application that opens a window. I used another mxml (AboutWindow.mxml) file that has mx:WIndowBla bla blamx:WIndow/ in it. In the Main mxml file I have a button and when I click to this button I

[flexcoders] Re: Flex Css Html Css

2008-06-15 Thread makar
hi I also use this really helpfull method, and I found a limit (or flex bug?) with this: I use it in a popup window, that I display as a canvas via a state change. it's a very simple component with my canvas, and Vboxes, labels, etc... wherever I use my repeated background in this component, it

Re: [flexcoders] Re: closing and reopening windows in Air App

2008-06-15 Thread Bjorn Schultheiss
how are you closing it? On 16/06/2008, at 9:00 AM, Omar Fouad wrote: Why no one is answering? On 6/13/08, Omar Fouad [EMAIL PROTECTED] wrote: Hi list, I got a small application that opens a window. I used another mxml (AboutWindow.mxml) file that has mx:WIndowBla bla blamx:WIndow/ in

[flexcoders] Cinematically Animated Charts; Speed issues?

2008-06-15 Thread Aldo Bucchi
Hi guys, Just wondering. Has anyone tried to create animated visualizations with the Flex charting framework? I am trying to create some Rosling-style visualizations[1] for some financial data ( personal ) to see if I can reveal something interesting. The question I have and would like to answer

[flexcoders] Re: Flex Css Html Css

2008-06-15 Thread Bjorn Schultheiss
Have you seen degrafa? You can do all this via CSS. http://blog.benstucki.net/?p=46 --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Well.. you can't really unless you create a custom skin. There are some open source stuff out there that allows you to use a

Re: [flexcoders] LCDS gets Killed !!!

2008-06-15 Thread Chitra S.Pai
Hi Jitendra and Seth, Thank you for your valuable suggestions. I am trying it out. Now I can access the Java code through LCDS and is working fine. But we don't know why exe is not executing. But it is fine we are debugging it out... Thank you once again.. Chitra On Fri, Jun 13, 2008 at

RE: [flexcoders] Firefox 3 and Flex Debug Not Working ?

2008-06-15 Thread Alex Harui
OK, file a bug. Bugs.adobe.com/jira. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Walters Sent: Saturday, June 14, 2008 8:39 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Firefox 3 and Flex Debug Not Working ?

RE: [flexcoders] Re: Help me understand custom drag/drop events

2008-06-15 Thread Alex Harui
Why not just set a flag instead of calling preventDefault, then check the flag afterwards. BTW, you shouldn't be dispatching COLLECTION_CHANGE yourself. Best to use itemUpdated when changing quantity. A COLLECTION_CHANGE will fire when the default code inserts the dropped items.

RE: [flexcoders] Error #2025: The supplied DisplayObject must be a child of the caller

2008-06-15 Thread Alex Harui
Makesure mainWindow is the right parent. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of guillaumeracine Sent: Saturday, June 14, 2008 10:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Error #2025: The supplied DisplayObject