RE: [flexcoders] Re: How to implement custom drawing for selected list items?

2006-03-14 Thread Stephen Gilson
Hi Tobias, There are a few examples in doc for implementing an interface in MXML. You can find one in the Creating Advanced MXML Components chapter of the Creating and Extending Flex Components book, and another in the Working with Cell Editors in the Developing Flex Applications book. Both

RE: [flexcoders] Flex2 documentation - FlexEvent.DATA_OBJECT_CHANGED

2006-03-16 Thread Stephen Gilson
FlexEvent is a class in mx.events. I believe that it is new for Beta 2, so are you using the Beta 1 doc with Beta 2 bits? Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thunderstumpgesatwork Sent: Thursday, March 16, 2006 11:57 AM To:

RE: [flexcoders] Re: Flex2.0 Beta BUG: cellRender/cellEditor

2006-03-16 Thread Stephen Gilson
in getting the cell indices, we need listData. And the documentation says that the cellRenderer has to implement IDropInListItemRenderer interface. But it looks like this set and get methods are never called and so my listData object is always null. --- In flexcoders@yahoogroups.com, Stephen

RE: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stephen Gilson
Sure, there is a chapter on this topic in the Creating Components book at: http://livedocs.macromedia.com/labs/1/flex20beta2/1813.html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stanislav Zayarsky Sent: Thursday, March 23,

RE: [flexcoders] How to create new custom Style in custom component?

2006-03-23 Thread Stephen Gilson
That will work for Flex 2.0 only. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stanislav Zayarsky Sent: Thursday, March 23, 2006 12:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to create new custom Style in

RE: [flexcoders] Formatting cells in datagrid

2006-03-26 Thread Stephen Gilson
Is this data entered by the user? There is an example in the doc of a custom item editor that uses the NumberFormatter with a DataGrid control to format data entered by the user. You can see it here: http://livedocs.macromedia.com/labs/1/flex20beta2/1131.html Otherwise, the doc on item

RE: [flexcoders] Do we submit corrections to Livedocs

2006-03-30 Thread Stephen Gilson
Please submit them using the "Add Comment" button on each Livedocs page. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manuel Saint-VictorSent: Thursday, March 30, 2006 7:11 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Do we submit

RE: [flexcoders] Flex2 :: Documenting :: Effects

2006-03-31 Thread Stephen Gilson
There is an Effect metadata tag in the code, like a Style or Event metadata tag. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael SchmalleSent: Friday, March 31, 2006 10:24 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Flex2 :: Documenting

RE: [flexcoders] Developing Flex Book Example not working in Flex 2 Beta 2

2006-04-21 Thread Stephen Gilson
Can you be more specific on the code that you are trying? What section or page in the book is it in? Thanks, Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sof4real03 Sent: Friday, April 21, 2006 1:06 AM To:

RE: [flexcoders] Re: Developing Flex Book Example not working in Flex 2 Beta 2

2006-04-24 Thread Stephen Gilson
Applications, page 192. I'm trying to build the ValidatingForm.mxml base component. I then will use that base component to create each of the child forms that will eventually be children of the accordian. Any insight? --- In flexcoders@yahoogroups.com, Stephen Gilson [EMAIL PROTECTED] wrote: Can you

RE: [flexcoders] Flex 2.0 b2: List, itemEditEnd event

2006-05-12 Thread Stephen Gilson
If you have Beta 3, you can see an example in the doc here: http://livedocs.macromedia.com/labs/1/flex20beta3/0886.html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Saturday, April 29, 2006 10:45 PM To:

RE: [flexcoders] Re: problems with ApplicationControlBar ...

2006-05-12 Thread Stephen Gilson
borderStyle is not listed as a valid style of ApplicationControlBar. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Thursday, May 11, 2006 1:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re:

RE: [flexcoders] SWFLoader Issues

2006-07-12 Thread Stephen Gilson
There are a couple of examples in the doc that might help: http://livedocs.macromedia.com/flex/2/docs/0543.html http://livedocs.macromedia.com/flex/2/docs/0975.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexnewbie06Sent: Wednesday,

RE: [flexcoders] ActionScript 3: Has anyone been using the new Tween Class

2006-07-13 Thread Stephen Gilson
There are a few examples using Tween in the doc starting here: http://livedocs.macromedia.com/flex/2/docs/1781.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of efeminellaSent: Tuesday, July 11, 2006 3:33 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] Public list of open issues, available?

