[flexcoders] Update to Flex SDK 3.5 Released

2010-02-02 Thread Deepa Subramaniam
lease Build" table here: http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+3. Thank you, Deepa Subramaniam Flex SDK Product Manager

RE: [flexcoders] Building components at runtime

2009-11-04 Thread Deepa Subramaniam
u to community/blogosphere resources. deepa Flex SDK Team -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of prodanzr Sent: Wednesday, November 04, 2009 8:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Building components at

RE: [flexcoders] Re: Does DataGroup support XML?

2009-10-23 Thread Deepa Subramaniam
dataProvider-aware controls. As part of this, we now don't auto-wrap raw data like Array or XML into ArrayCollections or XMLListCollections, which is why you need to do that manually. Cheers, Deepa Subramaniam Flex SDK Engineer From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.co

[flexcoders] Custom Authentication with Tomcat

2009-07-23 Thread deepa
lue it it asking for. Any inputs would be highly appreciated. Thanks, Deepa

[flexcoders] Getting User Information and Session Info using FlexContext

2009-07-01 Thread deepa
, would be highly appreciated. Thanks & Regards, Deepa

RE: [flexcoders] Menubar Styling

2008-06-20 Thread Deepa Subramaniam
You can style the MenuBar by setting styles as attributes, or through ActionScript, on the MenuBar directly. To style the menus popped open by the MenuBar, you can loop through them in ActionScript and set styles on the Menu instances as appropriate. To loop through the MenuBar, you can use the ge

RE: [flexcoders] Styling of Invalid Inputs (Urgent)

2008-01-16 Thread Deepa Subramaniam
&file=tooltips_074_13.html Except in that example they create the tooltip themselves (which is also an option for you) :-) deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ethan Miller Sent: Wednesday, January 16, 2008 12

RE: [flexcoders] PopUpButton issue

2008-01-16 Thread Deepa Subramaniam
, January 16, 2008 12:47 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] PopUpButton issue Deepa - Thanks! It seems you could avoid the memory leak without nulling _popUp couldn't you? i.e. just call PopUpManager.removePopUp(_popUp) without the following line that null

RE: [flexcoders] Bolding a ContextMenuItem or NativeMenuItem

2008-01-16 Thread Deepa Subramaniam
Unfortunately this is not possible with the current ContextMenu API's. People have popped up Flex Menus upon right-click by the user (ie: simulating context menus) and the Flex menu control allows for rich styling. deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[

RE: [flexcoders] Using Popup menu

2008-01-16 Thread Deepa Subramaniam
Check out the PopUpManager and examples in the documentation. This shows exactly how off a button click event you can create a popup component. deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Preet Sent: Tuesday, January

RE: [flexcoders] PopUpButton issue

2008-01-16 Thread Deepa Subramaniam
This chunk of code was added on purpose, to avoid problematic memory leaks with popup components. In Jira you can see it was fixed to address SDK bug 13104. We were not correctly unregistering popup children when necessary. Your workaround is correct, so feel safe using it :) https://bugs.adobe.c

RE: [flexcoders] Styling of Invalid Inputs (Urgent)

2008-01-16 Thread Deepa Subramaniam
Check out the errorColor style on UIComponent. This controls the color of the highlight when validation fails on a user interface control. By default, its red. deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ethan Miller Sent: Wednesday

RE: [flexcoders] Flash player fullscreen and text inputs

2008-01-15 Thread Deepa Subramaniam
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Deepa Subramaniam Sent: Tuesday, January 15, 2008 11:29 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flash player fullscreen and text inputs I just talked to a colleague about this. Apparently

RE: [flexcoders] Flash player fullscreen and text inputs

2008-01-15 Thread Deepa Subramaniam
capturing keystrokes and sending it back to Flash via the ExternalInterface APIs. Goodluck, deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Anzer Sent: Monday, January 14, 2008 9:55 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Menu Seprator color

2008-01-10 Thread Deepa Subramaniam
You can specify a skin that the Menu uses as the separator. Check out the separatorSkin style. There are examples of how to create graphical skins (using Flash, Fireworks, etc) or programmatic skins (creating an ActionScript file that draws the skin via the Flash drawing API) in the Flex documentat

