[flexcoders] Re: Flex 2 and DataGrid

2006-09-29 Thread ben.clinkinbeard
It is certainly possible, although explaining "how" would be quite a long conversation. Here are some links to get you started. http://livedocs.macromedia.com/flex/2/docs/0820.html http://livedocs.macromedia.com/flex/2/langref/mx/controls/dataGridClasses/DataGridItemRenderer.html HTH, Ben --

[flexcoders] Flex 2 and DataGrid

2006-09-29 Thread wespinozab
Hi, I not very good writing in English, so forgiveme for the mistakes. I need help with flex 2 and DataGrid. I want to create a DataGrid that I could modify simply writing in the last row of the DataGrid, like excel or something similar. Is it possible it? Thanks. Wen. -- Flexcoders Mailing

Re: [flexcoders] move an image in front of another?

2006-09-29 Thread Daniel Freiman
Take a look at DisplayObjectContainer.setChildIndex()- Dan FreimanOn 9/29/06, Greg Morphis <[EMAIL PROTECTED]> wrote: When you add an image to an application with an existing image, thenew one is above the old one. Is there a way to change that? Kindalike the z-index in css?I've got a couple im

Re: [flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread John Dowdell
Clint Modien wrote: > 50% in 3 months are you kidding? That's insane. I'm glad you share my sense of insanity ;-) But these early projections seem plausible... Flash Player 8 reached 85% consumer viewability in nine months of distribution, and the daily installation rates for FP9 are just

[flexcoders] Re: cairngorm: calling a function in a view

2006-09-29 Thread Tim Hoff
Got the download. Thanks again, Tim --- In flexcoders@yahoogroups.com, "Alex Uhlmann" <[EMAIL PROTECTED]> wrote: > > Hi Tim, > > thanks for your feedback. The link on my blog should work now. > > Best, > Alex > >Alex Uhlmann > Consultant (Rich Internet Applications) > Adobe Consult

RE: [flexcoders] Re: cairngorm: calling a function in a view

2006-09-29 Thread Alex Uhlmann
Hi Tim,   thanks for your feedback. The link on my blog should work now.   Best, Alex Alex Uhlmann Consultant (Rich Internet Applications)Adobe ConsultingWestpoint, 4 Redheughs Rigg, South Gyle,

[flexcoders] Link Type: External

2006-09-29 Thread passive_thoughts
I don't fully understand this link type. I realize that by setting a library(swc) as external in an app, it is used as a reference for the compiler during compile time. Now the documentation says "The components contained in the SWC file are retrieved and loaded into memory as needed, at run time