2006-07-19 Thread Stephen Gilson
You should probably start with the releases notes: http://www.adobe.com/support/documentation/en/flex/releasenotes.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Weyert de BoerSent: Wednesday, July 19, 2006 8:02 AMTo:

RE: [flexcoders] Flex2: Binding from actionscript

2006-07-19 Thread Stephen Gilson
Hi, bindSetter() might not be the best name of that method. It could really be called bindFunction() because you are specifying a function to be called, not a real set method. If you have a real set method, use bindPropety() and specify the property name defined by the set method. You can

RE: [flexcoders] Adobe Resources

2006-07-19 Thread Stephen Gilson
You can access all of the doc, in all available formats, from here: http://www.adobe.com/support/documentation/en/flex/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hindman, JeffSent: Monday, July 17, 2006 3:37 PMTo:

RE: [flexcoders] textInput autocommit?

2006-07-28 Thread Stephen Gilson
focusOut is an inherited event. If you expand the list of inherited events, you will see it. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ryan harlinSent: Friday, July 28, 2006 11:33 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] textInput

RE: [flexcoders] Custom containers in Flex 2

2006-08-23 Thread Stephen Gilson
There is an example in the Creating Components book of creating a subclass of VBox that might be useful: http://livedocs.macromedia.com/flex/2/docs/1737.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jgraham_usSent: Wednesday, August 23, 2006

RE: [flexcoders] How to assign NetStream to VideoDisplay component?

2006-08-25 Thread Stephen Gilson
Hi, There is an example in the VideoDisplay controldoc showing how to connect to FMS: http://livedocs.macromedia.com/flex/2/docs/0546.html I'm not sure if this is exactly your situation, but it might get you started. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: loading whole Application

2006-08-29 Thread Stephen Gilson
Were you not able to find this information in the API guide: http://livedocs.macromedia.com/flex/2/langref/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yaagcurSent: Tuesday, August 29, 2006 7:46 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] checkCellRender Validation

2006-11-07 Thread Stephen Gilson
Hi Valy, In Flex 2, there was an issue with the reason property of the DataGridEvent and ListEvent class not being set properly when you change cell focus. Which example is this? The page you mention takes me to a page with no example on it. Stephen From: flexcoders@yahoogroups.com

RE: [flexcoders] Error in Flex 2.0.1 MX: States Example

2006-11-07 Thread Stephen Gilson
Hi, Can you be more specific as to which example it was? In which book or section of the doc did you find it? Thanks, Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djSent: Tuesday, November 07, 2006 1:58 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] checkCellRender Validation

2006-11-07 Thread Stephen Gilson
kinda stuck right nowThank you for the message.Valy - Original Message From: Stephen Gilson smgil! [EMAIL PROTECTED] e.comTo: [EMAIL PROTECTED]ups.comSent: Tuesday, November 7, 2006 1:24:16 PMSubject: RE: [flexcoders] checkCellRender Validation Hi Valy, In Flex 2, there was an issue

RE: [flexcoders] validation for form reset

2006-11-27 Thread Stephen Gilson
Since validators do not retain state, you do not have to disable/enable them, just set the errorString property of the associated control to '', as in: name.text=''; name.errorString=''; Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] How i can acces to other component of SWF loaded file?

2006-12-06 Thread Stephen Gilson
This won't answer all of your questions, but the doc has an example of using the SWFLoader control to load a SWF and then interact with it: http://livedocs.macromedia.com/flex/2/docs/0543.html SMG From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] customising preloader

2006-12-14 Thread Stephen Gilson
There is an example in the doc starting here: http://livedocs.macromedia.com/flex/2/docs/0647.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Thursday, December 14, 2006 11:25 AM To:

RE: [flexcoders] Creating Events

2006-12-17 Thread Stephen Gilson
There is a chapter in the Creating Components book on this topic: http://livedocs.macromedia.com/flex/2/docs/1640.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John C. Bland II Sent: Thursday, December 14, 2006 11:02

RE: [flexcoders] Re: BindSetter?

2006-12-19 Thread Stephen Gilson
Just a note, we added several examples on bindSetter() to the docs for the 2.0.1 release. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of maikelsibbald Sent: Tuesday, December 19, 2006 12:57 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Docs included in 2.0.1 are broken

