[flexcoders] LinkBar Always On Top?

2008-11-06 Thread hammer995
I am trying to use a linkbar but in the middle of the page. I want the viewstack to change behind it but it seems that the viewstack images always get layered on top. I tried to use the DisplayObejectContainer to setChildIndex but it doesn't seem to be working. Anybody have a way to do it? I

[flexcoders] Re: LinkBar Always On Top?

2008-11-06 Thread hammer995
); mainPanel.setChildIndex(target2, imageIndex); } I tried using swapChildren() but it complained that it needed to be from the same caller?!? So, this worked and I'm going with it. --- In flexcoders@yahoogroups.com, hammer995 [EMAIL PROTECTED] wrote: I am trying to use a linkbar but in the middle

[flexcoders] mouse wheel on htmltext

2008-04-15 Thread hammer995
I have some htmltext that is bigger than the window. The horizontal scroll bar is visible but I cannot use the mouse wheel to scroll the text. Is there a way to do this. Thanks.

[flexcoders] No row in datagrid selection

2008-04-02 Thread hammer995
I have a user datagrid that displays an xml result set. I have identical datagrid code for other datagrids which work fine. For some reason, in this one user datagrid, the row does not get sent upon datagrid selection. When the user selects a user to edit, the row is null. Here is my code:

[flexcoders] Re: centerPopUp in F3B2

2007-12-24 Thread hammer995
: centerPopUp in F3B2 not sure if this works but have you tried this.parentApplicat-ion? - venkat HYPERLINK http://www.venkatj.comhttp://www.venkatj.-com --- In HYPERLINK mailto:flexcoders%40yahoogroups.com[EMAIL PROTECTED], hammer995 hammer995@ wrote: I am trying to center a popup

[flexcoders] Re: centerPopUp in F3B2

2007-12-24 Thread hammer995
, hammer995 [EMAIL PROTECTED] wrote: Thanks it still doesn't work. The top left corner is being centered...not the whole window. So my picture is going off the viewable areavery strange. --- In flexcoders@yahoogroups.com, Randy Martin randy@ wrote: Try this: var

[flexcoders] centerPopUp in F3B2

2007-12-21 Thread hammer995
I am trying to center a popup window on the application from an itemrenderer in a TileList. It looks like it centers it with the TileList but not with the application itself. I've found different places on the interweb but none of them work. They reference:

[flexcoders] dataTipFunction position in datagrid

2007-10-18 Thread hammer995
I have the following: mx:DataGridColumn headerText=Acct dataField=acct width=50 showDataTips=true dataTipFunction=fullAcctName/ The fullAcctName returns a string. Unfortunately, the string is displayed right over the cell you are hovering over to get the tooltip. Is there a way to give it an

[flexcoders] Weird DataGrid Behavior in Release Version

2007-10-16 Thread hammer995
So I put a release version into QA. When I click on a datagrid, the presence of a selectedItem enables an edit button. When I click on the edit button it doesn't work as expected. It just blanks the selectedItem and disables my edit button. It does work if I wait enough or do something

[flexcoders] Re: Weird DataGrid Behavior in Release Version

2007-10-16 Thread hammer995
Sorry... I should also add a custom effect does not work in the release version as well but works fine in the build version. --- In flexcoders@yahoogroups.com, hammer995 [EMAIL PROTECTED] wrote: So I put a release version into QA. When I click on a datagrid, the presence of a selectedItem

[flexcoders] Re: dataGrid Printing: validNexPage always TRUE

2007-10-02 Thread hammer995
Looks like it was a BUG. The new M2 fixed it. Thanks. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Please post a small test case. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hammer995 Sent

[flexcoders] dataGrid Printing: validNexPage always TRUE

2007-10-01 Thread hammer995
So I followed the example from the docs to print a datagrid. For some reason I always get validNextPage to be true even when there is not enough data to fill a page. The example works fine but I cannot get it to work with my application. Here is the code: private function printExecution():void

[flexcoders] Re: dataGrid Printing: validNexPage always TRUE

2007-10-01 Thread hammer995
I should clarify that I do get a false from validNextPage but it seems to be after all the data has been printed. I then get an extra page with just the footer. --- In flexcoders@yahoogroups.com, hammer995 [EMAIL PROTECTED] wrote: So I followed the example from the docs to print a datagrid

[flexcoders] Re: dataGrid Printing: validNexPage always TRUE

2007-10-01 Thread hammer995
PROTECTED] On Behalf Of hammer995 Sent: Monday, October 01, 2007 10:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: dataGrid Printing: validNexPage always TRUE I should clarify that I do get a false from validNextPage but it seems to be after all the data has been printed. I

[flexcoders] Downloading file from rails

2007-09-25 Thread hammer995
I am trying to program a file download. The filename is sent as a parameter and then rails sends back a browser download (using send_file). Is there any way I can get this to work with Flex download? From the examples, the URLRequest is an absolute path to the actual file being downloaded.

[flexcoders] ComboBox SelectedIndex HELP!

2007-09-17 Thread hammer995
So I have an edit form which I have several combobox's that I can populate successfully from static arrays. So I want to duplicate this with results from an HTTPService. For some reason, the selectedIndex property does not run the function for selecting the data to be shown by default. The

[flexcoders] Re: How to verify the password and confirmPassowd and show error message?

2007-09-11 Thread hammer995
This is the simply way that I do it...I think I picked this up from another example on the interweb...:) private function validatePass():void { if (password.text != password_confirmation.text) { password.errorString = Password and

[flexcoders] Re: Accessing variables between components

2007-08-30 Thread hammer995
Thanks for the response. I'll look into your third suggestion on your blog since that seems to be the best implementation in the long run.

[flexcoders] Re: more httpservice / ruby form post fun

2007-08-30 Thread hammer995
I'm a noob...but this is how I send data to my rails server... mx:HTTPService id=editCustomerUpdate contentType=application/xml url=http://nycopt:3000/customers/edit; method=POST mx:request xmlns= customer

[flexcoders] Accessing variables between components

2007-08-29 Thread hammer995
I have a login component and a label in another component that displays the username from the login component. How do I access the username from the login component from the display component? I made the username variable bindable. I tried searching around but found something to do with passing