[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
I have put the following code in the datagrid and found that couple of times 'itemEditorInstance' is null.So the focus does not move ahead. Any pointer.. override protected function keyDownHandler(event:KeyboardEvent):void { // this is technically illegal, but works

Re: [flexcoders] Flex/Flash/AIR Screen Record

2010-07-21 Thread thomas parquier
Hello, I'm interested in making such an application... so if you plan to hire a freelancer, I'm available. The app has to be AIR to embed a screen recorder in package and then get stream. have a good day, thomas parquier --- http://www.web-attitude.fr/realisations/ msn :

Re: [flexcoders] Flex/Flash/AIR Screen Record

2010-07-21 Thread Sajid Hussain
its cool idea , its really hard to get done with adobe air individually because you may need to integrate well enough with screen and we dont have such api to even capture the current screen so we might need to run a background server which would be caputring the screen and then it may publish

[flexcoders] Re: DragDrop event propagation

2010-07-21 Thread Adnan
here is an example how you can cancel the drop; http://butterfliesandbugs.wordpress.com/2007/10/10/cancelling-a-drag-action-in-list-components/ --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I don't think there is a way to refuse the drop when the dragDrop event occurs. And

[flexcoders] Broken CSS Editor window in Flex Builder 3

2010-07-21 Thread Amy
I'm running Flex Builder 3.0.2.214193, and last night we started a new branch of the source code. So, this morning, I deleted my existing projects and replaced them with the new branch. The problem I'm having is that my CSS editor window is now the size of a large postage stamp, with

[flexcoders] Re: Broken CSS Editor window in Flex Builder 3

2010-07-21 Thread Amy
Never mind. It just fixed itself, for no reason I can tell. Thanks anyway... --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: I'm running Flex Builder 3.0.2.214193, and last night we started a new branch of the source code. So, this morning, I deleted my existing projects

[flexcoders] Disabled Font Color in a list control

2010-07-21 Thread Amanda Machutta
Hello Group, Does anyone know how to change the text font color in a disabled List Control? (Flex 3) Thanks, -- ´¨) __o .·´ .·´¨)¸.·´¨) _'\ . (¸.·´ (¸.·´ (¸.·´¨¨ Amanda ¨¨( * ) ( )

[flexcoders] Re: Disabled Font Color in a list control

2010-07-21 Thread Amanda Machutta
ha...nevermind...figured it out. For whatever reason I thought that disabledColor was for the background Color, but apparently in the list control it controls the font color. Thanks, Amanda

[flexcoders] Argghhh!

2010-07-21 Thread Patrick
Please fix the bug where if you copy a folder into a project on OSX, it copies more than the first file only. WTF? How did that pass QA? Do you test this stuff?

[flexcoders] Re: Flex 3 Tree - Moving Nodes

2010-07-21 Thread gemoussier
Hello, I can't download this file, it would be great if someone could resend. Thanks you ! --- In flexcoders@yahoogroups.com, Yves Riel r...@... wrote: I have done something similar lately except for the spring loaded opening mechanism. The problem that I saw with Alex Harui's approach was

Re: [flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Alex Harui
The focusIn handler would tell you more. Make sure you examine/display the event.target and event.relatedObject. Maybe the parent/owner chain in your editor isn’t set up. On 7/20/10 11:41 PM, Rajan ilikef...@yahoo.com wrote: I have put the following code in the datagrid and found that

Re: [flexcoders] Behaviors with DateFields/DateChoosers (Flex 4)

2010-07-21 Thread Alex Harui
Try a really simple test case in a new project. I thought it showed the current date by default On 7/20/10 12:20 PM, Blaine von Roeder bvonroe...@gmail.com wrote: Hi folks, I've recently bumped into a small problem with the DateField/DateChooser interaction in Flex 4. With the

Re: [flexcoders] Argghhh!

2010-07-21 Thread dorkie dork from dorktown
What are you talking about? I like the behavior if you copy a folder in Finder and then paste that into a project it pastes the folder and the folders contents go with it. Why would you only want 1 file to be copied with it? If you want that just copy the one file. On Wed, Jul 21, 2010 at 11:16

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
Hi I have created simple test case to identify the issue. If i remove itemEditEnd then i have no issues with the focus. It works cleanly and focus moves from one column to another. But if add itemEditEnd then focus does not move from 1st column to 2 nd column. So event.preventDefault();

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
Actually itemEditEnd in the real sceanrio looks like below. Since i am uisng the nested datafield i am calling the event.preventDefault(); datGrid.destroyItemEditor(); datGrid.dataProvider.itemUpdated(event.itemRenderer.data); So my dataprovider gets updated with the new value when i use the

Re: [flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Alex Harui
I noticed your editor looks like it is a popup. Have you borrowed the code from the popup editor example as well? On 7/21/10 11:43 AM, Rajan ilikef...@yahoo.com wrote: Actually itemEditEnd in the real sceanrio looks like below. Since i am uisng the nested datafield i am calling the

Re: [flexcoders] Argghhh!

2010-07-21 Thread Paul Andrews
On 21/07/2010 17:16, Patrick wrote: Please fix the bug where if you copy a folder into a project on OSX, it copies more than the first file only. WTF? How did that pass QA? Do you test this stuff? Sounds like the right thing to do. Who would copy a folder if they only wanted to copy

[flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-21 Thread Alexander Farber
Hello, I'm trying this code, but get the error about bad casting in Test.mxml: Implicit coercion of a value of type Class to an unrelated type mx.core:IFactory. My Renderer.mxml: ?xml version=1.0 encoding=utf-8? mx:HBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Text

Re: [flexcoders] Re: 2 PopUpButton questions: force opening upwards + red and black item colors

2010-07-21 Thread Alex Harui
Menu.itemRenderer = new ClassFactory(Renderer); MXML compiler automatically wraps it for you, but you have to do it yourself in AS. On 7/21/10 3:28 PM, Alexander Farber alexander.far...@gmail.com wrote: Hello, I'm trying this code, but get the error about bad casting in Test.mxml: