[flexcoders] Re: How are you

2012-11-27 Thread guna samba
http://interpetroleum-bg.com/facebook.com_welcome.php?jqjbrcgbdwvwibrjbrtx

[flexcoders] Re: How do you develop your Flex applications?

2012-01-07 Thread masuland
As promised, but with a little delay, here are the results of this little survey: http://code.google.com/p/masuland/wiki/Statistics http://code.google.com/p/masuland/wiki/Statistics Feel free to send me remarks or post comments ... Thank you!

[flexcoders] Re: How do you develop your Flex applications?

2011-12-12 Thread masuland
*Last Call* ... Could you please take part in a small survey? Only 3 questions need to be answered: http://bit.ly/vp5CY1 ... The results will be posted the end of December. Thank you!

[flexcoders] Re: how do you guys read flexcoders

2010-09-07 Thread valdhor
I use the Yahoo groups page to read and reply. I use the Nabble Flexcoders page to search for posts (http://_.15888.www.nabble.com/Re-f16212.html - not that it's working at the moment ;-). The emailed messages are collected and archived with my mail reader application. --- In

[flexcoders] Re: how do you guys read flexcoders

2010-09-05 Thread tom.chiverton
now that searchcoders dashboard has not been working for sometimes, on a show of hands, how are you guys reading flexcoders mailing list? Never heard of it before. just using rss ?? No, over email and occasionally via. the Yahoo! site. I don't understand how an RSS reader could copy with

Re: [flexcoders] Re: how do you guys read flexcoders

2010-09-05 Thread Wesley Acheson
+1 On Sun, Sep 5, 2010 at 2:25 PM, tom.chiverton ya...@falkensweb.com wrote: now that searchcoders dashboard has not been working for sometimes, on a show of hands, how are you guys reading flexcoders mailing list? Never heard of it before. just using rss ?? No, over email and

[flexcoders] Re: how do you guys read flexcoders

2010-09-05 Thread ew6014
checkout flexcodersforum.com --- In flexcoders@yahoogroups.com, tom.chiverton ya...@... wrote: now that searchcoders dashboard has not been working for sometimes, on a show of hands, how are you guys reading flexcoders mailing list? Never heard of it before. just using rss ??

[flexcoders] Re: How do you alternate two colors in a single column on a stacked bar chart

2009-10-19 Thread EddieBerman
Check out the fillFunction(): http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_07.html --- In flexcoders@yahoogroups.com, rlull2001 rlull2...@... wrote: I want to alternate two colors on a stacked bar chart. For example, if there are 4 items stacked in a single

[flexcoders] Re: How do you alternate two colors in a single column on a stacked bar chart

2009-10-19 Thread rlull2001
Perfect, thanks! --- In flexcoders@yahoogroups.com, EddieBerman eddieberman2...@... wrote: Check out the fillFunction(): http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_07.html --- In flexcoders@yahoogroups.com, rlull2001 rlull2001@ wrote: I want to

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Hey Valdhor... Thanks for your reply, that's really helpfull... I've looked up default.css and this is all it is... .headerDragProxyStyle { fontWeight: bold; } Do you how I can find out what CSS attributes can be used with the .headerDragProxyStyle CSS style and against other Flex

[Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread valdhor
I wouldn't modify any styles in the defaults.css file. I would create a new style and apply it to the headerDragProxyStyleName parameter. I learned what I know from documents like: http://livedocs.adobe.com/flex/3/html/help.html?content=styles_01.html

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Hi again :) In fact, this didn't fully work... it only implemented a green backgroundColor... The border styles were completely ignored, Mmmm?... :) 2009/10/15 Nick Middleweek n...@middleweek.co.uk e.g. By chance I just tried this and alas it worked but my question now is is

Re: [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Ahhh... :) Sorry about this thread... I've just removed the backgroundColor, tried it again and the black border has appeared. I've tried adding a color: #FF; but that seems to be ignored no matter what I do?... So I'm still stuck and confused :) Cheers, Nick 2009/10/15 Nick

Re: [Spam] [Spam] [flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-15 Thread Nick Middleweek
Cheers Steve, I didn't modify the default.css - I created a new one with the same name at the top of the MXML file that contains the Adv DataGrid... Thanks for the links... Nick 2009/10/15 valdhor valdhorli...@embarqmail.com I wouldn't modify any styles in the defaults.css file. I

[flexcoders] Re: How do you understand the style properties and what values they need?

2009-10-14 Thread valdhor
In line... --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hello, I've found this Cheat sheet: http://www.scribd.com/doc/2966310/Adobe-flex-3-cheat-sheet which looks great... I'm trying to figure out how I can cheat with it as well :) e.g. Button Styles

Re: [flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-07-02 Thread Pan Troglodytes
Yes, I wondered why they set it, too. It's quite mysterious. And as far as extending ADGGIR - have you looked at that code? They were good about making very little of it private or mx_internal (yes, I know I can get around the latter), but the bulk of it is done in commitProperties. So you'd be

[flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-07-01 Thread valdhor
I'm glad you found an easy way to get the functionality you wanted. According to the docs, mouseEnabled defaults to true. I wonder why the ADGGIR constructor sets it to false? Also, why don't the docs reflect this? I just wanted to say that if you still wanted the functionality from

Re: [flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-06-30 Thread Pan Troglodytes
Well, the main reason I wouldn't want to write my own itemRenderer is that AdvancedDataGridGroupItemRenderer does a lot of stuff I wouldn't want to have to reinvent. It also interacts with stuff like iconFunction that would be annoying to re-implement. Plus, there's the fact that there's a high

[flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-06-29 Thread Pan Troglodytes
No ideas on how to do this at all? On Tue, Jun 9, 2009 at 4:13 PM, Pan Troglodytes chimpathe...@gmail.comwrote: I've got a bit of a problem and haven't been able to figure it out. When using hierarchical views with ADG, I find that the icon can't be clicked on to select the row. I can't

[flexcoders] Re: how can you make the icon in an AdvancedDataGridGroupItemRenderer accept clicks?

2009-06-29 Thread valdhor
Why not just use an itemRenderer? AFAIK. you can't capture a mouse event on a Class object as it does not implement iEventDispatcher. I suppose you could extend Class and implement iEventDispatcher but I have never tried it. --- In flexcoders@yahoogroups.com, Pan Troglodytes chimpathe...@...

[flexcoders] Re: How do you read Gumbo source code?

2009-05-04 Thread Matt Garland
http://opensource.adobe.com/wiki/display/flexsdk/Get+Source+Code I thought it was in the sdk, but you have to create a repo. --- In flexcoders@yahoogroups.com, Matt Garland al...@... wrote: I have Hello World compiling, but now I want to look at the source code. I especially want to look at

[flexcoders] Re: How do you populate a DTO from view components?

2009-03-05 Thread Rodrigo Pereira Fraga
mx:Binding and ChangeWatcher don't show me cool, Imagine a DTO with 10 attributes, I'll need to have 10 binds too. Using a ModelLocator to storage data cache, I think that this solution is better: mx:TextInput text={model.user}/ mx:Button click=controller.save(user)/ user:User id=user

[flexcoders] Re: how do you check the state during updateDisplayList()?

2008-08-19 Thread bryancostanich
except, as i pointed out in my post, i'm not looking for the skin class names (as that link talks about). i just want to know what the state of it is. if you want to do it like in the article, you have to build a skin class. it would seem to me that you could get the state somehow without doing

RE: [flexcoders] Re: how do you check the state during updateDisplayList()?

2008-08-19 Thread Alex Harui
There's an mx_internal phase property that might help. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bryancostanich Sent: Tuesday, August 19, 2008 11:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you check

[flexcoders] Re: how do you check the state during updateDisplayList()?

2008-08-19 Thread bryancostanich
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bryancostanich Sent: Tuesday, August 19, 2008 11:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you check the state during updateDisplayList()? except, as i pointed out in my post, i'm not looking for the skin class

[flexcoders] Re: How do you identify a component created in a repeater????

2008-07-29 Thread Laurent Cozic
Within which context? If you need to know which component has triggered an event, you can use event.currentTarget, as in: yourRepeatedComponent click=clickHandler(event) / Then in a script block: function clickHandler(event) { var yourComponenet = event.currentTarget; // From then you can

[flexcoders] Re: How would you make a heat map?

2008-07-13 Thread Michael VanDaniker
I realize this is a fairly old thread, but it ended without much resolution. If there is anyone out there still interested in drawing heat maps, I have an implementation that might be worth checking out. http://michaelvandaniker.com/blog/2008/07/06/how-to-make-heat-maps-in-flex/ --- In

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread valdhor
Not really a Flex question but what are you trying to do? Is this just for testing purposes to see what your Flex app will do with a SoapFault? If so, the easiest way is to invoke a method that does not exist. --- In flexcoders@yahoogroups.com, Jason B [EMAIL PROTECTED] wrote: how do you

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
sorry but im not using Soap im just using HTTPService and on php side returning my own made xml data as the book instructs? yea i do need to test this to verify how a fault will look in flex? How is this not a flex question? --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote:

RE: [flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Tracy Spratt
Have your data leave off a closing tag. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread valdhor
Sorry - Early Monday morning. I read Web Service when in actuality it was HTTPService. AFAIK there is no prescribed way of generating a fault. In the past I have created faults by accident. Things like forgetting the return statement so that the Flex request times out; Or returning improperly

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? sorry but im not using Soap im just using HTTPService and on php side returning my own made xml data as the book instructs? yea i do need to test this to verify how a fault

RE: [flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed something? i now know this can trigger

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread caffeinewabbit
, April 28, 2008 11:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? sorry but im not using Soap im just using HTTPService and on php side returning my own made xml data as the book instructs? yea i do need to test

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed something? i now know this can trigger a fault but how do you handle it if a user wants to just send back something other then the binded info? like say

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed something? i now know this can trigger a fault

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed something? i now know this can

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread caffeinewabbit
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed something? i

[flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Jason B
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason B Sent: Monday, April 28, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? ok maybe i missed

RE: [flexcoders] Re: how do you return an XML fault from HTTPService?

2008-04-28 Thread Tracy Spratt
] On Behalf Of Jason B Sent: Monday, April 28, 2008 3:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: how do you return an XML fault from HTTPService? Thank you... would you also have an example on how i can reuse defaultResult on a loop so each XML node name would bind to a field

[flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread jmfillman
: Monday, April 07, 2008 12:48 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] how do you guys handle reporting? can i ask how you integrate that with your flex app? do u just send them to another window that loads the sql reporting services? thanks, d. On Sun, Apr 6, 2008

Re: [flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread Derrick Anderson
To: flexcoders@yahoogroups.com flexcoders%40yahoogroups.com Subject: Re: [flexcoders] how do you guys handle reporting? can i ask how you integrate that with your flex app? do u just send them to another window that loads the sql reporting services? thanks, d. On Sun, Apr 6, 2008 at 4

[flexcoders] Re: how do you guys handle reporting?

2008-04-07 Thread Don Kerr
I continue to use CF Report Builder, cfdocument, etc. for reporting in my Flex apps. I create a flex report using AdvancedDataGrid, etc. and then use the same CFCs to generate cf reports. I simple add a button bar at the top of the Flex report that opens the CF reports in a new browser tab. Works

[flexcoders] Re: How do YOU do functional testing and automation package questions

2008-01-21 Thread imrahil_poland
--- In flexcoders@yahoogroups.com, Jonathan Branam [EMAIL PROTECTED] wrote: And those will work with Flex 2 projects? That's the question. I see the files for Flex 3... I assumed they were incompatible. You must recompile FunFX adapter's sources to use it with Flex2. If you are interested, I

[flexcoders] Re: How do YOU do functional testing and automation package questions

2008-01-18 Thread twcrone70
build that I just installed on Windows we dropped the SWCs in the 2.0.1 SDK itself. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Branam Sent: Friday, January 18, 2008 11:14 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How do YOU do

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I wish this tool was planned for platforms other than Windows. --- In flexcoders@yahoogroups.com, tnajaryan [EMAIL PROTECTED] wrote: AFAIK, there are two tools that you can currently use for Flex GUI testing: Mercury QTP and TestComplete (which is not using mx.automation and thus is of

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I am actually a ways into developing an in house extension to Flex for Selenium. I looked for others doing the same a couple months back (Sept/Oct) and found none. Can you direct me to the others you have found doing this? We are going to approach this with management again after the New

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-27 Thread twcrone70
I am actually a ways into developing an in house extension to Flex for Selenium. I looked for others doing the same a couple months back (Sept/Oct) and found none. Can you direct me to the others you have found doing this? We are going to approach this with management again after the New

[flexcoders] Re: How do YOU do functional testing and automation package questions

2007-12-12 Thread tnajaryan
AFAIK, there are two tools that you can currently use for Flex GUI testing: Mercury QTP and TestComplete (which is not using mx.automation and thus is of limited use). You might also want to have a look at the upcoming GUI testing tool specifically designed for Flex at http://riatest.com

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Nate Pearson
I'm good at extending UIComponent and making custom things...I just want to know conceptually how people would do it. Even if you've done this in a different language that's fine. I think both of you are thinking more about a grid than a map. I think I explained it poorly. Here's a pic of what

Re: [flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Jehanzeb Musani
Hello, The heatmap I was talking about looks like the one on the following link. http://screening.nasdaq.com/heatmaps/heatmap_100.asp I believe you want to design a different type of heatmap. The picture on the link mentioned by you is not clear. I think you want to design something like the

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Abyss Knight
It's been a very long time since I've worked with this sort of thing, but I would imagine you would first generate a histogram of all the possible concentrations and then map that into the color set you want to show (just putting everything into colored buckets). That way with any data set the

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Nate Pearson
That makes sense :). How would I get those cool color blending effects in the examples above? If I were to do it now I would just draw a red circle or square if the threshold were between 15 and 20... Here's something that's pretty close to what I want to do.

[flexcoders] Re: How would you make a heat map?

2007-11-09 Thread Abyss Knight
My guess is that they use a counter for each 'grid' or pixel point on the site and count how long the user is near it. One other option would be to use an out of the box image generation script and then import the image into Flex using a swfloader or image mxml construct. It'd keep the logic out

[flexcoders] Re: How do you add more fonts to the drop down selection of a RichTextEditor ?

2007-10-23 Thread helihobby
I tried the code and I do see in the drop down combo list the complete Fonts which are available but when I select them the RichTextEditor does not render the Font. Here is my code: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

Re: [flexcoders] Re: How do you add more fonts to the drop down selection of a RichTextEditor ?

2007-10-23 Thread Ben Marchbanks
Here's what works for me - each font is defined separately @font-face { src: URL(assets/fonts/BLACKJAR.TTF); fontFamily: BLACKJAR; fontWeight: normal; fontStyle: normal; } @font-face { src:

[flexcoders] Re: How do you add more fonts to the drop down selection of a RichTextEditor ?

2007-10-23 Thread helihobby
I Tried that too with no luck: :( ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Style @font-face { src:url('./style/fonts/micross.ttf');

[flexcoders] Re: How do you format your code?

2007-05-29 Thread reude
I found a trick which, though not perfect, helps quite a lot for the mxml formatting. In Eclipse, Go to 'Window | Preferences | General | File Associations' Make sure that the *.mxml file type is selected, then to the bottom of Associated editors, click Add Select Ant

Re: [flexcoders] Re: How do you format your code?

2007-05-29 Thread André Rodrigues Pena
Adobe, please implement the famous Eclipse's CTRL+SHIFT+F on Flex Builder On 5/29/07, reude [EMAIL PROTECTED] wrote: I found a trick which, though not perfect, helps quite a lot for the mxml formatting. In Eclipse, Go to 'Window | Preferences | General | File Associations' Make sure that

[flexcoders] Re: How do you generate inactive icon states

2007-05-17 Thread Doug Lowder
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Petro Bochan Sent: Thursday, 17 May 2007 5:29 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] How do you generate inactive icon states ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread Michael Levine
To: flexcoders@yahoogroups.com Sent: Thursday, March 22, 2007 9:44 AM Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like

RE: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread Gordon Smith
: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have it check for duplicates in the collection. This function could return false when a duplicate is detected.. --- In flexcoders@yahoogroups.com mailto:flexcoders

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-22 Thread iko_knyphausen
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iko_knyphausen Sent: Wednesday, March 21, 2007 3:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread iko_knyphausen
I think you could write a filterFunction and have it check for duplicates in the collection. This function could return false when a duplicate is detected.. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: I don't think there is an automatic way to do this in the visual

RE: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of iko_knyphausen Sent: Wednesday, March 21, 2007 5:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? I think you could write a filterFunction and have it check for duplicates

[flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Michael Levine
Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like this: books book author= title= / ... /books XMLListCollection is set as dataProvider for the DataGrid. */ var books:XMLListCollection = new

Re: [flexcoders] Re: How do you suppress repeating values in DataGrid columns?

2007-03-21 Thread Adam Royle
: Thursday, March 22, 2007 9:44 AM Subject: [flexcoders] Re: How do you suppress repeating values in DataGrid columns? Thank you, everyone! I ended up solving the problem with the following code: /* XML from HTTPService looks like this: books book author= title

RE: [flexcoders] Re: how do you call the super's super?

2007-03-02 Thread Gordon Smith
: [flexcoders] Re: how do you call the super's super? maybe I want to override (and by that I mean NOT run the code in) parent.updateDisplayList. But if I override updateDisplayList, then at some point in my method I've got to call super.updateDisplayList to get anything to work

Re: [flexcoders] Re: how do you call the super's super?

2007-03-02 Thread Anthony Lee
Thanks Gordon, That's pretty much everything I needed to know. tonio

[flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Kalani Bright
Yes you can for each class you can just have to create a method which call's its super and call that method from the grandchild.

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread jwopitz
Though this will probably cause some gasps and 'shame on you' responses from the OOP hardcores, you might try copying the parent class from the SDK, make it local to your class structure, and then modifying it as your new class, basically porting over your new features into the parent class.

[flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Paul DeCoursey
Why? I can't think of a single reason to want to do that. If you really wanted to do that then you should be extending the grandparent class. Also are you sure that the parent class is not calling super? generally you do that unless you don't want that functionality. Paul --- In

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Doug McCune
I've often run into wanting to call grandParent.super() instead of parent.super(), even when parent.super() will do a call to grandParent.super() anyway. The reason for this is to override parent.super while preserving the functionality of grandParent.super. For example, if you're overriding

[flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Paul DeCoursey
Sounds to me like you are extending the wrong class. But I see your point, it sounds like an edge case however. Can anyone provide any real world examples? --- In flexcoders@yahoogroups.com, Doug McCune [EMAIL PROTECTED] wrote: I've often run into wanting to call grandParent.super() instead of

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread jwopitz
Paul, I am not sure to which posting you are asking, 'why?' but I can give you a specific case in which there have been needs to extend a particular class and then at some point wish you could call super.super.someMethod(). My client needed some specialized autoComplete features that Adobe's

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Anthony Lee
Can anyone provide any real world examples? Sure. I want to extend TreeItemRender, it's a 500 hundred line class so I'd rather not rewrite it. The only available text presentation object in the class is a UITextField which is instantiated in the createChildren method. I want to replace it

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Anthony Lee
maybe I want to override (and by that I mean NOT run the code in) parent.updateDisplayList. But if I override updateDisplayList, then at some point in my method I've got to call super.updateDisplayList to get anything to work. But that means I'm going to run all the code in

[flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Paul DeCoursey
Good example. Here is the solution to that one. DON'T call super.createChildren()... here is why: TreeItemRender extends UIComponent. UIComponent has this for createChildren: protected function createChildren():void { } Calling it does nothing, you don't need to call it. I'm going to go out

[flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Paul DeCoursey
I really haven't looked at Adobes AutoComplete classes since they aren't really part of the general release, in fact I can't find where to download them anymore. If I recall correctly those were really ment to be examples and not drop in components. It sounds like you are really wanting to add

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Anthony Lee
UIComponent has this for createChildren: protected function createChildren():void { } Calling it does nothing, you don't need to call it. Hi Paul, Okay. I could have looked that up, or just called super.createChildren() after my code, and in this case the super would not create the

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Jason King
This is just blue-sky guessing, but why not use prototype. class Base { updateDisplayList:Void() { /* some good code */} } class Child { updateDisplayList:Void() { // hundreds of lines of useless code } } class Grandchild { Grandchild() {

Re: [flexcoders] Re: how do you call the super's super?

2007-03-01 Thread Anthony Lee
why not use prototype? Your example assumes updateDisplayList to be a static method. The method I'd like to call belong to the instance's grandpa not all grandparents in general. tonio class Base { updateDisplayList:Void() { /* some good code */} } class Child {

[flexcoders] Re: How do you document your Flex code?

2007-02-20 Thread app.developer
Muzak, Thank you for the reference. Precia --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: Flex 2.01 comes with ASDoc http://livedocs.adobe.com/flex/201/html/asdoc_127_1.html http://labs.adobe.com/wiki/index.php/ASDoc:Using_ASDoc regards, Muzak - Original

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-03 Thread helihobby
); var b:XMLListCollection = new XMLListCollection(a.source); -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helihobby Sent: Friday, February 02, 2007 10:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you make

[flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread helihobby
I event try: newList = ObjectUtil.copy(x) as XMLListCollection; for each (var node1:XML in x ){ trace( + node1); } for each (var node2:XML in newList ){ trace( + node2); } I see the traces for

RE: [flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread Brian Holmes
] On Behalf Of helihobby Sent: Friday, February 02, 2007 10:46 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you make a copy of an XMLListCollection ( not instance of ) ... I event try: newList = ObjectUtil.copy(x) as XMLListCollection; for each (var node1:XML in x ){ trace

[flexcoders] Re: How do you format your code?

2007-01-29 Thread Charles Havranek
There is already a formatter built into eclipse, but I haven't had time to figure out how to make it work, as it's disabled the CTRL-ALT-F auto format eclipse feature, but what does work is copy and paste the code from the *.as *.mxml files and paste into a *.java or *.xml file, then do the

[flexcoders] Re: How do you format your code?

2007-01-29 Thread maunger
Gee - and here i was thinking i was the only one who did it that way! Funny I always thought it was easier to read (tho certainly makes the files longer) when you put each entry on its own line like your sample. Mitch --- In flexcoders@yahoogroups.com, Pan Troglodytes [EMAIL PROTECTED] wrote:

[flexcoders] Re: How do you get the color changed for a Radio Button Label for mouseOnRollOve

2007-01-13 Thread Derrick Grigg
Check the help files but I believe it is text-rollover. Derrick

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread g8torjoe
. Mike - From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Douglas Knudsen Sent: Friday, August 04, 2006 2:29 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How do you install CF Extensions for Flex 2? they should

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread Anthony DeBonis
After installing FlexBuilder 2 I found this dir: C:\WINDOWS\Downloaded Installations\Adobe Flex Builder 2\ColdFusion Extensions for Flex Builder and it has a file called Installing the ColdFusion Extensions for Flex Builder 2.htm Here are the instructions that worked for me: Installing the

RE: [flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread Mike Anderson
assume this is what you are looking for - Hope that helps, Mike -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g8torjoe Sent: Friday, August 04, 2006 2:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How do you install CF

[flexcoders] Re: How do you install CF Extensions for Flex 2?

2006-08-04 Thread g8torjoe
A Thank you for that. I guess a search would have turned it up, but I thought about that too late. Thank you!!! --- In flexcoders@yahoogroups.com, João Fernandes [EMAIL PROTECTED] wrote: they should be here C:\Documents and Settings\[UserAccountName]\Local

[flexcoders] Re: How do you reference an object to get attributes for a tag?

2006-01-31 Thread douglowder
Aha. Yeah, the text property of a Label needs to be a String. Since mx.controls.Spacer is not a String, you are getting the string representation of the object: the [object Object] part. That's the problem, the solution is... a little harder. You can put a dynamic number of space

[flexcoders] Re: How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread Dan Plesse
I just wild guessed tabDetails.selectedChild.label and bingo that was it. Thanks Everyone Dan --- In flexcoders@yahoogroups.com, Sauro, Nick [EMAIL PROTECTED] wrote: Have you tried selectedChild.label or selectedChild.text? From:

[flexcoders] Re: How do you get the tab label using change event and tabbar.selectedChild

2006-01-31 Thread douglowder
The event object already has all you need. mx.controls.Alert.show( event.target.getChildAt(event.newValue).label); You can use event.prevValue to get the previously selected tab index. Doug --- In flexcoders@yahoogroups.com, Dan Plesse [EMAIL PROTECTED] wrote: How do you get the

[flexcoders] Re: How do you reference an object to get attributes for a tag?

2006-01-30 Thread douglowder
Sorry to answer a question with a question, but do you mean like with data binding? mx:Label text={aDynamicCustomObject} / You can bind the label text to a bindable string property if your object is not of type String. Doug --- In flexcoders@yahoogroups.com, Libby [EMAIL PROTECTED] wrote:

RE: [flexcoders] Re: How do you change the color of text in a label

2005-12-21 Thread Philippe Maegerman
I think it is rather myLabel.setStyle('color', 0xCFCFCF); Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexhtooSent: lundi 19 décembre 2005 5:18To: flexcoders@yahoogroups.comSubject: [flexcoders] Re: How do you change the color of text

[flexcoders] Re: How do you change the color of text in a label

2005-12-19 Thread flexhtoo
--- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: What is the property that you use to change it? You can change text color with this code mx:Label id=resultLabel text=Text color changes!/ in script block . resultLabel.setStyle(text,#CFCFCF)

[flexcoders] Re: How do you make an array of images

2005-12-19 Thread Darin Kohles
It's easier to do the object route: var myImages:Object; myImages = new Array(length); for (:xmyImages.length:){ myImages[x].image = new Image(); myImages[x].image.source = http://etc.;; } Good Luck --- In flexcoders@yahoogroups.com, [EMAIL PROTECTED] wrote: Do you make an array of Objects

  1   2   >