[Flashcoders] datagrid schema

2006-02-23 Thread Rodrigo Guerra
Can anyone help me understanding how i use the datagrid schema, i know it helps a lot in the parsing but i couldn't much info about it. i think the principle it's the same for others components that has this function too for what i see it will describe, or validate , or facilitate the parsing

[Flashcoders] trace inside the browser

2006-03-07 Thread Rodrigo Guerra
hi, i'm trying to figure out a way to implement a debug that i can see online (in the browser) and not just inside the flash environment. just like trace, but it must work when the swf is online. i thought about a list component that appear and desapeear on a X keypress, and a function that

Re: [Flashcoders] trace inside the browser

2006-03-07 Thread Rodrigo Guerra
://www.digitalflipbook.com/archives/2005/07/trace_from_the.php - markW On 3/7/06, Chris Hill [EMAIL PROTECTED] wrote: Use the luminic box logger. http://www.luminicbox.com/blog/default.aspx?page=postid=2 Rodrigo Guerra wrote: hi, i'm trying to figure out a way to implement a debug that i can see

[Flashcoders] datagrid icon to delete a row.

2006-03-10 Thread Rodrigo Guerra
hi all, i'm using this example from phil, http://philflash.inway.fr/dgrenderer/dgiconrd.html to put a image inside a datagrid colum. (any other you can share would be appreciated) what i want is click in the image and delete the row. i thought the datagrid class would provide a easy method

Re: [Flashcoders] datagrid icon to delete a row.

2006-03-10 Thread Rodrigo Guerra
the grid. (If I remember correctly) ;) HTH -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rodrigo Guerra Sent: Friday, March 10, 2006 11:07 AM To: Flashcoders mailing list Subject: [Flashcoders] datagrid icon to delete a row. hi all, i'm using

Re: [Flashcoders] datagrid icon to delete a row.

2006-03-10 Thread Rodrigo Guerra
: myDataGrid.dataProvider.removeItemAt(someIndex); Spike On 3/10/06, Rodrigo Guerra [EMAIL PROTECTED] wrote: my grid dataprovider is a xml (created in flash). the only way i can think to refresh the datagrid is associate it (again) to the xml source (updated). like delete the node then myDG.dataProvider = myXml (updated

[Flashcoders] componet buttons without border.

2006-03-14 Thread Rodrigo Guerra
hi, my component button started appearing today without borders ! it appears just the text set for the button, the code inside it works good. using flash 8 , screens, as2.___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

[Flashcoders] nested screens and setVisible

2006-03-14 Thread Rodrigo Guerra
flash 8, as 2. i 'm maiking my first flash screen application. here its the structure (screen name) roots. login mainMenu inclusao cons each screen has a fade transition onRevel and onHide. ok. n the roots screen first frame i hide the mainMenu and the mainMenu nested

[Flashcoders] tooltip in the combobox.

2006-03-15 Thread Rodrigo Guerra
hi all, i was wondering if there is a way to put some kind of tooltip in the combobox options, so putting the mouse over an combobox optin besides it get highlighted i can have a tip about the option. regards, rodrigo.___

Re: [Flashcoders] tooltip in the combobox.

2006-03-15 Thread Rodrigo Guerra
this... foo.itemRollOver = function ( oEvt ):Void { var indx:Number = oEvt.index; // pop your own tooltip using this event ... - e.dolecki On 3/15/06, Rodrigo Guerra [EMAIL PROTECTED] wrote: hi all, i was wondering if there is a way to put some kind of tooltip in the combobox options, so

[Flashcoders] alert box component mess up

2006-03-20 Thread Rodrigo Guerra
Hi all, i'm using a alert box that i got here: http://www.rich-media-project.com/, (very good product, with all the icons already set.) also, i'm using this component with some usual flash components like buttons and comboboxes. i realized that the Alert component dosen't work very well with

[Flashcoders] disable datagrid

2006-05-05 Thread Rodrigo Guerra
hi i´m trying to disabe a datagrid items (from flash help) my_dg.setSize(140, 100); // Set up sample data. var myDP_array:Array = new Array(); myDP_array.push({name:Clark, score:3135}); myDP_array.push({name:Bruce, score:403}); myDP_array.push({name:Peter, score:25}); my_dg.dataProvider =