RE: [flexcoders] another screwing from microsoft

2006-03-30 Thread Paul Frantz
If you're Flex 1.5-ing apparently you need this hotfix. http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=ace0407 Cheers, Paul. -Original Message-From: Andy Johnston [mailto:[EMAIL PROTECTED]Sent: Thursday, 30 March 2006 14:59To:

RE: [flexcoders] instanceof on Object

2005-11-30 Thread Paul Frantz
Hmm might be missing something here but Joe's suggestion in http://www.mail-archive.com/flexcoders@yahoogroups.com/msg09275.html works ok. eg.. Fred.as class Fred { public function Fred() {} } App.mxml mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*"

[flexcoders] fdb and flash debug player 8

2005-09-14 Thread Paul Frantz
Title: fdb and flash debug player 8 Any word on whether we'll get a Flex 1.5 update with a new fdb supporting a new flash 8 debug player? Thinking about deploying our product's next release on 8 but don't know if I can recommend it if I can't debug it. Cheers, Paul. ~~--- This

[flexcoders] creationPolicy=queued only works in application mxml?

2005-08-03 Thread Paul Frantz
Title: creationPolicy=queued only works in application mxml? Hi, Just wanted to make sure I'm not missing something. I tried changing the Flex doc example at http://livedocs.macromedia.com/flex/15/flex_docs_en/1152.htm to application.mxml... mx:Application

[flexcoders] DataGrid column resizing

2005-04-12 Thread Paul Frantz
Hi all, I've been trying to make my DataGrid's resize appropriately when their parent containers are resized but there is no joy to be had. When you run the following demo code mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; load=myLoad() mx:Script

RE: [flexcoders] DataGrid column resizing

2005-04-12 Thread Paul Frantz
ridColumn headerText="25%"/ mx:DataGridColumn headerText="50%"/ mx:DataGridColumn headerText="25%"/ /mx:Array /common:columns /common:SMDataGrid /mx:Application This is big hack but seems to avoid the redraw nastiness. But of course its using 'undocumented interna

RE: [flexcoders] DataGrid column resizing

2005-04-12 Thread Paul Frantz
quot;/ mx:DataGridColumn headerText="50%" width="{datagrid.width * .25}"/ mx:DataGridColumn headerText="25%" width="{datagrid.width * .25}"/ /mx:Array /mx:columns /mx:DataGrid /mx:Application -Original Message-From: Paul Frantz [mailto:[EMAIL PROTECTED]Sent:

RE: [flexcoders] Left aligned form labels

2005-03-11 Thread Paul Frantz
Yep :) But the following seems to do the trick... test.mxml ?xml version="1.0" encoding="iso-8859-1"? mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*" mx:Form HackedFormItem label="small label" mx:TextInput / /HackedFormItem HackedFormItem label="really big label"

DateField memory leak

2005-03-02 Thread Paul Frantz
Hi all, I've been trying to track down a memory leak in our app and I believe I've tracked it down to the DateField widget. It appears that if I select a date programmatically and then delete the component memory usage starts to creep up and is seemingly never garbage collected. The sample code