RE: [flexcoders] Set menuBar dataProvider per AS

2008-01-09 Thread Deepa Subramaniam
Try calling your setUpMenuBar() method on the MenuBar's creationComplete event and add menuBarRef.validateNow() after setting the dataProvider property. validateNow() forces the menuBar to do an invalidation pass, which calls the MenuBar's commitProperties method which is necessary to get the data

RE: [flexcoders] which Flex componet is similar to HTML table?

2008-01-09 Thread Deepa Subramaniam
Check out the Grid layout container, or using ConstraintColumn/ConstraintRow objects to create a table-like layout in any of the absolute positioning layout containers (Canvas, Panel, Application, etc). -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

RE: [flexcoders] Problem with Horizontal grid lines matching data in a datagrid

2007-12-17 Thread Deepa Subramaniam
I see this issue in Flex 2 but it doesn't seem to occur in the latest beta of Flex 3. Can you upgrade to Flex 3 (beta 3)? -deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of victor chan Sent: Friday, December 14, 2007 4:02

RE: [flexcoders] adding backgroundColor to Canvas retains images after removeAllChildren()?

2007-12-17 Thread Deepa Subramaniam
I can't reproduce this but I just tried a simple case. Can you share some code highlighting the problem (and/or file a bug at bugs.adobe.com)? Thanks, deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Sent: Monday, December 17, 2

RE: [flexcoders] How to close dorp-down list in ComboBox components

2007-12-13 Thread Deepa Subramaniam
Refer to the ComboBox by its id and invoke close() on it, a la: -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Thursday, December 13, 2007 12:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to close dorp-down

RE: [flexcoders] Spacer in MenuBar

2007-12-11 Thread Deepa Subramaniam
Check out the code below. You can pre-set the width of the MenuBar item you want to act as a spacer (just be sure to disable it otherwise it will respond to mouse activity). Individual MenuBar items are accessible off the main MenuBar control via the 'menuBarItems' property. Unfortunately, separato

RE: [flexcoders] moving a LinkBar

2007-11-02 Thread Deepa Subramaniam
Use a boolean flag to track whether the LinkBar has already received its first click (in which case play the move effect) or not. private var clickedOnce:Boolean = false; private function handleClick(event:ItemClickEvent):void { if (!clickedOnce) {

RE: [flexcoders] Why is mouseOut being called?

2007-11-02 Thread Deepa Subramaniam
Mouse events bubble. Tou're seeing mouseOver/mouseOut events from the HBoxes, VBoxes, UITextFields, etc that are children of the Canvas. You can determine if the Canvas is the display object processing the event by querying the currentTarget property on the event object. -Original Message

RE: [flexcoders] Re: Joining two (or more) ArrayCollections

2007-10-22 Thread Deepa Subramaniam
ent getItem() calls (basically, getItem() should see if a merged object already exists for that index and return that, otherwise build up a new merged object). Also, implement IUID so that the merged objects have a unique ID which is required by the list controls. HTH - deepa -Original

RE: [flexcoders] nested layout containers - file size or other concerns

2007-06-06 Thread Deepa Subramaniam
nesting. Check out the tips and tricks here: http://www.adobe.com/devnet/flex/articles/client_perf_04.html Deepa Subramaniam Adobe, Flex -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Wednesday, June 06, 2007 1:54 PM To: flexcoders

[flexcoders] Hiding of datagrid header

2007-03-30 Thread deepa golamudi
Hai everybody. Can i get a clue of how can we hide the header of the datagrid control in flex. Thanks in advance Deepa - Here’s a new way to find what you're looking for - Yahoo! Answers

[flexcoders] Datagrid Help

2007-03-26 Thread deepa golamudi
args[]) { TableData q=new TableData(); ArrayList a = new ArrayList(); a=q.getdatas("Report"); int j=0; for (int i = 0; i < a.size(); i++) { System.out.println((a.get(i))); j++; System.out.println(j); } } } Deepa - Here’s a new way to find what you're looking for - Yahoo! Answers

RE: [flexcoders] Selecting datagrid row on rollover...