Re: [flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread Clint Modien
50% in 3 months are you kidding?  That's insane.   Thanks John...   On 9/29/06, John Dowdell <[EMAIL PROTECTED]> wrote: Clint Modien wrote:> Do we have stats for flash player 9 penetration yet?> Has Adobe turned on the auto-update for flash 9 player yet? If not... when?> Do we have stats

[flexcoders] Re: move an image in front of another?

2006-09-29 Thread Tim Hoff
Hi Greg, In this particular case, it might be easier to use the swapChildren () method of the DisplayObjectContainer class. -TH --- In flexcoders@yahoogroups.com, "Greg Morphis" <[EMAIL PROTECTED]> wrote: > > I used setChildIndex() and it seems to work fine. Any other way more efficient? > >

[flexcoders] Re: move an image in front of another?

2006-09-29 Thread Greg Morphis
I used setChildIndex() and it seems to work fine. Any other way more efficient? On 9/29/06, Greg Morphis <[EMAIL PROTECTED]> wrote: > When you add an image to an application with an existing image, the > new one is above the old one. Is there a way to change that? Kinda > like the z-index in cs

Re: [flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread John Dowdell
Clint Modien wrote: > Do we have stats for flash player 9 penetration yet? > Has Adobe turned on the auto-update for flash 9 player yet? If not... when? > Do we have stats for when Adobe turned on auto-update for flash 8 > player? What was the adoption rate before and after it was turned on? Adob

[flexcoders] move an image in front of another?

2006-09-29 Thread Greg Morphis
When you add an image to an application with an existing image, the new one is above the old one. Is there a way to change that? Kinda like the z-index in css? I've got a couple images and when I roll over one, I enlarge the image and sometimes the old one enlarges and goes under the new one. I loo

[flexcoders] Re: question/suggestion about pass by reference

2006-09-29 Thread Doug Lowder
Regarding functions that need to return multiple integers, you could always return the values in an Array instead of an object. I find this easier to deal with when object creation would be overkill, and there are precedents in AS component classes (Slider.values, DataGrid.selectedIndices, etc

[flexcoders] Re: HTTP Status 500 Error using SSL endpoint

2006-09-29 Thread syndrake7
I'm having some difficulty getting a sniffer going due to security limitations here. However, I did get some web log info: 2006-09-29 20:04:43 W3SVC699396293 #.#.#.# POST /flex2gateway/ - 443 - #.#.#.# Mozilla/4.0+ (compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPa th.1;+.NET

[flexcoders] Re: Format a datatip.

2006-09-29 Thread jnewport
I tried that, but didn't work correctly. LineSeries.(hitData.element).yField. which gave me the State name, but it won't give me the amount, which is what I am trying to get to do format. I have been trying to use chartItem, but no success. Flex can get me all the data on its own with the showD

RE: [flexcoders] Setting properties to children technique

2006-09-29 Thread Gordon Smith
Yes, you should be using invalidation. The typical pattern for doing this is as follows:       private var _buttonLabel:String = "";       private var buttonLabelChanged:Boolean = false;       public function get buttonLabel():String     {     return _buttonLabel;     }  

[flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread Clint Modien
Few questions... Do we have stats for flash player 9 penetration yet? Has Adobe turned on the auto-update for flash 9 player yet? If not... when? Do we have stats for when Adobe turned on auto-update for flash 8 player? What was the adoption rate before and after it was turned on? -- Flexcode

[flexcoders] Re: cairngorm: calling a function in a view

2006-09-29 Thread Tim Hoff
Hi Alex, Thank you very much for addressing this topic in your blog. Using observe and ObserveValue seems much cleaner than viewLocator/viewHelper; more direct and less classes. Your examples illustrate a very useful technique for manipulating local view states through binding. I wasn't how

[flexcoders] Re: Auto-expand Treenodes

2006-09-29 Thread codemonkey666
validateNow Thank you very much Jonas! I have been trying to get this (auto-expand) working for a while now, and there was a timing issue. The key is Tree.validateNow(). Ahh -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Ar

[flexcoders] rowCount = {dataProvider.length}

2006-09-29 Thread flex-guitar
Hello everyone, I'm trying to set several ComboBoxs to show their dropdown without scrolling. There are a few posts in the archive suggesting to set the rowCount to the dataProvider.length : but I get an compile error ("undefined property 'dataProvider'") This makes sense, since dataProvide

[flexcoders] Re: Tree Help Please

2006-09-29 Thread s_hernandez01
The function did not work, Tracy, perhaps because I coded the tree in flex using xml. Do you have another approach? -Sal --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Try: > > if(productTree.selectedItem.label == "Folder 1") > > > > Do you see why? > >

RE: [flexcoders] Background transparancy

2006-09-29 Thread Benoit Hediard
In order to get full transparency (in an html page), you might also have to set windowMode to "transparent" in your code that insert the swf:     ...         ...         ...     wmode="transparent"     ... >       Benoit Hediard   De : flexcoders@yahoogroups.com [mailto

[flexcoders] Re: list >> selectedItem question

2006-09-29 Thread Bela Hajzer
--- In flexcoders@yahoogroups.com, "g_vaccarezza" <[EMAIL PROTECTED]> wrote:>> Hi guys:> > I got this XML:> > > > > > > > > > > > And the list:> > > > I need to make multiple selections in the list and retrieve each > item's label in order to send a request to a data base.> > Using selectedIndi

RE: [flexcoders] Affinitiz V3.0 powered by Flex2+ColdFusion7+FMS2

2006-09-29 Thread Benoit Hediard
You probably had a problem with the birthdate formatting?   This is typical of the feedback we have about the Flex error tips... ;) Most of the users don't see the red halo around the input. It might be better if the error toolTip are displayed by default (and not only on roll over).   Ben

RE: [flexcoders] Re: cairngorm: calling a function in a view

2006-09-29 Thread Alex Uhlmann
Hey Guys,   FYI, I've just blogged about this topic. http://weblogs.macromedia.com/auhlmann/archives/2006/09/cairngorm_sampl_3.cfm http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm   Best, Alex

[flexcoders] Re: list >> selectedItem question

2006-09-29 Thread wayne_badu_johnson
Hi You can capture multiple slected items by going through the 'selectedItems' array: private function showSelected(event:ListEvent):void{ for (var i:String in event.currentTarget.selectedItems){ trace(event.currentTarget.selectedItems[i].label); } } Put a itemClick event on the list

Re: [flexcoders] Background transparancy

2006-09-29 Thread sumeet k
Hi Patrick, Ypu can set backgroundAlpha="0" in application tag.dj <[EMAIL PROTECTED]> wrote: How do you set the background alpha of an application to 0, possible?Thanks,Patrick Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. __._,_.___ -- Fl

[flexcoders] states, transitions, and code behind

2006-09-29 Thread Bruce Denham
Hi Everyone, I'm having trouble with using the and tags in my mxml files that inherit from an as class using to the "code behind" technique. The compiler throws this error: "Could not resolve [or ] to a component implementation." Taken from the docs, here's the mxml file I'm working with: ht

[flexcoders] *sigh* -includes not working either?

2006-09-29 Thread Paul Spitzer
I swear I had includes working earlier but now it seems they aren't. Here is what I did.. Created a new Flex Project Dragged a few components onto the Application Set all the default SWC references to Link Type: External Created an empty compiler config XML file Added -load-config to additional c

Re: [flexcoders] Affinitiz V3.0 powered by Flex2+ColdFusion7+FMS2

2006-09-29 Thread Francois Dejardin
Hi,   Your application looks great, but i had a bug trying sign it in .. after the second inscription form i was unable to go to the next step (confirmation) .. i had to close the window and retry again..   regards   Francois     - Original Message - From: Benoit Hediard

[flexcoders] RSL with crossdomain.xml (Flex 2.0)

2006-09-29 Thread Kevin Broce
I wanted to know if it is possible to load a Flex application from one domain and have it load an RSL from a different domain assuming a properly configured crossdomain.xml file. I thought this was supported in Flex 1.5, however the Flex 2.0 docs say: "RSLs are not shared across domains. If a c

[flexcoders] Pivot Table with Flex

2006-09-29 Thread Federico Ferri
I'm very interested in a Flex/Flesh widget/object which is a Pivot Table for doing analisys. I think i can exthend the data grid class and develop by myself, but first it's not so easy. and just for not do some work that other people have already done, and surely better tha me :-) do you kn

[flexcoders] Re: Does anyone have a Flex 2 Cairngorm example for a master/detail view/edit/de

2006-09-29 Thread Tim Hoff
Hey Michael, Good example. I'm glad that you worked through it and got it to work. Cheers and keep going! -TH --- In flexcoders@yahoogroups.com, "Michael Ritchie" <[EMAIL PROTECTED]> wrote: > > Ok, I created a fully working master/detail example with Cairngorm and > CFC. Thanks to TH for hi

[flexcoders] Affinitiz V3.0 powered by Flex2+ColdFusion7+FMS2

2006-09-29 Thread Benoit Hediard
Hi everyone,   FYI, we finally launched the new version of our blogs/communities platform Affinitiz (initially launched in its V1.0 in 2000)!   It's a personal publishing tool for blog/communities (public/private contents), with more than 300 000 members and 25 000 communities. The main a

Re: [flexcoders] Bugs in the Remoting adapter which comes with ColdFusion

2006-09-29 Thread EECOLOR
Hey,   i just tested it: i created for each application a destination and a channel. I traced out ServerConfig.xml to make sure the right configuration was loaded.   The same problem happened there. I now have a very simple setup when it comes to CFC code:   Application.cfc    this.name = "app1"

[flexcoders] can you unload an swf file from an mx:image control?

2006-09-29 Thread JClouz
I've been loading flash movies into an mx:image control for display just fine.  Problem comes when the user quits during playback.  He heads out to a new state but the flash swf file and it's sound keep on playing until they're done.  I've tried removeChild, .enabled = false, and other stu