Re: [flexcoders] Re: MyEclipse xml editor mxml code hinting

2005-07-02 Thread Clint Modien
search before you post @... http://www.mail-archive.com/flexcoders@yahoogroups.com/ here is a tutorial on setting up eclipse for flex http://www.everythingflex.com/blog/1/2005/05/Eclipse-for-Flex-Development.cfm On 7/2/05, sanjayd <[EMAIL PROTECTED]> wrote: care to share ?--Flexcoders Mailing

Re: [flexcoders] List.selectedIndex=0; <- how do i fire "change" event?

2005-07-02 Thread Clint Modien
List.dispatchEvent({type:"change"}); On 7/2/05, heybluez <[EMAIL PROTECTED]> wrote: Ok...silly question.I have a list with a change event.  I would like to be able to set theindex via actionscript like so:List.selectedIndex=0;This will highlight the right item but it will not fire the change eve

[flexcoders] List.selectedIndex=0; <- how do i fire "change" event?

2005-07-02 Thread heybluez
Ok... silly question. I have a list with a change event. I would like to be able to set the index via actionscript like so: List.selectedIndex=0; This will highlight the right item but it will not fire the change event. I am wondering how I can make it know that the list changed? Thanks, Mic

RE: [flexcoders] Sort arrows in DataGrid

2005-07-02 Thread Abdul Qabiz
Hi, You can get the reference of sort arrow using: dataGridInstance.sortArrow To hide arrow: dataGridInstance.sortArrow._visible = false; To show arrow: dataGridInstance.sortArrow._visible = true; You can use dataGridInstance.placeSortArrow(..) method to show arrow on column that is the cur

[flexcoders] Re: MyEclipse xml editor mxml code hinting

2005-07-02 Thread sanjayd
care to share ? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcode

[flexcoders] indicating drop target on mx:list

2005-07-02 Thread heybluez
I am trying to figure out a way to indicate to the user what they are over on a list when dragging. I would like to activate the "rollover" color when the drag item is over that particular list item. any suggestions? thanks, Michael -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/gro

[flexcoders] Sort arrows in DataGrid

2005-07-02 Thread Sean McKibben
Is there a way to set the sortIndex of a datagrid manually, or to manually clear the sort arrow? I have a DataGrid which allows things to be dropped in to it at arbitrary locations, which would change it to unsorted, but I can't figure out how to remove the sort arrow in the header to refle

RE: [flexcoders] XML, PHP and Flex

2005-07-02 Thread Abdul Qabiz
Hi, You are calling popCustomer(..) function just after invoke HTTPService.send(). This wouldn't work. HTTPService calls are asynchronous, that means you won't get result immediately. Request is sent to server, server processes data and returns back to client. This entire process takes some time.

[flexcoders] How to compile a transparent application

2005-07-02 Thread mohimbe77
Hi all, I've been developing in Flex for about 6 months and need to be able to compile an MXML application that ends up being transparent when it is placed on an HTML page. I know all about the 'wmode' attributes setting in the page object/embed statement; I've done this with Flash SWF for yea

[flexcoders] Re: MyEclipse xml editor mxml code hinting

2005-07-02 Thread Brooks Andrus
Never mind on that last question...found it...was suffering from some list learned-helplessness there for a second. On 7/1/05, Brooks Andrus <[EMAIL PROTECTED]> wrote: > Can anyone point me to some resources on getting the MyEclipse xml > editor to provide code hinting based on the mxml.xsd? Set t

[flexcoders] XML, PHP and Flex

2005-07-02 Thread juyalmanu
Hi all, I am still stuck up with this. I am not sure if problem is with Httpservices or viewstacks. I never worked with httpservices before. However after the suggestions in response to my previous posting. I created this.. http://localhost:8080/islab/poster.php"; fault="faultHandler(event.

[flexcoders] MyEclipse xml editor mxml code hinting

2005-07-02 Thread Brooks Andrus
Can anyone point me to some resources on getting the MyEclipse xml editor to provide code hinting based on the mxml.xsd? Set this type of thing up before with other editors by just pointing to the schema file, but can't seem to get this sucker figured out. Brooks -- Flexcoders Mailing List FAQ:

RE: [flexcoders] how to generate the bullet in DataGridColumn?

2005-07-02 Thread Abdul Qabiz
Hi, You can create a custom cellrenderer for DataGrid Column. You can have multiline html textfield there. And you can show bullet using tag... Check the flex docs for CellRenderer docs. Also search Flexcoders archive for CellRenderer or similar topic.. -abdul -Original Message- From

RE: [flexcoders] mx:TileList

2005-07-02 Thread Abdul Qabiz
I guess, you are confused between Tile and TileList. TileList use rowCount and columnCount property to create rows and columns. By default, rowCount and columnCount are 4. Where as Tile does, as you mentioned in your mail. Check the Tile and TileList docs.. -abdul -Original Message-