2007-01-29 Thread Deepa Subramaniam
DataGrid dispatches itemRollOver and itemRollOut events where the event type is mx.events.ListEvent. A ListEvent event object has the rowIndex property which indicates the index of the row that contains the item that was rolled over/out of. -deepa -Original Message- From: flexcoders

RE: [flexcoders] Multi-select not happening! - bug?

2006-12-06 Thread Deepa Subramaniam
Hank, you are correct. Multiple selection was disabled in the Tree for the Flex 2 release. We have re-enabled it in the next version of Flex which should be out soon. -deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank

RE: [flexcoders] Fade from one color to another

2006-12-06 Thread Deepa Subramaniam
What about overriding the onTweenUpdate event handlers didn't work? I'll try to whip together an example that works in the next day or two. -deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dor

RE: [flexcoders] Re: ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-12-05 Thread Deepa Subramaniam
re always allowed to add your own event handlers to override the default behavior. -Deepa Subramaniam From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lachlan Cotter Sent: Tuesday, December 05, 2006 4:13 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Re: ListBase.as getting called after Drop to Datagrid--Preventing the Drop???

2006-12-05 Thread Deepa Subramaniam
A few things: first, you'll have to call preventDefault() on your DragEvent object to cancel the default behavior so that only your custom event handler runs. Second, you'll have to add a custom dragOver event handler so that the DataGrid shows the correct feedback allowing items to be dropped from

RE: [flexcoders] Fade from one color to another

2006-12-04 Thread Deepa Subramaniam
lex-uhlmann.de/flash/animationpackage/ -deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Monday, December 04, 2006 2:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Fade from one color to ano

RE: [flexcoders] Fade from one color to another

2006-12-04 Thread Deepa Subramaniam
Set the the isStyle property to true in your AnimateProperty tag. -deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Monday, December 04, 2006 5:25 AM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] XMLList/XMLListCollection: sort on attributes

2006-12-04 Thread Deepa Subramaniam
that compares on the values you desire. You'll find that the mx.utils.ObjectUtil class has all the comparators you'd need to do this. Cheers, deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Oliver Lietz Sent: Monday, December 0

RE: [flexcoders] Message to Deepa (or others) Re: have there any rightClick mouseEvent in Flex2?

2006-11-16 Thread Deepa Subramaniam
Here you go - attached is the example. Best, deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pierre-Henri Sent: Wednesday, November 15, 2006 6:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Message to Deepa (or

RE: [flexcoders] where to drop on tree

2006-11-07 Thread Deepa Subramaniam
information will be accessible.   HTH – deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jesús Iglesias Sent: Tuesday, November 07, 2006 10:36 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] where to drop on tree   Hi again,   Thanks to you

RE: [flexcoders] Re: RangeError: Error #2006 using menu !

2006-11-07 Thread Deepa Subramaniam
out and will be included in the next drop of Flex which will be out soon.   Deepa Flex SDK   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of droopyflex Sent: Tuesday, November 07, 2006 12:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: RangeError

RE: [flexcoders] showRoot not working on mx:Tree ?

2006-11-06 Thread Deepa Subramaniam
='{xmlTopicTree.topics.children()}') or extend Tree and modify the set dataProvider code in Tree to toggle the _hasRoot storage variable to true.   HTH – deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jamiebadman Sent: Monday, November 06, 2006 3:07 PM To:

RE: [flexcoders] help moving elements in a tree