2007-01-08 Thread Stephen Gilson
There is a period at the end of that URL. Try this one: http://www.adobe.com/go/flex_documentation_zip Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of DannyT Sent: Monday, January 08, 2007 10:18 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Drag and Drop within TileList - why does my code copy instead of move?

2007-01-09 Thread Stephen Gilson
I did not run the code, but two things jump out at me. In your doDragEnter event, you have this: else { DragManager.NONE; } DragManager.NONE is a constant, and I'm not sure what you are trying to do. In

RE: [flexcoders] Replacement of headerRenderer of Datagrid??

2007-01-12 Thread Stephen Gilson
headerRenderer is a property of DataGridColumn. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Friday, January 12, 2007 2:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Replacement of headerRenderer

RE: [flexcoders] Some AS3 component troubles

2007-01-15 Thread Stephen Gilson
You can find the Creating and Extending Flex 2 Components doc here: http://livedocs.macromedia.com/flex/201/html/Part3_CreateComps_135_1.html You can also try the Flex QuickStart for building components in ActionScript: http://www.adobe.com/devnet/flex/quickstart/building_components_in_as/

RE: [flexcoders] Re: title window on app first run

2007-01-18 Thread Stephen Gilson
There are several examples in the doc starting here: http://livedocs.macromedia.com/flex/201/html/layouts_065_43.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jonalexander370 Sent: Wednesday, January 17, 2007 3:57 PM To:

RE: [flexcoders] Trouble coding AS Effect

2007-01-22 Thread Stephen Gilson
Hi, You use the setStyle() method to apply effects in AS. There are a few examples in the doc: http://livedocs.macromedia.com/flex/201/html/behaviors_068_03.html http://livedocs.macromedia.com/flex/201/html/behaviors_068_09.html Are these the same ones that you saw in the help? Stephen

RE: [flexcoders] Binding a property to a function

2007-01-29 Thread Stephen Gilson
There are several examples in the updated data binding doc on the Flex Doc blog: http://blogs.adobe.com/flexdoc/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Uhlmann Sent: Friday, January 26, 2007 11:27 AM To:

RE: [flexcoders] List of styles for the StyleName properties

2007-01-30 Thread Stephen Gilson
There is an issue with LiveDocs that the Add Comment button is not appearing on some pages - most of the affected pages seem to be in the API reference. This should be fixed soon. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Does asdoc work??

2007-01-31 Thread Stephen Gilson
Have you checked the doc on ASDoc: http://livedocs.macromedia.com/flex/201/html/asdoc_127_1.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tvikatos Sent: Wednesday, January 31, 2007 11:56 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Does asdoc work??

2007-01-31 Thread Stephen Gilson
to become friendlyer than command line and give meaningful feedback... --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Stephen Gilson [EMAIL PROTECTED] wrote: Have you checked the doc on ASDoc: http://livedocs.macromedia.com/flex/201/html/asdoc_127_1.html http

RE: [flexcoders] ASDoc ignoring [Bindable] properties in mxml files

2007-02-02 Thread Stephen Gilson
Do you have a test file that I can try? I just ran ASDoc on Button.as, which inserts [Bindable] before setter/getters for labelPlacement, listdata, and several other properties and it works as expected. I then modified Slider.as to add [Bindable] before allowThumbOverlap and allowTrackClick and

RE: [flexcoders] datechooser bug?

2007-02-05 Thread Stephen Gilson
You have to check that selectedDate is not null. From the do at http://livedocs.macromedia.com/flex/201/langref/mx/controls/DateChooser. html#selectedDate Selecting the currently selected date in the control deselects it, sets the selectedDate property to null, and then dispatches the change

RE: [flexcoders] Flex books

2007-02-05 Thread Stephen Gilson
There are 30 or so short 'QuickStart' articles on the Flex Dev Center for people new to Flex: http://www.adobe.com/devnet/flex/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pan Troglodytes Sent: Monday, February 05, 2007

RE: [flexcoders] dropEnabled property of Image tag?

2007-02-08 Thread Stephen Gilson
Only drop targets that are subclasses of ListBase (such as List, Tree, DataGrid) have a dropEnabled property. For all other components, you have to handle the dragEnter and dragDrop drag events. For more information, see the doc here:

RE: [flexcoders] If Flex 2 Livedocs still supported or we shall move on to Flex 2.0.1 Livedocs?

