[flexcoders] Accessing an object within an array

2010-06-26 Thread Scott
I've got an mxml component that I've created. Below is a simple code sample of what I'm experiencing... Basically I've got a component creating an array of another component. All code hinting was working great for a while. Then, for no apparent reason it stopped working. Now I can still

RE: [flexcoders] Accessing an object within an array

2010-06-26 Thread Scott
Ah. I found a better way to handle this after all this time I spent on it... I assigned a for each loop and modified the object that was assigned to the individual array object. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: --- On Fri, 6/25/10, Amy amyblankens...@... wrote: What is your itemRenderer code? I'm just using the RadioButton, out of the box. I'm setting the itemRenderer property on the DataGridColumn to new

RE: [flexcoders] Accessing an object within an array

2010-06-26 Thread Smin Rana
In such a case you cant have code hinting. Cause you are accessing stuff of array not its properties or method. Also your code wrong i think declare ARRAY in that way always var a:Array = []; Also what are you trying to do in the loop its not clear. Day var should declare here first if i

[flexcoders] Powerflasher FDT4 M3 Live Preview

2010-06-26 Thread fonzibruno
I think you might be particularly interested! The FDT team is giving a preview of the FDT4 Milestone 3 live release at 9:00am (PST) on Tue, Jun 29, 2010 Live Broadcast on:http://www.ustream.tv/channel/fdt4-m3-preview This milestone release is dedicated to Flex 4 and includes support for the new

[flexcoders] How to print full content of TextArea component

2010-06-26 Thread Ramalingam G
Hello everyone, The print() function listed below prints only the visible area of the TextArea component. But, I want to print full contents of the TextArea. private function print():void{ var printResult:PrintJob = new PrintJob(); var output:Sprite = new Sprite(); var

Re: [flexcoders] Re: RadioButton as DataGrid item editor

2010-06-26 Thread Dave Glasser
Thanks! --- On Sat, 6/26/10, Amy amyblankens...@bellsouth.net wrote: From: Amy amyblankens...@bellsouth.net Subject: [flexcoders] Re: RadioButton as DataGrid item editor To: flexcoders@yahoogroups.com Date: Saturday, June 26, 2010, 9:25 AM --- In flexcoders@yahoogroups.com, Dave

[flexcoders] line returns in a tooltip field

2010-06-26 Thread Scott
I'm scratching my head on this one... Can't be any more simple than it is... http://livedocs.adobe.com/flex/3/html/help.html?content=tooltips_3.html I'm trying to set/format the toolTip on a dataGrid so that there's multiple lines in the toolTip. On the dataGrid I have toolTip=This is

Re: [flexcoders] line returns in a tooltip field

2010-06-26 Thread Baz
In flex 4 this works: mx:DataGrid id=b2 width=100 toolTip=Click this button #13; to submit the form./

[flexcoders] Random Erro 2046

2010-06-26 Thread Shawn
I posted this to the adobe forumes several days ago and have not gotten a response. Is anyone else having this problem?: Ever since I upgraded to flashplayer 10 and Flex 4 I have been getting random error 2046 on my Linux system. I am using no RSL's in my application. I am using the open

[flexcoders] TitleWindow titleBar with rollover state.

2010-06-26 Thread Ivan
Hi everyone, Has anyone ever need to use TitleWindow as a pop up where the background colour of the titleBar changes colour when the user hovers the mouse pointer over the title bar? I tried to use a custom ActionScript background skin, but to no success. When I base my custom skin on

[flexcoders] Re: ItemEditor | maxCharacters

2010-06-26 Thread Rajan
I created itemeditor public class TextInputFieldEditor extends TextInput { private var _listData:BaseListData; private var _dataGrid:CheckBoxDataGrid; private var _dataField:String; private var _columnIndex:int;

[flexcoders] textinput blur event

2010-06-26 Thread advancedonsite
I've tried many different types of events to trigger a blur when the user leaves the text box it runs my event but nothing seems to work. Anyone done this before? private function init():void{ VIN.addEventListener(FlexEvent.VALUE_COMMIT, lookupvehicle); //FocusEvent.FOCUS_OUT

Re: [flexcoders] Get all styles at runtime of specific component [2 Attachments]

2010-06-26 Thread dorkie dork from dorktown
So there are two parts to this. I'm reiterating your replies: 1. Get a reference to a component at runtime via code and providing a list of all applicable styles just like design time displays in the property inspector. A: this is not possible to get all the styles of a component unless the

[flexcoders] Compile Modules in AIR Project

2010-06-26 Thread jmfillman
I have a windowedApplication (FB4; AIR 2). I create modules, they are listed as modules in the Project Properties. However, they don't compile to SWF files when I compile the application. The modules aren't compiled when I export it to an AIR installer file either. What am I missing?

Re: [flexcoders] Get all styles at runtime of specific component

2010-06-26 Thread Alex Harui
Good question, ask on the FlexBuilder forum. On 6/26/10 8:28 PM, dorkiedorkfromdorkt...@gmail.com dorkiedorkfromdorkt...@gmail.com wrote: [Attachment(s) #TopText from dorkie dork from dorktown included below] So there are two parts to this. I'm reiterating your replies: 1. Get a

Re: [flexcoders] Re: ItemEditor | maxCharacters

2010-06-26 Thread Alex Harui
You may need to call super.listData On 6/26/10 5:52 PM, Rajan ilikef...@yahoo.com wrote: I created itemeditor public class TextInputFieldEditor extends TextInput { private var _listData:BaseListData; private var _dataGrid:CheckBoxDataGrid; private var _dataField:String; private var