[flexcoders] Strange behavior....

2008-02-04 Thread Marvin Froeder
I'm making some test with Boolean Flex cast. See: http://www.adobe.com/2006/mxml"; layout="absolute" initialize="main()" > I expect true and false on console. But I got: [SWF] C:\framework\workspace\CobaiaFlex\bin\BooleanTest.swf - 445.501 bytes after decompression

[flexcoders] Strange behavior

2008-05-06 Thread markgoldin_2000
I am trying to implement a checkbox as a headerRenderer: public class CheckBoxHeaderRenderer extends CheckBox { private var _parentGrid:DataGrid = new DataGrid(); public function CheckBoxHeaderRenderer() { super(); selected = true;

Re: [flexcoders] Strange behavior....

2008-02-04 Thread Sherif Abdou
Subject: [flexcoders] Strange behavior I'm making some test with Boolean Flex cast. See: http://www.adobe. com/2006/ mxml" layout="absolute" initialize="main()" > I expect true and false on console. But I got: [SWF] C:\framework\

Re: [flexcoders] Strange behavior....

2008-02-04 Thread Daniel Freiman
You are seeing correct behavior. See: http://livedocs.adobe.com/flex/201/langref/package.html#Boolean() If you want to do what your code intends to do you have to check for the string "true" manually: (variable == "true" ? true : false); - Dan Freiman On Feb 4, 2008 3:00 PM, Marvin Froeder <[

Re: [flexcoders] Strange behavior....

2008-02-04 Thread Sherif Abdou
meant anything other than 0 and false is true but it cant be "false" - Original Message From: Marvin Froeder <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, February 4, 2008 2:00:48 PM Subject: [flexcoders] Strange behavior I'm making some t

Re: [flexcoders] Strange behavior....

2008-02-04 Thread Marvin Froeder
der <[EMAIL PROTECTED]> > To: flexcoders@yahoogroups.com > Sent: Monday, February 4, 2008 2:00:48 PM > Subject: [flexcoders] Strange behavior > > I'm making some test with Boolean Flex cast. > > > See: > > http://www.adobe. com/2006/ > mxml<

RE: [flexcoders] Strange behavior....

2008-02-05 Thread Tracy Spratt
null. Use this instead: (myString == "true") Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marvin Froeder Sent: Monday, February 04, 2008 3:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] S

RE: [flexcoders] Strange behavior

2008-05-06 Thread Alex Harui
Even headerRenderers get recycled. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Tuesday, May 06, 2008 2:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Strange behavior I am trying to implement a

[flexcoders] Strange behavior in datagrid

2006-07-20 Thread Joe Stramel
I have a datagrid in my app that is displaying one row of data BELOW the actual visible control.  Any idea what could cause something like that?   __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail

[flexcoders] Strange behavior on mx:TextArea

2005-12-16 Thread keishichi2001
I think TextArea component is a very simple one. And I use this component any place in my application built with Flex 2. However in particular case, i got following error popup. TypeError: Error #1034: Type Coersion failed: cannot convert flash.events::[EMAIL PROTECTED] to mx.events.IndexChangedEv

RE: [flexcoders] Strange behavior on mx:TextArea

2005-12-16 Thread Abdul Qabiz
:16 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Strange behavior on mx:TextArea I think TextArea component is a very simple one.And I use this component any place in my application built with Flex 2.However in particular case, i got following error popup.TypeError: Error #1034: Type

[flexcoders] Strange Behavior with Font Embeding

2005-06-24 Thread Matthew Shirey
I am getting wierd results while trying to embed fonts in my application.  Many times it reports: Warning /Penguin/SurveyProperties/EditSurvey.mxml:53 Font not found at: file:C:/Program Files/Apache Software Foundation/Tomcat 5.5/webapps/flex/Penguin/SurveyProperties/VERDANA.TTF This simply

[flexcoders] Strange behavior with array filter function

2008-06-13 Thread donvoltz
Can anyone tell me what I am doing wrong with this filter function. I am passing in an array of valueObjects into the following filter function public static function filterCallSchedule(o:*, index:int, arr:Array):Boolean { var modelLocator:AppModelLocator = AppModelLocator.getInstance(); t

[flexcoders] Strange Behavior When Loading Sub Application

2010-05-12 Thread jmbo...@bellsouth.net
Hi, I am experiencing an odd problem and I hope someone knows why. I am loading a sub-application using SWFLoader. I listen for the Event.COMPLETE command. Once the swf is loaded, I then add a listener to the SystemManager for the swf and listen for the FlexEvent.APPLICATION_COMPLETE event.

[flexcoders] Strange behavior with Apache/Tomcat over SSL

2007-02-26 Thread Steven Toth
I have Apache and Tomcat integrated using mod_jk (ajp13). I also have mod_ssl loaded in Apache. I have a web application in Tomcat that is protected via forms authentication. The Main page of the web application displays a Flex app. Everything works fine over HTTP, I'm prompted to authentica

[flexcoders] strange behavior with Horizontal Axis on BarChart

2007-12-07 Thread Mark
I have 2 charts on a page, one shows company projects with a DateTimeAxis showing a timeline from start date to finish date. The other chart shows company events with DateTimeAxis, but the minimum and maximum are read from the min and max off the first charts DateTimeAxis. This way it display

Re: [flexcoders] Strange behavior with array filter function

2008-06-13 Thread jitendra jain
m Sent: Saturday, June 14, 2008 8:22:24 AM Subject: [flexcoders] Strange behavior with array filter function Can anyone tell me what I am doing wrong with this filter function. I am passing in an array of valueObjects into the following filter function public static function filterCallSched

Re: [flexcoders] Strange behavior with array filter function

2008-06-13 Thread jitendra jain
une 14, 2008 8:22:24 AM Subject: [flexcoders] Strange behavior with array filter function Can anyone tell me what I am doing wrong with this filter function. I am passing in an array of valueObjects into the following filter function public static function filterCallSchedule( o:*, index:int, arr

[flexcoders] Strange behavior on a brand new install

2005-06-08 Thread Jeff Steiner
I just installed CF7 and Flex on a fresh install of Win XP and I am having an issue getting my Flex apps to display.   The SWF gets checked and the URL appends versionChecked=true but my screen is white.  If I right click where the Flex application should be I see “movie not loaded” and

RE: [flexcoders] Strange behavior with Apache/Tomcat over SSL

2007-02-26 Thread Carson Hager
ubject: [flexcoders] Strange behavior with Apache/Tomcat over SSL I have Apache and Tomcat integrated using mod_jk (ajp13). I also have mod_ssl loaded in Apache. I have a web application in Tomcat that is protected via forms authentication. The Main page of the web application displays a Fl

[flexcoders] Strange behavior of CheckBox as itemEditor of DataGrid

2007-11-01 Thread George
Hi guys, My DataGrid is listening to itemEditEnd for each itemEditor change. I have a ComboBox and a CheckBox used as itemEditor components in the datagrid. I'm going to make immediate actions to user interaction, like when change selection of a ComboBox, once user select another value, applic

Re: [flexcoders] Strange behavior of CheckBox as itemEditor of DataGrid

2007-11-01 Thread Scott Melby
You probably want to make that column non editable editable="false" and just put a handler on the click event... click="doSomething(event)". hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com George wrote: Hi guys, My DataGrid is listening to itemEditEnd for e

Re: [flexcoders] Strange behavior of CheckBox as itemEditor of DataGrid

2007-11-01 Thread Scott Melby
Sorry... responded too soon and didn't see source code below :( Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Scott Melby wrote: You probably want to make that column non editable editable="false" and just put a handler on the click event... click="doSomething

[flexcoders] Strange behavior of the scroll bar in the Panel

2005-08-23 Thread maricnkg
What am I doing wrong that the scroll bar is not showing last 2 labels??? --START OF THE CODE http://www.macromedia.com/2003/mxml"; width="400" height="100%" vScrollPolicy="off" hScrollPolicy="off">

Re: [flexcoders] Strange behavior of CheckBox as itemEditor of DataGrid (Fixed)

2007-11-01 Thread George
Thanks Scott, I fixed it myself. Another _callLater___ issue. George Scott Melby wrote: > Sorry... responded too soon and didn't see source code below :( > > Scott > > Scott Melby > Founder, Fast Lane Software LLC > http://www.fastlanesw.com > > > > Scott Melby wrote: >> >> You probab

[flexcoders] Strange Behavior on DataGrid Resize - Column Resize below Minimum Width

2007-05-09 Thread iko_knyphausen
Hello all, I am struggling with a very strange behavior: I have a dataGrid with some 15 columns. The grid's horizontalScrollPolicy is set to "auto". This should add a horizontal scrollbar when the conrtrol's client area width is smaller than the column widths added together. So far so good. Now,

Re: [flexcoders] Strange Behavior on DataGrid Resize - Column Resize below Minimum Width

2007-05-11 Thread Tom Chiverton
> I am struggling with a very strange behavior: I have a dataGrid Are you using the 2.0.1-hotfix 1 compiler, or just 2.0.1 ? Hotfix 1 has several updates to the DataGrid. -- Tom Chiverton Helping to biannually utilize cross-platform convergence on: http://thefalken.livejournal.com