2006-11-06 Thread Deepa Subramaniam
Tree formats its drag and drop items as “treeItems” instead of “items” which is what the other list-based controls use. So try:   private function doDragDrop(event:DragEvent):void {        var dropTarget:Tree=Tree(event.currentTarget);        doDragExit(e

RE: [flexcoders] Re: Changing color in datagrid URL

2006-11-01 Thread Deepa Subramaniam
Hmm - that seems to work for me. What build of Flex are you using? Can you email me a bugfile offline? Thanks - deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Crowe Sent: Wednesday, November 01, 2006 12:16 PM To: flexcoders

RE: [flexcoders] Changing color in datagrid URL

2006-11-01 Thread Deepa Subramaniam
You can set styles on the LinkButton to control its appearance. So in your case, you would add a color (and perhaps an underline) style to the mx:LinkButton tag.     -deepa   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Crowe

RE: [flexcoders] Problem with setFocus()

2006-10-30 Thread Deepa Subramaniam
initialization events will not cause the cursor to blink within the TI. Doing the same off a button click or some sort of other user initiated event will work. This is because Mozilla has some specific issues around giving plug-in content focus upon initialization.   Hope this helps - deepa

RE: [flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread Deepa Subramaniam
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Paul Andrews Sent: Monday, September 18, 2006 12:45 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How can I block a TabNavigator ?   - Original Message - From: "Deepa Subramaniam" <[EMAIL

RE: [flexcoders] How can I block a TabNavigator ?

2006-09-18 Thread Deepa Subramaniam
abled state (grayed out, etc). You probably want the Tab to look enabled even if it is disabled - in which case you'll have to change the Tab's disabledSkin. HTH - deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of javier_mza20

RE: [flexcoders] How to display XML object in DataGrid

2006-09-15 Thread Deepa Subramaniam
for DataGrid shows how to use an XML object as the dataProvider.   http://livedocs.macromedia.com/flex/2/langref/index.html   Navigate to the DataGrid control and scroll down to the example.   -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] have there any rightClick mouseEvent in Flex2?

2006-09-14 Thread Deepa Subramaniam
click in a DataGrid cell and add that item to another DataGrid. This should point you in the right direction. deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of feel8335 Sent: Wednesday, September 13, 2006 9:37 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Tree Component expandItem Animation true problem.

2006-09-05 Thread Deepa Subramaniam
there is no animation and the items just open with the correct background row color.   HTH, -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mick Robin Sent: Tuesday, September 05, 2006 7:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree

RE: [flexcoders] Getting contents of ArrayCollection (flex newbie)

2006-09-01 Thread Deepa Subramaniam
ata = "">     //do something with data }   The ASDocs and documentation have more examples and explanations. HTH – deepa From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of amalabie Sent: Friday, September 01, 2006 6:32 AM To: flexcoders@yahoogr

RE: [flexcoders] Re: Object oriented / design pattern / application design books?

2006-08-31 Thread Deepa Subramaniam
+1 for Head First Design Patterns. The methodology with which the descriptions and examples are laid out really drill each pattern into your memory.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, August 31, 2006 2:02

RE: [flexcoders] buttonMode and useHandCursor on a Label doesn't work...

2006-08-31 Thread Deepa Subramaniam
Set the mouseChildren property to false on the Label. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 31, 2006 4:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] buttonMode and

RE: [flexcoders] Re: Unable to get trace to work...

2006-08-31 Thread Deepa Subramaniam
y and add the settings specified later in the technote.   -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Sent: Thursday, August 31, 2006 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Unable to get trace to work...   T

RE: [flexcoders] Problem with Sorting

2006-08-31 Thread Deepa Subramaniam
order the two objects should be sorted. The ASDoc for Sort.compareFunction has the function signature and a good example so check that out for more info.   Your custom compareFunction can access top-level and sub-properties on each object and then sort accordingly.   -deepa   From

RE: [flexcoders] Unable to get trace to work...

2006-08-31 Thread Deepa Subramaniam
ed to the file you specify and you can just tail that for all runtime trace statements. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Sent: Thursday, August 31, 2006 10:19 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Unab

RE: [flexcoders] Re: Disabling a nested menu item in a menu bar?

2006-08-23 Thread Deepa Subramaniam
and find the node you want to disable and use IMenuDataDescriptor.setEnabled() to disable that node.   HTH – deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jeff tapper Sent: Monday, August 21, 2006 12:34 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Select Multiple Dates

2006-08-14 Thread Deepa Subramaniam
Set the allowMultipleSelection property to true.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pateyog Sent: Monday, August 14, 2006 3:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Select Multiple Dates   Does anybo

RE: [flexcoders] Menu - handle sub-menu clicks

2006-07-06 Thread Deepa Subramaniam
What build of Flex are you using? I see MenuEvent.ITEM_CLICK  being dispatched for sub-menu selections as well as root menu selections.   If you could post a bit of code that reproduces your issue, that would help too.   -deepa   From: flexcoders@yahoogroups.com

RE: [flexcoders] datagrid.selectedItem.image (don't work)

2006-07-06 Thread Deepa Subramaniam
, you probably need to dot down correctly to it. Trace out selectedItem and you’ll see the structure of the XML and then formulate an _expression_ accordingly.   -deepa   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of tonyx_788 Sent: Thursday, July 06

RE: [flexcoders] Select a Tree item on Right click

2006-06-30 Thread Deepa Subramaniam
this bug fixed so I’ll definitely add your usecase to the bug to give it some momentum.   HTH – Deepa Subramaniam Flex SDK   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Pottavathini, Sathish Sent: Friday, June 30, 2006 3:50 PM To: flexcoders

RE: [flexcoders] Contextual Menu

2006-06-30 Thread Deepa Subramaniam
Currently the player's ContextMenu class does not support sub-menus. Also, you cannot catch the mouse right click and pop open your own menu in place of any ContextMenu, so there's no workaround that I am aware of. I'd be interested to hear if others do have one. -deepa -O

RE: [flexcoders] submenu items on a ComboBox?

2006-06-29 Thread Deepa Subramaniam
Take a look at the PopUpMenuButton control; the example in the ASDoc shows pretty much what you're asking for. -deepa From: flexcoders@yahoogroups.com on behalf of djbrown_rotonews Sent: Thu 6/29/2006 12:19 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
static variable. Other cases without this indirection, like a Button icon, will work correctly.   -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Deepa Subramaniam Sent: Wednesday, June 28, 2006 4:59 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
name exists. It does, however you cannot access a static var off an instance, only off the class. So, the lookup in the MenuBar code fails. Your workaround of making the embedded asset var non-staic is correct.   HTH, deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Icons in menu - not working

2006-06-28 Thread Deepa Subramaniam
Hmmm – well our Embed expert says that you can make the variable for the embedded asset static, but that seems to be your problem. I’ll file a bug on your behalf, but for now, don’t make exitOn static and the icon should show up.   Let me know if it doesn’t –   Deepa Flex SDK

RE: [flexcoders] Chart Data Tip Function

2006-06-28 Thread Deepa Subramaniam
  Hey There - Looks like in beta3 dataTipFunction took an Object as its parameter. That has since changed; now, dataTipFunction takes a HitData object that describes the data point.   -deepa   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

RE: [flexcoders] Re: Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-28 Thread Deepa Subramaniam
the user scrolled to that index.   Best, deepa From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of djbrown_rotonews Sent: Wednesday, June 28, 2006 7:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keeping DataGrid from scrolling to top on

RE: [flexcoders] Re: Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-27 Thread Deepa Subramaniam
in and the DataGrid has processed the REFRESH event. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djbrown_rotonews Sent: Tuesday, June 27, 2006 12:42 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Keeping DataGrid from sc

RE: [flexcoders] expanding Tree Nodes

2006-06-27 Thread Deepa Subramaniam
You now want to use Tree.expandItem() to open or close a branch node.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mike Wertheim Sent: Tuesday, June 27, 2006 1:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] expanding Tree Nodes

RE: [flexcoders] Keeping DataGrid from scrolling to top on update to dataProvider

2006-06-27 Thread Deepa Subramaniam
Hi Jordan –   You can keep track of the verticalScrollPosition property in your DataGrid and upon receving UPDATES, re-set the verticalScrollPosition to the previous value and the DataGrid will jump to the last scroll position and show the correct content.   -deepa   From

RE: [flexcoders] Tabbing through items in a container

2006-06-20 Thread Deepa Subramaniam
ed by tabIndex. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of polestar11 Sent: Tuesday, June 20, 2006 6:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tabbing through items in a container Hi there I am trying to build a custom list

RE: [flexcoders] ContextMenu and DataGrid question

2006-06-14 Thread Deepa Subramaniam
.   Cheers, Deepa           From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djbrown_rotonews Sent: Wednesday, June 14, 2006 9:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ContextMenu and DataGrid question   I'm tryi

RE: [flexcoders] MenuItem with icon

2006-05-10 Thread Deepa Subramaniam
ed for each row. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Franca Daniel Sent: Friday, May 05, 2006 5:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MenuItem with icon     How can i put icon on menuitem ? i h

RE: [flexcoders] ComboBox Fields

2006-05-09 Thread Deepa Subramaniam
label for display. The docs have examples of both these properties in play.   -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine Malpel Sent: Tuesday, May 09, 2006 8:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox Fields   I

RE: [flexcoders] Flex 2 beta 3 available

2006-05-08 Thread Deepa Subramaniam
Player that were made between the betas.   -deepa   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JB Sent: Monday, May 08, 2006 6:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 2 beta 3 available   Hi, I just downloaded the new flash player

RE: [flexcoders] Validation framework and changing the way tooltips get "triggered" (F2B2)

2006-05-08 Thread Deepa Subramaniam
If you're using Flex 2, check out triggerEvent in the Validator class. That allows you to specify which event triggers the validation. I believe by default this happens when you remove focus from the component, but you can use triggerEvent to customize the behavior. -deepa -Ori

RE: [flexcoders] Flex 2.0 b2: XML

2006-05-08 Thread Deepa Subramaniam
You can delete any portion of an XML document by using the 'delete' operator in e4x. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tyombria Sent: Saturday, May 06, 2006 12:52 AM To: flexcoders@yahoogroups.com Subject: [

RE: [flexcoders] DadtaGrid Distress

2006-05-04 Thread Deepa Subramaniam
your data for display in the DataGrid). Goodluck - deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Faisal Abid Sent: Thursday, May 04, 2006 2:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DadtaGrid Distress Okay, Thanks to al

RE: [flexcoders] re-filtering data in DataGrid?

2006-05-04 Thread Deepa Subramaniam
Are you using a collection to populate your DataGrid? If so, the filterFunction property on ICollectionView will re-execute as changes to the collection are made and thus filter items on the fly. If that is not happening try calling refresh() on your collection to re-trigger the filterFun

RE: [flexcoders] Two Flex 2 Components Questions

2006-05-02 Thread Deepa Subramaniam
rowHeight there. Try something like:                                               labelField="@label" creationComplete="setRowHeights(mb);"/> -deepa -Original Messag

RE: [flexcoders] How to set the Color of a Slider Thumb?

2006-04-25 Thread Deepa Subramaniam
but I haven't tried it out. deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexabledev Sent: Tuesday, April 25, 2006 5:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to set the Color of a Slider Thumb? Can someone tell me

RE: [flexcoders] Adobe Bridges Flash, Flex with AJAX

2006-03-08 Thread Deepa Subramaniam
this list, has a great blog entry about the bridge and what it allows developers to do: http://www.quietlyscheming.com/blog/2006/03/06/flex-and-ajax   Just an FYI –   Deepa Subramaniam Flex Team   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Renaun

RE: [flexcoders] Flex2 bug report: TabBar selectedIndex

2006-03-01 Thread Deepa Subramaniam
These TabBar issues have all been fixed in our internal builds so keep an eye out for the next public drop to resolve this for you. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, March 01, 2006 5:54 AM

RE: [flexcoders] Programatically move Tree Component Scrollbar

2006-02-21 Thread Deepa Subramaniam
You should be able to use the vPosition and hPosition properties on Tree to move its vertical or horizontal scrollbar. To get the scrollbar to scroll to the selectedItem you can set vPosition/hPosition to the selectedIndex. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EM

RE: [flexcoders] BUG :: List while using the mouseWheel/scroll

2006-02-16 Thread Deepa Subramaniam
Hi - What build are you using? I can't seem to reproduce this bug on our current internal build. I know we tackled a lot of mousing/scrolling RTE's in the List-based components but I don't want to dismiss this before I know what build you're using. Thanks, deepa -

RE: [flexcoders]Combobox feature?

2006-02-16 Thread Deepa Subramaniam
This is a feature. The List-based components, of which ComboBox is one, allow de-selection by Ctrl+click on a selected item. There are a few ways to workaround this (subclass the component, perhaps). One that comes to mind is to capture keyboard event and cross-track that with the selectedItem t

RE: [flexcoders] LINK PROBLEM

2006-02-16 Thread Deepa Subramaniam
Are you sure you're setting the label property on Link? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of motareal Sent: Thursday, February 16, 2006 5:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] LINK PROBLEM Hi, i have a flex ap

RE: [flexcoders] How to deselect all items in a list?

2006-02-14 Thread Deepa Subramaniam
You can always set the selectedItems or selectedIndices properties on the list-based components to an empty array to programmatically force de-selection. The component's UI will respond accordingly. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

RE: [flexcoders] Datagrid sort Arrows

2006-02-14 Thread Deepa Subramaniam
t arrow in the column header. If you want the Sort to be applied, all you have to do is call localCol.refresh() before assigning it to the DataGrid.   HTH – deepa     -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sen

[flexcoders] RE: Paint cell of dataGrid in different color

2006-02-13 Thread Deepa Subramaniam
Hi - This question has come up many times on this list. Below is the cut & paste from a previous email. Should get you on the right track. -deepa Changing the background color of a Datagrid Row in Flex I have heard this question many times and I don't think it is d

RE: [flexcoders] how to display ruler in

2006-02-13 Thread Deepa Subramaniam
We also provide the HRule and VRule components which you can use to create a dividing line in a container. You can drop those two components into a container just like any other control (ie: as a child of your Grid container). deepa -Original Message- From: flexcoders@yahoogroups.com

RE: [flexcoders] DateField & selectedDate toggle

2006-02-03 Thread Deepa Subramaniam
I've filed a bug and its being looked at internally. deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Thursday, February 02, 2006 10:07 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] DateField & sel

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-02 Thread Deepa Subramaniam
the TabNavigator will layout correctly. If you can live with alternative labels then you might be ok, but if others have workarounds please share them.   Thanks, deepa   -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sent

RE: [flexcoders] flex 1.5 - mx:List selectedIndex question

2006-02-02 Thread Deepa Subramaniam
List to the same selectedIndex value and the scroller will move there with the selected row in view. -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Thursday, February 02, 2006 8:05 AM To: flexcoders@yahoogroup

RE: [flexcoders] Get the selected column of a dataGrid

2006-02-02 Thread Deepa Subramaniam
Try using the cellPress event instead of the change event on DataGrid. Something like this should be what you want: -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jason Doyle Sent: Thursday, February 02, 2006 9:31 AM To: flexcoders

RE: [flexcoders] DataGrid Bug?

2006-02-01 Thread Deepa Subramaniam
Title: Message Hi - This is a bug in DataGrid that is already logged in our bugbase. Thanks for the heads up.   deepa   -Original Message-From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sreejith UnnikrishnanSent: Wednesday, February 01, 2006 12:34 PMTo

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-01 Thread Deepa Subramaniam
off the top of my head – I’ll investigate a bit more and see if I can find one.   deepa     -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sent: Wednesday, February 01, 2006 11:25 AM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-01 Thread Deepa Subramaniam
Hi Jonathan – I can’t seem to reproduce your case. I can’t size my TabNavigator such that the label for a tab is not truncated when not selected, and then truncated when selected. Could you send me some code that reproduces that case? Thanks, deepa   -Original Message- From

RE: [flexcoders] Unable to detect changes to variable

2006-01-30 Thread Deepa Subramaniam
Just to add some context, by marking your page and perPage variables with the Bindable metadata, Flex will monitor those properties for changes and generate events for when something in that property chain changes. This is a new mechanism added in Flex 2. From

RE: [flexcoders] Transparent Tilelist

2006-01-30 Thread Deepa Subramaniam
Hi -   backgroundAlpha will only work if a backgroundColor or backgroundImage is specified. Try adding one of those and then setting backgroundAlpha and you should achieve transparency.   Deepa Subramaniam   -Original Message- From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] TitleWindow width issue

2006-01-29 Thread Deepa Subramaniam
bject = new test(); win.width = this.width; win.height = this.height; PopUpManager.popUpWindow(win, this); } -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rgwilson26 Sent: Friday, January 27, 2006 8:38 AM To: flexc

  1   2   >