2007-02-21 Thread Stephen Gilson
Hi, I just opened http://livedocs.adobe.com/flex/2/langref/mx/controls/Tree.html in FireFox and IE, clicked the 'Frames' link at the top of the page to open the class and package lists, and navigated the pages. What errors are you seeing? Stephen From:

RE: [flexcoders] Re: Custom Component Styles

2007-02-27 Thread Stephen Gilson
Hi Graham, Isn't that similar to the example in the docs here: http://livedocs.adobe.com/flex/201/html/skinstyle_149_7.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g_odds Sent: Monday, February 26, 2007 11:55 AM To:

RE: [flexcoders] How can I access public members of custom MXML component using inline statemen ?

2007-03-01 Thread Stephen Gilson
There is a section in the doc on creating and accessing properties in MXML components: http://livedocs.adobe.com/flex/201/html/mxmlcomponents_advanced_145_03.h tml Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of helihobby Sent:

RE: [flexcoders] Drag Drop Compiler Bug/Problem

2007-03-06 Thread Stephen Gilson
One thought is that the doc specifies to use a container as a drop target, you must use the backgroundColor property of the container to set a color. Otherwise, the background color of the container is transparent, and the Drag and Drop Manager is unable to detect that the mouse pointer is on a

RE: [flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Stephen Gilson
There is an entire chapter in the docs on this topic that might help: http://livedocs.adobe.com/flex/201/html/embed_082_1.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Friday, March 09, 2007 12:39

RE: [flexcoders] tutorials for writing custom classes

2007-03-16 Thread Stephen Gilson
There are several places that you can start. From the Flex Dev Center, try the 4 Quickstarts on creating components: http://www.adobe.com/devnet/flex/ From the doc, there is an entire book on the subject: http://livedocs.adobe.com/flex/201/html/Part3_CreateComps_135_1.html Stephen

RE: [flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-19 Thread Stephen Gilson
There is an example in the doc showing this: http://livedocs.adobe.com/flex/201/html/controls_059_20.html Was that helpful? Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Wilker Sent: Friday, March 16, 2007 10:28 AM To:

RE: [flexcoders] Re: using videoDisplay with netstream (FMS)

2007-03-19 Thread Stephen Gilson
There is an example in the doc showing this: http://livedocs.adobe.com/flex/201/html/controls_059_20.html Was that helpful? Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of John Wilker Sent: Friday, March 16, 2007 10:28 AM To:

RE: [flexcoders] About dialog boxes

2005-04-21 Thread Stephen Gilson
You can get more info on Alerts from the doc here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0318.htm For info on using TitleWindows with the PopUpManager, see: http://livedocs.macromedia.com/flex/15/flex_docs_en/0375.htm Stephen From: flexcoders@yahoogroups.com

RE: [flexcoders] Creating custom components with Flash

2005-04-21 Thread Stephen Gilson
There is documentation on the process here: http://download.macromedia.com/pub/documentation/en/flex/15/flex_components_themes.pdf However, the note is correct - this process supports creating components for Flex 1.5 for backward compatibility with Flex 1.0. Stephen From:

RE: [flexcoders] ActionScript Components

2005-04-22 Thread Stephen Gilson
Title: Message Excuse me for the late reply, but you are coming across a known limitation when creating an MXML component that uses a container as its base tag. If you define the mxml component to contain a child, you cannot add a child to it when you use the tag. In order to be able to

RE: [flexcoders] how to modify the loading interface while a MXML file is transfering

2005-04-28 Thread Stephen Gilson
You can find information on the preloader in the docs here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0323.htm Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lwz7512 Sent: Monday, April 25, 2005 11:18 PM To:

RE: [flexcoders] Flex API Docs - Feature request

2005-05-15 Thread Stephen Gilson
LiveDocs is a great way to make a request to the Flex doc group, but we also participate in this group as well. The advantage to using LiveDocs is that your comment appears on the Tree API doc pagefor all other Flex users to see if they encounter the same issue. Stephen Flex Doc From:

RE: [flexcoders] HOw to change the foldericon of the tree dynamically acording to some condition?

2005-05-18 Thread Stephen Gilson
There is an example in the doc for this at: http://livedocs.macromedia.com/flex/15/flex_docs_en/0249.htm Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: Wednesday, May 11, 2005 10:12 PMTo: flexcoders@yahoogroups.comSubject: RE:

RE: [flexcoders] using the Style control tag

2005-05-19 Thread Stephen Gilson
In an MXML component, one that does not contain the mx:Application tag, you cannot define a type selector, only a class selector. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abdul Qabiz Sent: Thursday, May 19, 2005 2:06 PM To:

RE: [flexcoders] style a validator output

2005-06-07 Thread Stephen Gilson
You can use the ErrorTip style: mx:Style ErrorTip { borderColor: #00FF00 } /mx:Style Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Spaulding Sent: Tuesday, June 07, 2005 4:32 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] custome controls-How?

2005-06-17 Thread Stephen Gilson
There are several documents on the Flex Documentation page that describe this process: http://www.macromedia.com/support/documentation/en/flex/1_5/createcompon ents/index.html http://www.macromedia.com/devnet/flex/articles/creating_comp.html Stephen -Original Message- From:

RE: [flexcoders] 'fade effect' question

2005-06-19 Thread Stephen Gilson
From the doc: Note: To use the Fade effect with text, you must use an embedded font, not a device font. For more information, see Using Styles and Fonts. You can read more here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0590.htm Stephen -Original Message- From:

RE: [flexcoders] How do you set the amount of characters in a text area control

2005-06-24 Thread Stephen Gilson
There is, you can see the API here: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/validators/StringValidator.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Friday, June 24, 2005 11:45 AMTo:

RE: [flexcoders] Re: ComboBox 'Please Select' first Item

2005-06-30 Thread Stephen Gilson
The difference is that addItemAt() is a method of the List class (inherited from ScrollSelectList), which is howyou calledit. It is documented here as part of List: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/List.html The addItemsAt() method is on the DataProvider

RE: [flexcoders] Flex audio sample did't work

2005-07-05 Thread Stephen Gilson
The links to the MP3 files in these examples are not to real MP3 files. In the example with the line: [Embed('bluechristmas.mp3')] Replace bluechristmas.mp3 with the name of an MP3 file on your machine. Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Dataprovider API documentation bug !

2005-07-12 Thread Stephen Gilson
Are you looking at this link for the DataProvider class: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/listclasses /DataProvider.html it shows the description of addItem() as: addItem addItem( value) : Void Adds an item to the end of the array. Dispatches a modelChanged event

RE: [flexcoders] ToolTips on Tree Nodes?

2005-07-13 Thread Stephen Gilson
There is a section in the doc on this at: http://livedocs.macromedia.com/flex/15/flex_docs_en/1040.htm Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sauro, NickSent: Tuesday, July 12, 2005 1:49 PMTo: flexcoders@yahoogroups.comSubject: RE:

RE: [flexcoders] event creation

2007-03-29 Thread Stephen Gilson
There is also a chapter in the doc on this topic: http://livedocs.adobe.com/flex/201/html/createevents_140_1.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Tuesday, March 27, 2007 11:18 AM To:

RE: [flexcoders] Re: Okay, I know this is possible...DataGrid to Tree

2007-04-24 Thread Stephen Gilson
While it is not exactly what you want, there is an example with runnable code in the updated Drag and Drop doc on the Flex Doc Blog that shows how to drag from a List to a DataGrid. It requires that you modify the dragged data as part of the drop to make it compatible with the DataGrid.

RE: [flexcoders] Documenting ... args with ASDoc

2007-05-10 Thread Stephen Gilson
Hi, Basically, we explain it all in the description for the parameter. Like: * @param ...args A value of any data type (such as numbers, elements, or strings), etc. etc. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark

RE: [flexcoders]How do States and Transitions relate?

2007-05-25 Thread Stephen Gilson
You might want to take a look at the updated states doc that we just pushed on the Flex Doc blog: http://blogs.adobe.com/flexdoc/ Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jandersen1978 Sent: Friday, May 25, 2007 2:41 PM

RE: [flexcoders] How to put MXML example into ASDOC?

2007-06-05 Thread Stephen Gilson
You have to remove all literal and characters in the ASDoc comment and replace them with lt; and gt;. Otherwise, they get interpreted by the browser. Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tddclare Sent: Tuesday, June

RE: [flexcoders] ASDoc for MXML components?

2007-06-07 Thread Stephen Gilson
There is only limited support in ASDoc for MXML files. - All ActionScript entities defined in an mx:Script block, such as properties and methods, appear in the output. Items defined in MXML tags do not appear in the ASDoc output. - You can only insert an ASDoc comment in an mx:Script block of

RE: [flexcoders] asdocs for as3 and ant files

2007-09-17 Thread Stephen Gilson
Hi, When you open the Help in FlexBuilder, do you see an entry for the doc called Adobe Flex 3.0 Help? Under that should be an entry for Adobe(r) Flex(tm) 3 Language Reference. You cannot build the ASDoc for yourself using the build.xml file in \moxie\asdoc. Stephen -Original

RE: [flexcoders] asdocs for as3 and ant files

2007-09-18 Thread Stephen Gilson
that ... Thanks .. I can not build asdocs using the build files..but .. just curious.. why those files are there? Can you please share ur knowledge? Regards Mayur On 9/17/07, Stephen Gilson [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi, When you open the Help

RE: [flexcoders] Re: Specifying LineSeries itemRenderer with Actionscript

2006-08-31 Thread Stephen Gilson
For documentation on renderers, there are a few places you can go. To get you started, there is a general discussion of item renderers and editors, including using the Component tag, here: http://livedocs.macromedia.com/flex/2/docs/0820.html There is a description in that chapter of

RE: [flexcoders] deploying Flex App to the server

2006-09-05 Thread Stephen Gilson
One place where you can find more information is the Flex "Building and Deploying Flex 2 Applications" book here: http://livedocs.macromedia.com/flex/2/docs/Part7_Build_Deploy.html Please let me know if this helps, Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] validators in datagrid colmun

2006-09-11 Thread Stephen Gilson
There is an example in the doc for this situation: http://livedocs.macromedia.com/flex/2/docs/0873.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of KumarSent: Monday, September 11, 2006 2:44 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] adding items to combo box

2006-09-21 Thread Stephen Gilson
Are you searching on livedocs here: http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=""> I get 10 hits for addItem and addItem(). Or are you searching in Flex Builder? I get even more, the first being to an example using addItem(). Stephen From:

RE: [flexcoders] Re: tabbing in flex

2006-09-26 Thread Stephen Gilson
There is some mention of implementing IFocusManager in the doc. In the Creating Components book when describing how to implement AS components: http://livedocs.macromedia.com/flex/2/docs/1727.html And an example in the doc on creating item editors:

RE: [flexcoders] Re: tabbing in flex

2006-09-26 Thread Stephen Gilson
There is some mention of implementing IFocusManager in the doc. In the Creating Components book when describing how to implement AS components: http://livedocs.macromedia.com/flex/2/docs/1727.html And an example in the doc on creating item editors:

RE: [flexcoders] Pounds and currencyFormatter

2006-09-27 Thread Stephen Gilson
Try this: mx:CurrencyFormatter id=usdFormatter precision=2 currencySymbol=#163; decimalSeparatorFrom=. decimalSeparatorTo=. useNegativeSign=true useThousandsSeparator=true alignSymbol=left/ Stephen -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] General question about bindings and similarities with Cocoa bindings?

2006-10-09 Thread Stephen Gilson
Hi, Binding is event driven. There is information about the binding mechanism in the doc here: http://livedocs.macromedia.com/flex/2/docs/1653.html It describes the event mechanism used by data binding, and how to use that mechanism in your application. Stephen From:

RE: [flexcoders] Custom validator example from Help not working?

2006-10-19 Thread Stephen Gilson
The problem with that example is that it validates a data model with multiple fields, but the validator only takes a single listener property to specify where to display the validation error. Could your custom validator add additional listener properties, as does the Flex

RE: [flexcoders] hidden interfaces (was: Re: List.getLength)

2005-02-22 Thread Stephen Gilson
The List class does mixin DataSelector, so that is how you can use getLength(). There is an error in the doc - getLength() should have been listed as a method of List. Stephen Gilson Flex Doc -Original Message- From: Markus Ansamaa [mailto:[EMAIL PROTECTED] Sent: Monday, February 21

RE: [flexcoders] Context menu

2004-05-06 Thread Stephen Gilson
There is also an example in the Explorer using context menus. Stephen -Original Message-From: Alistair McLeod [mailto:[EMAIL PROTECTED]Sent: Thursday, May 06, 2004 11:28 AMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] Context menuHi Steve,I can't remember seeing

RE: [flexcoders] form validation

2005-03-03 Thread Stephen Gilson
As an experiment, I created a RadioButtonGroup validator as a custom validator to determine is a user neglected to select a RadioButton in a RadioButtonGroup: class RBValidator extends mx.validators.Validator {public function RBValidator () { super(); } public function doValidation(value)

RE: [flexcoders] ViewStack resizing

2005-02-15 Thread Stephen Gilson
Did you look in the Flex 1.5 version of the API docs? resizeToContent is documented there. http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/ViewStack.htm l Stephen Gilson Flex Doc -Original Message- From: Mika Kiljunen [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15

RE: [flexcoders] Re: UI Style Guide

2005-02-25 Thread Stephen Gilson
Hi David, Do you mean a style guide for how we implemented our existing components, or a style guide for building them. Stephen Flex Doc -Original Message- From: David Solis [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 23, 2005 2:20 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Question about deprecated attributes

2005-02-04 Thread Stephen Gilson
For information on deprecated properties, and migrating from Flex 1.0 to Flex 1.5, you can access the Migration Guide from the FlexDoc site: http://macromedia.com/support/documentation/en/flex/1_5/migration.html Stephen Gilson From: Matt Chotin [mailto:[EMAIL PROTECTED] Sent: Friday

RE: [flexcoders] ActionScript Components

2005-04-06 Thread Stephen Gilson
There are articles on the Macromedia web site that you can use: Creating Advanced Components: http://www.macromedia.com/support/documentation/en/flex/1_5/createcomponents/index.html Flex Component Basics -two part article Part 1:

RE: [flexcoders] JavaDoc style docs for Flex PLUS Actionscript 2

2005-04-06 Thread Stephen Gilson
The 'Flex ActionScript Language Reference Version 1.5' book is included with Flex and is available in LiveDocs with all of the other Flex doc at: http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/js/ht ml/wwhelp.htm Unfortunately, that content is not available in the JavaDoc

RE: [flexcoders] Re: mx:Tree: how to change default icons

2005-04-09 Thread Stephen Gilson
You can see an example in the doc here: http://livedocs.macromedia.com/flex/15/flex_docs_en/0273.htm Stephen -Original Message- From: Ghislain Simard [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 1:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Flex Containers.

2005-04-18 Thread Stephen Gilson
resizeToContent is documentated as part of the Flex API. You can see it here: http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/ViewStack .html Stephen -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent:

RE: [flexcoders] Creating that Validator popup message? (Flex 2.0)

2006-02-01 Thread Stephen Gilson
From the validator doc: The UIComponent class defines the errorString property that you can use to show a validation error for a component, without actually using a validator class. When you write a String value to the UIComponent.errorString property, Flex draws a red border around the

[flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-02 Thread Stephen Gilson
All, We are looking for feedback on the Flex API documentation. This documentation is titled Macromedia Flex 2 ActionScript and MXML Language Reference and is available from Flex Builder Help, or in a standalone form. We modeled this documentation on JavaDocs. So, if you are familiar with

RE: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-03 Thread Stephen Gilson
mid going!Peace, Mike On 2/2/06, Stephen Gilson [EMAIL PROTECTED] wrote: All,We are looking for feedback on the Flex API documentation. Thisdocumentation is titled "Macromedia Flex 2 ActionScript and MXMLLanguage Reference" and is available from Flex Builder Help, or in astand

RE: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-03 Thread Stephen Gilson
To: Stephen Gilson Subject: Re: [flexcoders] Flex 2 - Looking for feedback on Flex API doc We modeled this documentation on JavaDocs. So, if you are familiar with JavaDocs, it should look pretty familiar. You can see it here: Will there be a tool in the free release of Compiler/Framework

RE: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-06 Thread Stephen Gilson
for feedback on Flex API doc On 2/3/06, Stephen Gilson [EMAIL PROTECTED] wrote: 1. ... We have a request to split the public and protected methods into separate tables, so that you do not see the protected methods if you are using the class, but view them only when you are creating a subclass

RE: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-07 Thread Stephen Gilson
:[EMAIL PROTECTED] On Behalf Of Chris Velevitch Sent: Monday, February 06, 2006 6:28 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 2 - Looking for feedback on Flex API doc On 2/7/06, Stephen Gilson [EMAIL PROTECTED] wrote: For your comment on issue #4, we are planning on adding

RE: [flexcoders] Understanding UIComponent

2006-03-03 Thread Stephen Gilson
There is indeed a book - It is called "Creating and Extending Flex Components" and you can find it at: http://labs.macromedia.com/wiki/index.php/Flex:Release_Notes#Beta_1_documentation This page lists the order of events when you create a component:

  1   2   >