[flexcoders] Re: Border Container bug?

2012-10-21 Thread Kumar
Hi, I am trying to do something similar in Flex 3 (old code that I am maintaining). In Flex3 what is the equivalent of ToggleButtonBase where I can check the selected property? Thanks KS --- In flexcoders@yahoogroups.com, mregert@... michael_regert@... wrote: Full source if this helps:

[flexcoders] IE8/ActiveX FlashPlayer Bug?

2010-07-02 Thread jamesfin
I believe there is an anomaly within the ActiveX Flash Player that is causing a 1009 error when trying to center a simple popup. This logic runs fine on all non-IE OSX and Windows browsers thus causing me to think it's specific to ActiveX Flash. One thing that may be unique here is that we are

Re: [flexcoders] IE8/ActiveX FlashPlayer Bug?

2010-07-02 Thread Alex Harui
What is bldg that is being passed into centerPopUp? On 7/2/10 9:14 AM, jamesfin james.alan.finni...@gmail.com wrote: I believe there is an anomaly within the ActiveX Flash Player that is causing a 1009 error when trying to center a simple popup. This logic runs fine on all non-IE OSX and

[flexcoders] Re: Adobe Air Bug!

2010-04-23 Thread cuttenv
anyone know if there are existing issues?? --- In flexcoders@yahoogroups.com, cuttenv cutt...@... wrote: I have noticed something more on this error. When I install my air file to /Applications it works perfectly fine but when I install it to /Applications/Air Apps it doesn't work correctly.

[flexcoders] Re: Adobe Air Bug!

2010-04-22 Thread cuttenv
I have noticed something more on this error. When I install my air file to /Applications it works perfectly fine but when I install it to /Applications/Air Apps it doesn't work correctly. The app shows up in my dock and it says it's running but nothing there. now on to win 64 bit... I haven't

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-06 Thread Tom Chiverton
On Monday 05 Apr 2010, ArunKumar Madas wrote: Thanks Peeyush. That helps. We have mx:Combobox / referred everywhere across our code and changing all the instances is a bigger change. That's when Monkey Patching is useful. -- Helping to appropriately maintain design-patterns as part of the

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-05 Thread Peeyush Tuli
Override the combobox class in a custom component and add the following code - private var mDropDown:ListBase; override public function set dataProvider(value:Object):void { super.dataProvider = value; //Bug in Flex SDK 3.5: Once the data provider is set and list base is created

Re: [flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-05 Thread ArunKumar Madas
Thanks Peeyush. That helps. We have mx:Combobox / referred everywhere across our code and changing all the instances is a bigger change. I guess, for this very reason creating a an extended base components one time and using with custom namespace across the app is a good idea. We just turned back

[flexcoders] combobox, sdk 3.5 bug, any workarounds?

2010-04-03 Thread ArunKumar Madas
Any one has a quick workaround for this sdk 3.5 bug. http://forums.adobe.com/message/2642802 It is also seen when you just pop-up a title window containing a Combobox and try to change the dataprovider (doesnt get refreshed until you try to click one of the items).

[flexcoders] Re: Daylight savings bug

2010-03-15 Thread Richard Rodseth
It looks as though I ran into this: http://bugs.adobe.com/jira/browse/FLEXDMV-2043 Switching to 3.4 cleared it up, though some of the comments in that bug make me a little nervous about November... On Mon, Mar 15, 2010 at 1:15 PM, Richard Rodseth rrods...@gmail.com wrote: Wouldn't you know it.

[flexcoders] vote for webservice bug

2010-02-22 Thread Peeyush Tuli
Has anybody else encountered this issue before? http://bugs.adobe.com/jira/browse/SDK-25568 If yes, request you to vote for it so that it can get a priority to get fixed. Any workarounds are welcome as this is kind of critical for our project. ~Peeyush http://www.mds.asia

Re: [flexcoders] HTTPService token: a bug or by design?

2010-02-09 Thread Tim Romano
To answer my own dumb question. var token: AsyncToken; token = send(); var myResponder : AsyncResponder= new AsyncResponder(onResult, onFault, token); token.addResponder(myResponder); function onResult(e:ResultEvent , token:Object=null):void {} On 2/8/2010 6:05 PM, Tim Romano wrote: I've

[flexcoders] HTTPService token: a bug or by design?

2010-02-08 Thread Tim Romano
I've run into one bug in the mx.rpc.http.HTTPService class in FB4 beta 2 -- the AsyncResponder's onResult function fires *twice* unless you wire up a dummy eventhandler. And so I am wondering if the following is not also a bug: var myResponder : AsyncResponder= new AsyncResponder(onResult,

[flexcoders] Flash Player Security Bug

2009-11-13 Thread Simon
I am pretty sure I have found a bug in the Flash Player regarding socket security. According to the Adobe site I should be able to serve a socket master policy file on port 843 from my server. http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security.html Since that post things have

Re: [flexcoders] Flash Player Security Bug

2009-11-13 Thread Tom Chiverton
On Friday 13 Nov 2009, Simon wrote: My reluctant conclusion is that this must be a bug. Does anyone have experience using binary sockets in Flex? Has anyone successfully created a persistent binary socket and sent more than one message through it? Have you filed this test case on

Re: [flexcoders] Flash Player Security Bug

2009-11-13 Thread Mike McAulay
I have used binary sockets successfully in Flex and have created persistent connections through which multiple messages pass. The work was done under NDA so I can't disclose any details but it certainly does work. I suggest you strip your code down to the absolute bare minimum. And if

[flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-30 Thread seanmcmonahan
: Geoffrey geoffhom@ To: flexcoders@yahoogroups.com Sent: Wednesday, October 28, 2009 12:45 PM Subject: [flexcoders] SharedObject problem/bug? Cannot store a subclass of ByteArray. Hi, I have a subclass of ByteArray (let's call it ByteArrayPlus), which I want to write

[flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-30 Thread Geoffrey
@yahoogroups.com Sent: Wednesday, October 28, 2009 12:45 PM Subject: [flexcoders] SharedObject problem/bug? Cannot store a subclass of ByteArray. Hi, I have a subclass of ByteArray (let's call it ByteArrayPlus), which I want to write to a SharedObject. I can store

RE: [flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-30 Thread Alex Harui
@yahoogroups.com Subject: [flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray. Hi Sean, Thank you for the link; still no luck. I had tried implementing IExternalizable before, but after reading your article I decided to try again. I have figured out a little more

[flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-30 Thread Geoffrey
, October 30, 2009 1:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray. Hi Sean, Thank you for the link; still no luck. I had tried implementing IExternalizable before, but after reading your article I

[flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-29 Thread Geoffrey
: Wednesday, October 28, 2009 12:45 PM Subject: [flexcoders] SharedObject problem/bug? Cannot store a subclass of ByteArray. Hi, I have a subclass of ByteArray (let's call it ByteArrayPlus), which I want to write to a SharedObject. I can store it fine, but when I read it back, it says

[flexcoders] Re: SharedObject problem/bug? Cannot store a subclass of ByteArray.

2009-10-28 Thread Geoffrey
I forgot to mention what versions I am using: Flex SDK 3.4 (via Flex Builder 3), targeting Flash Player 10. --- In flexcoders@yahoogroups.com, Geoffrey geoff...@... wrote: Hi, I have a subclass of ByteArray (let's call it ByteArrayPlus), which I want to write to a SharedObject. I can

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-13 Thread Angelo Anolin
. Thanks and regards, Angelo _ _ __ From: EddieBerman eddieberman2000@ ... To: flexcod...@yahoogro ups.com Sent: Monday, 12 October, 2009 0:35:08 Subject: [flexcoders] Re: ColumnChart LineSeries Bug?   I began creating an example for you

[flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-12 Thread EddieBerman
, Angelo From: EddieBerman eddieberman2...@... To: flexcoders@yahoogroups.com Sent: Monday, 12 October, 2009 0:35:08 Subject: [flexcoders] Re: ColumnChart LineSeries Bug?   I began creating an example for you and unfortunately discovered another bug

[flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-11 Thread EddieBerman
Sent: Sunday, 11 October, 2009 2:19:38 Subject: [flexcoders] Re: ColumnChart LineSeries Bug? It's a flex bug. It fails in applySeriesSet( ) in ColumnChart. as. The case statement for stacked and 100% assumes that the series is a column series and chokes on the line: seriesSet[i] .offset = 0

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-11 Thread Angelo Anolin
: [flexcoders] Re: ColumnChart LineSeries Bug?   I began creating an example for you and unfortunately discovered another bug further down the chain that had to do with stacking the columns. Rather than diagnose that now, here's a great blog article I found a while back that may be a better

[flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-10 Thread EddieBerman
It's a flex bug. It fails in applySeriesSet() in ColumnChart.as. The case statement for stacked and 100% assumes that the series is a column series and chokes on the line: seriesSet[i].offset = 0; as there's no offset for lines series. You can get past this problem by extending ColumnChart.as

Re: [flexcoders] Re: ColumnChart LineSeries Bug?

2009-10-10 Thread Angelo Anolin
From: EddieBerman eddieberman2...@hotmail.com To: flexcoders@yahoogroups.com Sent: Sunday, 11 October, 2009 2:19:38 Subject: [flexcoders] Re: ColumnChart LineSeries Bug? It's a flex bug. It fails in applySeriesSet( ) in ColumnChart. as. The case statement for stacked and 100

[flexcoders] Is it a Bug?

2009-10-06 Thread GeorgeB
Hi all, I stumbled on the following and don't know if this is a bug, and if there are is any fix. Environment is Eclipse Ganymede, Flex Pro Plugin 3 (3.2 SDK) The setup includes a MenuBar control with several submenus. Also there is a AdvancedDataGrid with several columns and some itemEditors

RE: [flexcoders] Is it a Bug?

2009-10-06 Thread Alex Harui
Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of GeorgeB Sent: Tuesday, October 06, 2009 6:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is it a Bug? Hi all, I

[flexcoders] rich text editor bug?

2009-08-16 Thread Scott
Hey guys, I've got a few fields that populate off of an object through data binding. When I call a new object that has null fields, the text inputs clear out as expected. However, the RichText Editor keeps the old data even though it doesn't exist in the object anymore. For instance

[flexcoders] TileList dataprovider change bug?

2009-05-05 Thread Ritu Raj Tiwari
I am seeing some strange behaviour with TileList. I am hoping someone can shed some light on this: I have a TileList where I assign it an ArrayCollection for its dataProvider. As I add objects to this collection, the tile list updates faithfully. The problem happens when I switch the

re: [flexcoders] TileList dataprovider change bug?

2009-05-05 Thread j...@cfwebtools.com
Omaha, NE 68154 http://www.cfwebtools.com 402-408-3733 x103 From: Ritu Raj Tiwari rituraj.tiw...@gmail.com Sent: Tuesday, May 05, 2009 8:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] TileList dataprovider change bug? I am seeing some strange

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-07 Thread jmfillman
. The blankMenu is actually a left over from my actual application and wasn't needed for this sample code. This worked fine in FlashPlayer 9, so must be a bug with 10. JF --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: I tried your code and it crashes

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-01 Thread valdhor
must be a bug with 10. JF --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: I tried your code and it crashes my browser here. I could not find a way to stop that behavior in my (Admittedly short) testing. The only thing that jumped out at me was that your blankMenu

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-01 Thread valdhor
a left over from my actual application and wasn't needed for this sample code. This worked fine in FlashPlayer 9, so must be a bug with 10. JF --- In flexcoders@yahoogroups.com, valdhor valdhorlists@ wrote: I tried your code and it crashes my browser here. I could not find

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-03-31 Thread jmfillman
Thank you for the follow-up. The blankMenu is actually a left over from my actual application and wasn't needed for this sample code. This worked fine in FlashPlayer 9, so must be a bug with 10. JF --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: I tried your code

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-03-25 Thread valdhor
I tried your code and it crashes my browser here. I could not find a way to stop that behavior in my (Admittedly short) testing. The only thing that jumped out at me was that your blankMenu is a null object as it is never instantiated. Unfortunately, even if it is instantiated, the crashing

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-03-24 Thread jmfillman
Any suggestions? Am I doing something wrong? JF --- In flexcoders@yahoogroups.com, jmfillman jmfill...@... wrote: The code below causes both IE and Firefox to crash (haven't tried others). The problem seems to occure when removing an item from a custom context menu. It doesn't even debug,

RE: [flexcoders] flash 10 3D - bug or feature

2009-03-11 Thread Kenneth Sutherland
the transformations into separate functions and the other does not. Bug or feature?? Cheers. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Kenneth Sutherland Sent: 10 March 2009 14:21 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] flash 10 3D I've

[flexcoders] LCDS: Potential LCDS bug - Commit on one DataService(assembler), commits dirty data of another unrelated DataService

2009-03-02 Thread Rajeev Goel
hi All, I am facing a weird issue in LCDS 2.6. There are two unrelated entities A and B, i.e. they dont' have any relationship defined in data-management-config.xml My application is MDI based and consists of multiple mini-apps. Steps: 1. User opens miniapp for entity A, makes it dirty, don't

RE: [flexcoders] LCDS: Potential LCDS bug - Commit on one DataService(assembler), commits dirty data of another unrelated DataService

2009-03-02 Thread Jeff Vroom
...@adobe.com) and I'll take a look at it. Jeff From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rajeev Goel Sent: Monday, March 02, 2009 10:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] LCDS: Potential LCDS bug - Commit on one DataService(assembler

[flexcoders] AxisRenderer Embedded Font Bug?

2009-02-05 Thread Battershall, Jeff
I've got a vertical axis with an axisrenderer and I'm trying to rotate the labels 90 degrees. I'm referring to a font embedded in a stylesheet. The labels won't display - it appears that room is being made for the labels to appear, but the labels aren't getting rendered. I'm using MyriadWebPro

RE: [flexcoders] AxisRenderer Embedded Font Bug?

2009-02-05 Thread Battershall, Jeff
: [flexcoders] AxisRenderer Embedded Font Bug? I've got a vertical axis with an axisrenderer and I'm trying to rotate the labels 90 degrees. I'm referring to a font embedded in a stylesheet. The labels won't display - it appears that room is being made for the labels to appear, but the labels

[flexcoders] Ever seen this bug? (busy loop + custom component + '\n')

2009-01-29 Thread enriirne
I've just submitted this bug. I wonder if any busy loop user (game, animations) have vere seen it. Enri See code below to reproduce the bug Steps to reproduce: 1. add a busy loop: enter_frame or timer with 1 ms resolution 2. inside the loop set the text property of a Label or TextArea to '\n'

[flexcoders] AIR chromless maximize() bug ?

2008-12-31 Thread Adnan Doric
Hello coders and happy new year :) I don't know if this is a bug or a feature : If a chromless AIR application is maximized, it's width and height is exactly 8 pixels wider than native OS resolution. For example, my resolution is 1680x1050, and maximized chromless AIR applications is 1688x1058

[flexcoders] Is it a bug while switching focus ?

2008-11-04 Thread itdanny2002
I write a simple application with 2 textinput control. mx:VBoxmx:TextInput id=test1/mx:TextInput id=test2//mx:VBox Case 1: a) Click test1 control. b) Switch to other application c) Click the application bar and switch back. d) test1 is on focus. OK ! No Problem ! Case 2: a) Click test1 control.

RE: [flexcoders] Is it a bug while switching focus ?

2008-11-04 Thread Alex Harui
Subject: [flexcoders] Is it a bug while switching focus ? I write a simple application with 2 textinput control. mx:VBoxmx:TextInput id=test1/mx:TextInput id=test2//mx:VBox Case 1: a) Click test1 control. b) Switch to other application c) Click the application bar and switch back. d) test1

[flexcoders] programmatic vbox serious bug?

2008-10-20 Thread fotis.chatzinikos
Hi, i am making a vbox via actionscript and set its width and height to 200x300... After adding a single button (or anything else) if i throw an alert with its width and height they seem correct but...scroll bars appear which can scroll the vbox as if it was 2000 by 2000 pixels wide/high... The

Re: [flexcoders] programmatic vbox serious bug?

2008-10-20 Thread Michael Schmalle
Hi, extraTagsSelectionVBox.setStyle(cornerRadius,10) ; extraTagsSelectionVBox.setStyle(backgroundColor,#00FF00) ; Set your styles with correct as3 Types; extraTagsSelectionVBox.setStyle(cornerRadius,10) ; extraTagsSelectionVBox.setStyle(backgroundColor, 0x00FF00) ; Mike On Mon, Oct 20, 2008 at

[flexcoders] Re: ANYONE? LCDS Bug? Return from overriden ServiceAdapter manage() disregarded

2008-06-27 Thread Steven Toth
let me know if you run into trouble with this on LCDS 2.6 beta. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven Toth Sent: Monday, June 23, 2008 10:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ANYONE? LCDS Bug? Return from

RE: [flexcoders] Re: ANYONE? LCDS Bug? Return from overriden ServiceAdapter manage() disregarded

2008-06-26 Thread Seth Hodgson
Hi Steven, Definitely let me know if you run into trouble with this on LCDS 2.6 beta. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steven Toth Sent: Monday, June 23, 2008 10:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ANYONE? LCDS Bug

[flexcoders] Re: ANYONE? LCDS Bug? Return from overriden ServiceAdapter manage() disregarded

2008-06-23 Thread Steven Toth
Thanks, but the manage() method only gets called if you override the handlesSubscriptions() method to return true, and in LCDS if you call the super.manage(command) for a subscribe operation when you indicated you will be handling subscriptions it throws an exception. BlazeDS will allow you

[flexcoders] Re: Custom preloader bug

2008-04-15 Thread maximecowez
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of maximecowez Sent: Monday, April 14, 2008 9:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Custom preloader bug Well I supposed the FlexEvent.INIT_COMPLETE event got dispatched when

[flexcoders] Re: Custom preloader bug

2008-04-15 Thread maximecowez
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of maximecowez Sent: Monday, April 14, 2008 9:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Custom preloader bug Well I supposed the FlexEvent.INIT_COMPLETE event got dispatched when

RE: [flexcoders] Re: Custom preloader bug

2008-04-15 Thread Alex Harui
Subject: [flexcoders] Re: Custom preloader bug Yepee! I finally nailed it! Took me three hours. And I now really think this might be a Flex bug or at least an inconsistency. What I did wrong: I created my main controller (that sets up all event listeners and more) on INIT_COMPLETE And now I create

[flexcoders] Re: Custom preloader bug

2008-04-14 Thread maximecowez
: [flexcoders] Custom preloader bug I wonder if this is a Flex bug or if I'm doing something wrong: I'm using a custom preloader to first fetch all the data and only then display the application. It does exactly what it's supposed to do, BUT when I open a TitleWindow that has it's

RE: [flexcoders] Re: Custom preloader bug

2008-04-14 Thread Alex Harui
PROTECTED] On Behalf Of maximecowez Sent: Monday, April 14, 2008 9:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Custom preloader bug Well I supposed the FlexEvent.INIT_COMPLETE event got dispatched when the framework had finished loading. Is there another event I have to listen

[flexcoders] TabNavigator scrollbar space - BUG ?

2008-03-25 Thread bobpardoe1959
I have a TabNavigator and I add children to it in actionscript. Each child has its style set to top=2, bottom=2, left=2, right=2. When displayed the tabnavigator has a 20ish pixel gap on bottom and on the right of the container area. Left and top are aligned correctly. It looks as if it is

[flexcoders] Flex 3 Compiler Bug? 1119 Error creating BarChart

2008-03-01 Thread Sherpa_Ed
I had encountered a 1119 error when creating a BarChart using Beta 3 and assumed it would be fixed in the release. Unfortunately, I'm still getting the same bug and am curious if anyone might be able to shed light on what could be the problem - either on my end, or perhaps if this is a known

[flexcoders] Re: Tab Navigator (BUG???)

2008-02-11 Thread Rafael Faria
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Sunday, February 10, 2008 6:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tab Navigator (BUG???) Alex? --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Rafael Faria

RE: [flexcoders] Re: Tab Navigator (BUG???)

2008-02-11 Thread Alex Harui
Not sure. If you can make a small test case, file a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Monday, February 11, 2008 3:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Tab Navigator (BUG

[flexcoders] Re: Tab Navigator (BUG???)

2008-02-10 Thread Rafael Faria
Alex? --- In flexcoders@yahoogroups.com, Rafael Faria [EMAIL PROTECTED] wrote: Hi all, I'm not sure if it's a bug, but i created a module and inside it i have a lot of panels, vbox, and all kind of components. For some reason when the module loads it was sending to my index page with a

RE: [flexcoders] Re: Tab Navigator (BUG???)

2008-02-10 Thread Alex Harui
Navigator (BUG???) Alex? --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Rafael Faria [EMAIL PROTECTED] wrote: Hi all, I'm not sure if it's a bug, but i created a module and inside it i have a lot of panels, vbox, and all kind of components. For some reason when

[flexcoders] Text component drag bug

2008-01-30 Thread philarmon
Hi ! Have someone managed to fix the dragging bug in the Text component ? If you click in the text and drag it down, the text scrolls although no scrolling is needed. The first line becomes invisible - very annoying ! I found this bug in the flex bug database but it is marked as resolved and

[flexcoders] Re: scale nine bug?

2008-01-29 Thread joshuagatcke
I completely understand event.target vs. event.currentTarget, maybe I was not so clear in my post. Any other takers. We have reasons for not testing event.currentTarget in our application, of course I have extremely simplified the example for the sake of this list. Anyhow, I am wondering if

RE: [flexcoders] Re: scale nine bug?

2008-01-29 Thread Alex Harui
Sounds like a bug to me. Please file one. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of joshuagatcke Sent: Tuesday, January 29, 2008 7:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: scale nine bug? I completely

[flexcoders] XMLListCollection.copy drop namespaces - Bug or feature?

2007-12-28 Thread Tom Ortega
Say you have the following XML: sol:Root xmlns:sol=http://www.somesite.com/someurl; sol:Table sol:Row sol:ItemNumber1/sol:ItemNumber sol:ItemNameMyItem/sol:ItemName /sol:Row sol:Row sol:ItemNumber2/sol:ItemNumber

[flexcoders] Re: Moving Buttons - Bug?

2007-12-24 Thread iilsley
Try setting the captureRollEvents property to true .. from the docs .. captureRollEvents property public var captureRollEvents:Boolean If true, prevents Flex from dispatching the rollOut and rollOver events if the mouse has not moved. Set this property to true when you use the Zoom

[flexcoders] Re: Possible mx:SetEventHandler / bug

2007-12-18 Thread rueter007
Hey, I ran your code and I could reproduce the error you got. It seems like a bug in the SetEventHandler code. However, if you add the initial event listener in actionscript, it all works fine. private function init():void { trace(document.toString());

[flexcoders] Re: Possible mx:SetEventHandler / bug

2007-12-18 Thread mydarkspoon
Hi, first of all, thanks for the reply, I had a piece of my main app code commented, so if you just copied and paste it, you won't see the bug immediately, sorry, the fixed code is bellow. I tried to use actionscript addEventListener, yet, the problem with this approach is that SetEventHandlet

[flexcoders] Re: Possible mx:SetEventHandler / bug

2007-12-18 Thread rueter007
I uncommented that line from your code before and did see the error. And I agree that there are two event listeners now. If all you want to do is replace the old event listener with a new one, you can still listen for a state change event and in the event handler, manually remove the old listener

[flexcoders] Re: Possible mx:SetEventHandler / bug

2007-12-18 Thread mydarkspoon
I think I'll use this, it certainly can help hacking this bug, but I can't believe this bug hasn't been talked before, maybe there is less hacky way to deal with it ? Anyway, that really helps me, thank you ! Cheers, Almog Kurtser --- In flexcoders@yahoogroups.com, rueter007 [EMAIL PROTECTED]

Re: [flexcoders] Strange multiple select bug in List

2007-12-03 Thread Ken Dunnington
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ken Dunnington *Sent:* Thursday, November 29, 2007 10:10 AM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] Strange multiple select bug in List I'm having a problem getting allowMultipleSelection to work properly. I have

RE: [flexcoders] Strange multiple select bug in List

2007-12-03 Thread Alex Harui
, December 03, 2007 1:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Strange multiple select bug in List Heh, I wish it were that simple :) Yeah, I know how it *should* work, but the problem is that isn't working. Oh, and you're right about the datatips - my mistake, should've read

[flexcoders] Strange multiple select bug in List

2007-11-30 Thread Ken Dunnington
I'm having a problem getting allowMultipleSelection to work properly. I have a form with a List control that's populated by an ArrayCollection. I cannot seem to get multiple selection or dataTips to work. The code for the list is: mx:ArrayCollection id=pages mx:Object name=Home pageID=1

RE: [flexcoders] Strange multiple select bug in List

2007-11-30 Thread Alex Harui
, November 29, 2007 10:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Strange multiple select bug in List I'm having a problem getting allowMultipleSelection to work properly. I have a form with a List control that's populated by an ArrayCollection. I cannot seem to get multiple

[flexcoders] Re: Help! Datagrid bug?

2007-11-29 Thread yossigordin
time the data is changed. Thanks, Yossi --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Has Adobe refused to fix it? Can you point me to the bug? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yossigordin

Re: [flexcoders] Re: Help! Datagrid bug?

2007-11-29 Thread Tom Chiverton
On Wednesday 28 Nov 2007, Alex Harui wrote: Has Adobe refused to fix it? Can you point me to the bug? Well, one hopes so, on the grounds it's not a bug but an artefact of renderers being recycled. -- Tom Chiverton Helping to authoritatively expedite innovative niches on:

Re: [flexcoders] Re: Help! Datagrid bug?

2007-11-29 Thread Tom Chiverton
On Thursday 29 Nov 2007, yossigordin wrote: Tom, you can't do it with one method. If you try to, it will call the addEventListener each time the data is changed. Eh ? Take out the addEventListener*, or have just that one bit in doInit(), followed by a call to dataChange(). *Or use the 'one

[flexcoders] Re: Help! Datagrid bug?

2007-11-28 Thread yossigordin
, November 27, 2007 6:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Help! Datagrid bug? Hi, I have a DataGrid with an inline itemRenderer. Originally the DataGrid was using an Array as a data source. Everything was fine. Then I changed my datasource to an object containing

Re: [flexcoders] Re: Help! Datagrid bug?

2007-11-28 Thread Tom Chiverton
On Wednesday 28 Nov 2007, yossigordin wrote: Add an event listener for FlexEvent.DataChange in your itemRenderer. In the listener function do your code again. It would be better practice to call your creationComplete handler again, rather than cutting and pasting the code into another method.

RE: [flexcoders] Re: Help! Datagrid bug?

2007-11-28 Thread Alex Harui
Has Adobe refused to fix it? Can you point me to the bug? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yossigordin Sent: Wednesday, November 28, 2007 12:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Help! Datagrid bug

RE: [flexcoders] Re: Flex 3 Bug or Expected Behavior : TileList refresh

2007-11-07 Thread Alex Harui
Since the data prop is not used, there will be no event either. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aejaz_98 Sent: Wednesday, November 07, 2007 8:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex 3 Bug

[flexcoders] Re: Flex 3 Bug or Expected Behavior : TileList refresh

2007-11-07 Thread aejaz_98
:[EMAIL PROTECTED] On Behalf Of aejaz_98 Sent: Tuesday, November 06, 2007 3:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 Bug or Expected Behavior : TileList refresh I have a TileList in my application where each element is rendered by a custom ItemRenderer. Each

[flexcoders] is this a bug? - filter problems - sample app

2007-11-04 Thread joshuagatcke
Is this a flex bug? Run the simple app below, it contains 2 panels with text fields and combo boxes inside each. One panel has a custom drop shadow filter, the other has a normal panel drop shadow. You will notice, if you select the text in the textInput in the panel with the custom filter,

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Decoursey
PROTECTED] On Behalf Of Paul Decoursey Sent: Friday, November 02, 2007 9:38 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Wrapper .svn copies BUG! Subclipse doesn't work with Flex Builder, and I wouldn't use Eclipse for anything else. I'll check it out though. I do think all

RE: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Jim Hayes
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Wrapper .svn copies BUG! Ok, send me a disk image of your setup... because I think you are full of it. I've tried it with the plugin, with subclipse, on a mac, on windows, on a toaster (ok I made that one up) and in all cases it copies

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Booth
Decoursey *Sent:* Friday, November 02, 2007 9:38 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Wrapper .svn copies BUG! Subclipse doesn't work with Flex Builder, and I wouldn't use Eclipse for anything else. I'll check it out though. I do think all these suggestions are nice

RE: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Samuel R. Neff
: [flexcoders] Wrapper .svn copies BUG! Subclipse doesn't work with Flex Builder, and I wouldn't use Eclipse for anything else. I'll check it out though. I do think all these suggestions are nice, but they all just ignore the real problem, there is an issue with FlexBuilder and it should be resolved

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Decoursey
Ok, send me a disk image of your setup... because I think you are full of it. I've tried it with the plugin, with subclipse, on a mac, on windows, on a toaster (ok I made that one up) and in all cases it copies that directory into the build directory. Why is this not configurable? Paul

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Decoursey
November 2007 13:58 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Wrapper .svn copies BUG! Ok, send me a disk image of your setup... because I think you are full of it. I've tried it with the plugin, with subclipse, on a mac, on windows, on a toaster (ok I made that one up

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Decoursey
Subclipse doesn't work with Flex Builder, and I wouldn't use Eclipse for anything else. I'll check it out though. I do think all these suggestions are nice, but they all just ignore the real problem, there is an issue with FlexBuilder and it should be resolved, not worked around. Paul

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-02 Thread Paul Decoursey
My FB rejected 1.0.x. I do have it installed on my Mac version and I find that it kind of sucks, but it's not entirely their fault. I cannot use it for the most part because it seems to do everything based on the root repository and I don't have access to that. I only have access to

[flexcoders] Wrapper .svn copies BUG!

2007-11-01 Thread Paul Decoursey
Please tell me that Flex Builder 3 will not copy .svn directories into the build or at least that we can specify what to include or exclude. This has been one of the biggest time wasters for me for the past year and a half (prior to that I wasted my time more efficiently on many more

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-01 Thread Andriy Panas
Hi, Hmm... This never had occurred to me neither on Flex Builder 2 not Flex Builder 3 Beta 2. I am using Eclipse 3.2 and SVN Tigris plugin (Subclipse) if this matters. If for some reason you continue to experience this unwanted behavior from the Flex Builder with copying .svn folders, you

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-01 Thread Paul Decoursey
So if you have you html-template checked into SVN and you do a build it doesn't copy your .svn files? On Nov 1, 2007, at 5:09 PM, Andriy Panas wrote: Hi, Hmm... This never had occurred to me neither on Flex Builder 2 not Flex Builder 3 Beta 2. I am using Eclipse 3.2 and SVN Tigris

Re: [flexcoders] Wrapper .svn copies BUG!

2007-11-01 Thread Justin Patrin
Not for me with subclipse. On 11/1/07, Paul Decoursey [EMAIL PROTECTED] wrote: So if you have you html-template checked into SVN and you do a build it doesn't copy your .svn files? On Nov 1, 2007, at 5:09 PM, Andriy Panas wrote: Hi, Hmm... This never had occurred to me neither on

[flexcoders] Flash Player 9 BUG?? Regex and Unicode

2007-10-13 Thread Aldo Bucchi
Hi all, I think I just found a bug in my player ( 9,0,60,235 debug ) // we will do some searches over the following string var str:String = lalalALAlalalA; // first regexp is declared using forward slashes ( Unicode 0041 == LATIN CAPITAL 'A' ) var regex1:RegExp =

[flexcoders] NumericStepper Up/Down Bug?

2007-10-04 Thread Matt
I am generating NumericSteppers programmatically in ActionScript and I'm experiencing issues with the stepper up and down. They start out small like I would like them to appear, but when I mouse over the buttons they grow in size. See the following screenshot as an example: Any details as to

  1   2   3   4   >