[flexcoders] app loading

2008-08-18 Thread Robert Brueckmann
Strangest behavior ever. We are looking to move from Weblogic 8.1 to Weblogic 10. We have an Apache 1.3 web server and we're using the Weblogic-Apache plug-in that routes requests to certain URLs to the Weblogic server. URL http://abc sends requests to Weblogic 8.1 which hosts our

[flexcoders] Flex 1.5 - RemoteObject request timeout

2008-01-10 Thread Robert Brueckmann
We still support a Flex 1.5 app I wrote 3 years ago that our clients use to run reports with. I'm in the midst of upgrading the entire app to Flex 2+, but of course the db people keep adding reports and one recently added report is for the admin-side only and is a crude report that can sometimes t

RE: [flexcoders] Flex 1.5 - RemoteObject request timeout

2008-01-10 Thread Robert Brueckmann
rime Broker North America and #1 Prime Broker Single Strategy Funds - Global Custodian 2007 #1 Prime Broker for Hedge Funds under $1 Billion - Alpha Survey 2007 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Thursday, January 10, 200

RE: [flexcoders] BIRTHDAY: THE FATHER OF DATA BINDING

2005-03-18 Thread Robert Brueckmann
Happy B-Day and thanks for all the help!   Robert L. Brueckmann Web Developer Merlin Securities, LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: Vinny Timmermans [mailto:[EMAIL PROTECTED] Sent: Friday, March 18, 2005 6:13 AM To: flexcode

theme

2005-02-23 Thread Robert Brueckmann
If I wanted to apply the haloBlue theme to my Flex app, what do I need to do?  Is there an easy way to do this because setting the theme attribute in the mx:CairngormApplication tag doesn’t seem to be doing the trick…thanks for any help! This email may contain confidential and pr

RE: [flexcoders] theme

2005-02-23 Thread Robert Brueckmann
themeColor="" attributeof the tag -Art Quoting Robert Brueckmann <[EMAIL PROTECTED]>: > If I wanted to apply the haloBlue themeto my Flex app, what do I need > to do?  Is there an easy way to dothis because setting the theme > attribute in the mx:CairngormApplication tag d

form validation

2005-02-24 Thread Robert Brueckmann
I’m having a heck of a time understanding how form validation works.  I have a form…it contains text fields, drop down lists, and radio buttons.  It’s a basic user information form…first name, last name, address 1, address 2, etc.  I also have 3 fields: phone, fax, and mobile, but I only hav

RE: [flexcoders] "Sample code for printing from a DataGrid":doesnot work?

2005-02-24 Thread Robert Brueckmann
Tracy,   It’s funny you send this email because I posted something about printing last night…I am using the same exact code you’re using from the example on MM’s site and I would say it works intermittently, at best, when I try to print my datagrid…at first, if you read my post from last n

datagrid height

2005-03-01 Thread Robert Brueckmann
Hey guys…I am trying something and getting a strange behavior.  I get an array of objects from the database that becomes the data provider for my datagrid.  I know the length of my data provider thanks to the myDataGrid.dataProvider.length method and I figure I could multiply that number by

RE: [flexcoders] datagrid height

2005-03-01 Thread Robert Brueckmann
://livedocs.macromedia.com/flex/15/asdocs_en/mx/controls/listclasses/ScrollSelectList.html#rowCount J   From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 01, 2005 9:44 AM To: [EMAIL PROTECTED] Subject: [flexcoders] datagrid height   Hey guys…I am trying something and getting

tool tips for a linkbar

2005-03-01 Thread Robert Brueckmann
Maybe another stupid question but I can’t seem to anything in the APIs or LiveDocs about how to have individual tool tips for a number of links I have in a linkbar component.  Right now as it stands, there seems to be only the ability to have an overall tooltip for everything in a linkbar co

datagrid cell scrollbars

2005-03-02 Thread Robert Brueckmann
I have a datagrid that has 6 columns and it about 20 rows high.  I send it as one page to the printer using the PrintJob class, it prints the datagrid so everything fits within the boundaries of the piece of paper but the problem is, some of the text in the cells is wider than the printer-fr

RE: [flexcoders] datagrid does not display http data

2005-03-02 Thread Robert Brueckmann
Instead of creating an alert with the result attribute of the HTTPService request, make a call to a method that would set the dataprovider to the resulting XML.   The problem is, when the datagrid is created, the XML from the HTTPService isn’t ready yet, so you need to reset the dataprovid

loader

2005-03-02 Thread Robert Brueckmann
Background:   I’ve built a reporting application.  The user logs in, selects criteria and I send the user’s criteria in XML format to a stored procedure, which generates an XML result set, which we send to a template-based 3rd-party reporting engine… which produces a PDF report…when the re

RE: [flexcoders] datagrid cell scrollbars

2005-03-02 Thread Robert Brueckmann
From: Manish Jethani [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 2005 1:29 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] datagrid cell scrollbars Robert Brueckmann wrote: > Is there any way to prevent the horizontal scrolling? I can't find > anything in the D

RE: [flexcoders] How do I get references to children of a container?

2005-03-02 Thread Robert Brueckmann
You give each button it’s own id attribute and you can directly access that button by it’s id…you don’t have to reference the parent id first.   Robert L. Brueckmann Web Developer Merlin Securities,LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820

RE: [flexcoders] Re: Cannot retrieve tree items properties

2005-03-02 Thread Robert Brueckmann
Tree.selectedItem.getProperty(“id”) should work for you too.   Robert L. Brueckmann Web Developer Merlin Securities,LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: jivankohinoor [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 2005 5:4

RE: [flexcoders] Number Format issue. I need help.

2005-03-03 Thread Robert Brueckmann
Valy…in your MXML file, create a NumberFormatter component like this (setting the precision to what you need):     And then on the field that displays your total…if it’s a label or something, do this:     Or something to that affect…   Robert L. Brueckmann Web Developer Merli

RE: [flexcoders] Theory and Practice: Mixing AS2.0 in MXML

2005-03-03 Thread Robert Brueckmann
Can I ask how you manage an MXML without any ActionScript at all?  How in a file that has components with clickor change listeners would you not have any supporting ActionScript code…I mean just about every single one of my MXML files has initialize or creationComplete listeners in the paren

RE: [flexcoders] Theory and Practice: Mixing AS2.0 in MXML

2005-03-03 Thread Robert Brueckmann
“I see,” said the blind man…thanks Erik!  This whole technology, even after a few months of working with it, is still something so completely new to what I’m used to and I guess I was having trouble seeing the MXML file as an AS class in and of itself…thanks for the concise yet extremely hel

RE: [flexcoders] Theory and Practice: Mixing AS2.0 in MXML

2005-03-03 Thread Robert Brueckmann
Erik…if at all possible, could you give an example, like attach a sample MXML file and the accompanying AS file you created that extends that MXML file?  Just want to get a feel for this…and how you reference things and what have you.   Thanks!   Robert L. Brueckmann Web Developer Me

RE: [flexcoders] datagrid cell scrollbars

2005-03-04 Thread Robert Brueckmann
simply sets its text in the setValue method and see how that goes.   Matt   From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 2005 9:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagrid cell scrollbars   I have a datagrid that has 6

RE: [flexcoders] Theory and Practice: Mixing AS2.0 in MXML

2005-03-04 Thread Robert Brueckmann
Thanks a lot for the time you spent doing that Erik!  Much appreciated!   Robert L. Brueckmann Web Developer Merlin Securities,LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: Erik Westra [mailto:[EMAIL PROTECTED] Sent: Friday, March 04, 20

remoting StuckThreadMaxTime?

2005-03-04 Thread Robert Brueckmann
Title: Message I see this in my log file every now and again:     Is there a way to pinpoint where this is happening?  It seems to just popup in the middle of my app server logs, in between valid log output statements…seems random…and plus I don’t understand the deal w

XML to Objects

2005-03-16 Thread Robert Brueckmann
If I’m getting a string of XML from the database, is there a way to convert it to an object in ActionScript that would allow me to access the elements of the XML like I can the attributes of an object or if I have a static body of XML within the mx:Model component using the dot-syntax instea

RE: [flexcoders] BIRTHDAY: THE FATHER OF DATA BINDING

2005-03-18 Thread Robert Brueckmann
Happy B-Day and thanks for all the help!   Robert L. Brueckmann Web Developer Merlin Securities,LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: Vinny Timmermans [mailto:[EMAIL PROTECTED] Sent: Friday, March 18, 20056:13 AM To: flexcoders@y

RE: [flexcoders] mx:Link component

2005-02-09 Thread Robert Brueckmann
Guys…the problem with my input is it’s coming in from the RSS feed like this:  “JPMorgan’s Vice President blah blah blah” as the title of the article and when I set that title string to the value of the mx:Link labels’ value, it the title ends up looking like “JPMorgan's Vice President blah

RE: [flexcoders] mx:Link component

2005-02-09 Thread Robert Brueckmann
convert it back.  If you use resultFormat=”object” like Christophe I don’t think you’ll have this issue.   Matt   From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 9:10 AM To: [EMAIL PROTECTED] Subject: RE: [flexcoders] mx:Link component   Guys

flashlog.txt

2005-02-14 Thread Robert Brueckmann
Is there any way to specify where you would like this file and where the have the debugger look for the mm.cfg file specifically?  It seems to randomly choose in between two locations onmy machine and I can never be sure until I look at the time stamp of the two log files which is the one th

RE: [flexcoders] flashlog.txt

2005-02-14 Thread Robert Brueckmann
: flexcoders@yahoogroups.com Subject: RE: [flexcoders] flashlog.txt   Try adding this to your mm.cfg file (the one in c:\Documents and Settings\myaccount\)   TraceOutputFileName=c:\flashlog.txt Dirk. -Original Message- From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: Monday

createChild

2005-02-14 Thread Robert Brueckmann
I have an app that a user logs in, and based on their login info I retrieve a number of “applications”the user has security grant access to.  This array of “applications” sent back from the database is simply an Array of strings…I use this array of strings to create tabs for my tab navigator

RE: [flexcoders] createChild

2005-02-14 Thread Robert Brueckmann
:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 1:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] createChild   On Mon, 14 Feb 2005 09:55:39 -0500, Robert Brueckmann <[EMAIL PROTECTED]> wrote: [snip] > strings…I use this array of strings to create tabs for my tab navigato

RE: [flexcoders] createChild

2005-02-14 Thread Robert Brueckmann
: 212.822.4821 f: 212.822.4820 From: Manish Jethani [mailto:[EMAIL PROTECTED] Sent: Monday, February 14, 2005 1:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] createChild   On Mon, 14 Feb 2005 09:55:39 -0500, Robert Brueckmann <[EMAIL PROTECTED]> wrote: [snip] > stri

show listener

2005-02-15 Thread Robert Brueckmann
I have a component...a empty canvas that has a show listener that simply calls trace to write "test" to the log file, ok? I then have my initial application load up with a tab navigator with a single tab that pulls in a very similar empty component but with a show listener that makes a call to a fu

RE: [flexcoders] RemoteObject endpoint hack

2005-02-17 Thread Robert Brueckmann
Pretty cool…   Robert L. Brueckmann Web Developer Merlin Securities,LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: Dirk Eismann [mailto:[EMAIL PROTECTED] Sent: Thursday, February 17,2005 11:41 AM To: FLEXCODERS (E-Mail) Subject: [flexcode

RE: [flexcoders] setFocus issue

2005-02-17 Thread Robert Brueckmann
Clint…I had this same problem a few weeks back and posted a thread for this and none of the _javascript_ or Flex scripting suggestions I received worked for this every time the page loaded.  THE ONLY way I was able to get this to work perfectly every time my app loads is to embed the Flex ap

RE: [flexcoders] Dynamically selecting a Tree node

2005-02-17 Thread Robert Brueckmann
Jose…I posted a similar questiona few weeks back and got a response I was able to work with…the only drawback to the solution is it expands the entire tree up to the node you want selected is found…but it’s a drawback I’m willing to live with because it does what you’re asking…I’m using this

TabNavigator tab color styles?

2005-02-25 Thread Robert Brueckmann
Just was working on applying a stylesheet throughout my application and I’ve successfully changed the header colors of my datagrids and panels but I can’t seem to figure out how to change the gradient fill color of my tabs in my tab navigator…   I have a stylesheet with the following:  

RE: [flexcoders] scroll Tip Function

2005-02-25 Thread Robert Brueckmann
Clint,   I see that the scrollTipFunction that you create accepts a position parameter to the function…can’t you just refer to a column by making a call like this using the example from the API:   function scrollTipFunction(direction:String, position:Number) : String {   if (direction ==

RE: [flexcoders] Interesting new product for Flex

2005-02-28 Thread Robert Brueckmann
I’m a little confused about whatit is they’re offering.  Are they developing an application for youin Flex?  Nowhere on their site do they actually use the words Macromedia Flex when talking about the applications they’re building…it appears oncein one of their QuickTime slides as an image p

[flexcoders] Setting a busy cursor

2005-10-20 Thread Robert Brueckmann
Hey guys…   I was just playing around to see about changing the default busy ticking watch face cursor…looking at the FlexDocs…there honestly doesn’t seem to be an easy way to do this, unless I’m missing something.  It seems like anytime I want to override the default, I actually have to

[flexcoders] sessions and maintenance questions

2005-11-14 Thread Robert Brueckmann
I have a question for you guys about how you’re currently designing your Flex applications.   Since a Flex application is not session-based in the sense of an application server session, how are you guys handling, say, you want a user to have to log back in if they remain inactive after

[flexcoders] dataTipField on a DataGridColumn programmtically

2005-12-29 Thread Robert Brueckmann
I'm creating the DataGridColumns for my DataGrid programmatically. I'm assigning the dataTipField and showDataTips attributes of each column programmatically as well. Doesn't seem to work. Is anyone doing this with any success? robert l. brueckmann senior web developer merlin securities 595 m

[flexcoders] cell renderer question

2006-01-10 Thread Robert Brueckmann
I have got two cell renderers on my datagrid…one is a simple checkbox, the other is a yes/no radio button group.  If the user checks one of the checkboxes but then picks a different date which causes the data in the datagrid to refresh with a new dataset…despite it being new data in the da

RE: [flexcoders] Grid

2006-06-14 Thread Robert Brueckmann
Try looking at the custom cell renderer examples to get checkbox and comboboxes in your datagrid by running the ‘samples’ webapp that comes with the Flex installation (of checking it out at the bottom of this page: http://www.adobe.com/devnet/flex/example_apps.html) or you can read about i

[flexcoders] flex 1.5 - mx:List selectedIndex question

2006-02-02 Thread Robert Brueckmann
I have 3 tabs, each tab has a List component, these lists all share the same dataprovider from the parent application. If the user changes their selection in the list on the first tab and then goes to the 3rd tab, I have a function that sets the selected-index of the list component on the 3rd ta

[flexcoders] shared object security with flex 1.5

2006-02-06 Thread Robert Brueckmann
I created a "remember me on this computer" option when the user logs in, so when they come to the URL it automatically logs them into our site based on the username and password I'm encrypting and storing in a shared object on their machine.  Works great.   Out of curiosity, I located th

RE: [flexcoders] shared object security with flex 1.5

2006-02-07 Thread Robert Brueckmann
... let me know.   Sincerely, Taka Kojima Director of Promotion & Marketing ABLE International   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Monday, February 06, 2006 11:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

[flexcoders] overlapping series line chart - flex 1.5

2006-02-13 Thread Robert Brueckmann
Does anyone have an elegant solution on how to handle a line chart when, for example, we have 3 series in our line chart…Equities, Assets, and a Total.  3 separate lines.  In a specific case, Assets is 0 for all date points, so Equities and Total are exactly the same, hence their lines ove

RE: [flexcoders] overlapping series line chart - flex 1.5

2006-02-13 Thread Robert Brueckmann
tiple data points _there_, and format your datatip string appropriately).   Ely.     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: Monday, February 13, 2006 10:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] overlapp

RE: [flexcoders] Flex 1.5 - Automatically Lengthen dataGrid based on #rows

2006-03-20 Thread Robert Brueckmann
Try the rowCount attribute of the DataGrid component...that will allow you to control the height of the datagrid component based on the number of elements in your dataProvider... Then depending on how you have the layout containers nested and the heights set on them, the scrollbars on the parent V

[flexcoders] Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-24 Thread Robert Brueckmann
I tried searching the archives and couldn't find anything relevant to what we're doing here, so I'm hoping someone can explain something:     1.  User logs in 2.  XML is returned with all applications user has access to 3.  Tab Navigator component is generated on the fly w

RE: [flexcoders] Re: Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-25 Thread Robert Brueckmann
nce everything is already compiled, it can set the combobox with the data in time. Put your logic to fetch the XML user in the creationComplete method of your mx:Combobox...or somewhere where you know it is created. hope this helps. cheers. --- In flexcoders@yahoogroups.com, "Robert Brueckmann&quo

RE: [flexcoders] Re: Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-25 Thread Robert Brueckmann
1.5 - Cairngorm .99 - Binding VO to TextInput help please Have you tried debugging? set a breakpoint in your onResult of the Command class and where you explictly set the selectedUser in the model locator. Once that line has passed, you should stop again then check your text box to see if

RE: [flexcoders] Re: Flex 1.5 - Cairngorm .99 - Binding VO to TextInput help please

2006-04-25 Thread Robert Brueckmann
etter workaround than you currently have. With the growing number of people having these "mysterious" problems I wonder if Adobe are going to release an update to resolve them. Regards, Simon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On B

[flexcoders] Flex 1.5 - column chart question

2006-05-19 Thread Robert Brueckmann
I scoured the archives and APIs but couldn’t find anything to allow me to ensure that the zero vertical axis is ALWAYS shown.  I have a column chart who’s dataset contains all negatives and when the chart displays, the columns are suspended from nothing at the top of the chart…it’d be nice

RE: [flexcoders] Flex 1.5 - column chart question

2006-05-19 Thread Robert Brueckmann
  GridLines {   horizontalShowOrigin: true; }   Ely.     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: Friday, May 19, 2006 12:57 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Fle

[flexcoders] Flex 1.5 - windows memory usage

2006-05-31 Thread Robert Brueckmann
Just wanted to take a poll on size of Flex app versus memory usage in windows when using Internet Explorer and Firefox.   I have a rather large application and pretty much everything in the damn thing needs to be created dynamically based on user privileges and entitlement…applications t

[flexcoders] Comboboxes and TitleWindows

2005-06-16 Thread Robert Brueckmann
I noticed something strange happening and I wanted to know if anyone had a solution or if I'm doing something completely wrong/weird...   I have an ActionScript method that uses the popup manager to create a custom TitleWindow component like so:   var reportWindow:TitleWindow =  

[flexcoders] LinkBar question

2005-06-22 Thread Robert Brueckmann
Is there a way to leave the selection background behind the currently selected link in a LinkBar to indicate to the user which link is currently selected? None of the attributes seem to indicate anything of the sort, so I was curious if anyone is doing anything like this out there? Thanks! rober

RE: [flexcoders] LinkBar question

2005-06-22 Thread Robert Brueckmann
Behalf Of Robert Brueckmann Sent: Wednesday, June 22, 2005 8:20 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] LinkBar question Is there a way to leave the selection background behind the currently selected link in a LinkBar to indicate to the user which link is currently selected?  N

RE: [flexcoders] LinkBar question

2005-06-23 Thread Robert Brueckmann
:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: Wednesday, June 22, 2005 11:57 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] LinkBar question Not sure what you mean.  Using the disabledCOlor attribute does nothing.  I have a linkbar at the bottom of my page that

RE: [flexcoders] LinkBar question

2005-06-23 Thread Robert Brueckmann
+32 472 35 28 10 http://pimz.blogspot.com http://cfpim.blogspot.com     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: jeudi 23 juin 2005 15:05 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] LinkBar question Yeah, defi

[flexcoders] alert listener

2005-06-23 Thread Robert Brueckmann
I have an alert listener that’s instantiated upon login to my application like so:   public var alertListener:Object = new Object();   function createListener() {     alertListener.click = function(event) {         getURL("index.html");     } }   T

RE: [flexcoders] alert listener

2005-06-23 Thread Robert Brueckmann
, June 23, 2005 3:59 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] alert listener   Use Application's getURL:   mx.core.Application.getURL("index.html");   - Original Message - From: Robert Brueckmann To: flexcoders@yahoogroups

[flexcoders] hide/show tabs of a tab navigator based on security?

2005-06-29 Thread Robert Brueckmann
Is there an easy way to hide or show a tab in a tab navigator? Say my MXML file has a tab navigator with 4 custom components (separate MXML files) statically coded as children of the tab navigator to show tabs for...a user logs in, I only want user1 to see tabs 1 and 3 and user2 to see 2 and 4..

RE: [flexcoders] hide/show tabs of a tab navigator based on security?

2005-06-29 Thread Robert Brueckmann
bled=false; }                                             From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: 29 June 200

[flexcoders] checkbox in a repeater

2005-07-06 Thread Robert Brueckmann
I have a repeater that’s generating a list of FormItems that simply contain a checkbox…so the label of the FormItem component is the name of some item the user has set up and the checkbox indicates yes or no for that item regarding some setting…when the user clicks on the checkbox, I want

[flexcoders] column chart question/oddity

2005-07-11 Thread Robert Brueckmann
My mxml file loads, the parent tag calls a method on creationComplete that goes to my server and gets XML…on result of that method call, on the front-end I take that XML, parse it and generate a series of objects and keep pushing them into an array.  I have a viewstack…the first child of t

RE: [flexcoders] display nested xml in a datagrid

2005-07-12 Thread Robert Brueckmann
I use the XMLObjectOutput class (which you can find in the C:\Program Files\Macromedia\Flex\extras\XMLObjectOutput directory (I just put it in my user_classes directory in my own package) and I convert the XML from the server into an object...by using this utility you can then use dot-synatx to ref

[flexcoders] line width in line chart

2005-07-12 Thread Robert Brueckmann
Is there a simple way to specify how thick I want the line to be in a line chart without having to implement SimpleLineRenderer to something so trivial? robert l. brueckmann senior web developer merlin securities 595 madison avenue new york, ny 10022 p: 212.822.4821 f: 212.822.4820 -

RE: [flexcoders] line width in line chart

2005-07-12 Thread Robert Brueckmann
AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] line width in line chart Set the stroke: Ely. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Tuesday, July 12, 2005 8:50 AM To: flexcoders

[flexcoders] chart background

2005-07-12 Thread Robert Brueckmann
ailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Tuesday, July 12, 2005 8:50 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] line width in line chart Importance: High Is there a simple way to specify how thick I want the line to be in a line chart without having to impl

RE: [flexcoders] ToolTips on Tree Nodes?

2005-07-13 Thread Robert Brueckmann
Has anyone gotten the datatips to work on a tree for elements whose text is wider than the tree component?   robert l. brueckmann senior web developer merlin securities 595 madison avenue new york, ny 10022 p: 212.822.4821 f: 212.822.4820 From: flexcoders@yahoogroups.co

RE: [flexcoders] ToolTips on Tree Nodes?

2005-07-13 Thread Robert Brueckmann
y 10022 p: 212.822.4821 f: 212.822.4820 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Wednesday, July 13, 2005 1:27 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ToolTips on Tree Nodes?   Has anyone gotten the datatips

RE: [flexcoders] ToolTips on Tree Nodes?

2005-07-13 Thread Robert Brueckmann
?   I have the exact same setup…but nothing is being passed to the dataTipFunction…wondering if it’s because the dataprovider is not set until after the tree has initialized?   -Stace   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Wednesday

[flexcoders] combobox change listener

2005-07-15 Thread Robert Brueckmann
I have a combobox that has a change listener that triggers a function to refresh the contents of a tree component. If the user uses the mouse to select the item from the combobox, the tree refreshes with the new content beautifully. If the user selects the combobox with the mouse but then hit a l

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Robert Brueckmann
Stacy,   I was having the same exact problem when my application loaded for the first time because I wanted the cursor to default and the caret be blinking in the username field of the login section so the user, when going to my site, didn’t have to explicitly click their mouse in the us

RE: [flexcoders] onFocus, setSelection not highlighting textinput

2005-07-15 Thread Robert Brueckmann
re’s user interaction prior to the event in question taking place. (although I gave it a shot anyway ;-) The field is receiving focus as intended, just the text contents of the textinput field is not selected as it should be.   -Stace   From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Re: dynamically creating children suggestions?

2005-07-22 Thread Robert Brueckmann
hit the MXML file? > > 10 billion more ideas of course, Matt'll put the smack down when he finishes his tea and crepes. > > - Original Message - > From: Robert Brueckmann > To: flexcoders@yahoogroups.com > Sent: Thursday, July 21, 2005 6:10 PM > Subject: [flexc

[flexcoders] menubar question

2005-07-28 Thread Robert Brueckmann
I'm just playing with the MenuBar component and I can't seem to figure out how to make the first menu flush with the left side of my app...there always seems to be a padding of 10 pixels before the start of the first menu item in the menu bar...I've tried setting a handful of attributes to 0 and no

RE: [flexcoders] menubar question

2005-07-29 Thread Robert Brueckmann
Sent: Thursday, July 28, 2005 6:35 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] menubar question On 7/29/05, Robert Brueckmann <[EMAIL PROTECTED]> wrote: > I'm just playing with the MenuBar component and I can't seem to figure > out how to make the first menu flu

[flexcoders] databinding question

2005-08-02 Thread Robert Brueckmann
Quick question...why are these different:     Versus:   mainContent.createChild(ReportingDatesPanel, "", {width: "100%", height: "100%", portfolio: selectedPortfolio});   When the selectedPortfolio object changes in the main app with the MXML in first example above, the custom com

RE: [flexcoders] databinding question

2005-08-02 Thread Robert Brueckmann
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Robert Brueckmann Sent: Tuesday, August 02, 2005 4:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] databinding question   Quick question...why are these different:     Versus

RE: [flexcoders] databinding question

2005-08-02 Thread Robert Brueckmann
PROTECTED] c:303.885.7044 im:robrusher > > ____ > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Robert Brueckmann > Sent: Tuesday, August 02, 2005 4:37 PM > To: flexcoders@yahoogroups.com >

[flexcoders] menubar & icons?

2005-08-04 Thread Robert Brueckmann
Is anyone out there able to get an icon to appear next to a menu item in their menubar component? The MenuItem syntax in the APIs and documentation say that the menuitem xml node simply needs an icon attribute that points to the icon file...not so much working for me...just was curious if I'm miss

[flexcoders] menubar bar color

2005-08-17 Thread Robert Brueckmann
Title: Creating a new Flex component I searched the archives and it seems a handful of people have asked how to change the color of the actual bar of the menubar component but nobody ever got an answer…should I take that as a definitive “not possible”?  I’ve tried every color and fill attr

[flexcoders] NumberFormatter question

2005-08-31 Thread Robert Brueckmann
Hey guys...I saw in the archive there was a long thread about decimals and the NumberFormatter but none of them really addressed what I'm encountering so I figured I'd throw this out there to see if anyone else has seen this behavior and if they're simply converting the number to a string

[flexcoders] loader component question

2005-08-31 Thread Robert Brueckmann
Scenario: I kick off 5 asynchronous actions...all of which make a db call, get XML, pass it to our report generation engine, which returns a report object to my Flex app, when that report object comes back with the id that matches the id of the kicked off process, I display that report in a Horizo

RE: [flexcoders] loader component question

2005-08-31 Thread Robert Brueckmann
n IMO they would be processed one by one... -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Wednesday, August 31, 2005 7:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] loader component question Scenari

[flexcoders] embedded fonts/linux/axis labels charting

2005-09-29 Thread Robert Brueckmann
We’re trying to utilize the horizontal axes rotation attribute for the axis labels, for which Eli explains in his example that you need an embedded font to take advantage of the rotation of the labels.   I used his code as an example:   @font-face {     font-family: chartLabelFont

[flexcoders] Flex Builder 2 - Setting Default Application

2006-12-22 Thread Robert Brueckmann
I have no idea where to begin my search terminology in the archive to see if anyone has asked/answered this already...I tried an infinite number of combinations to no avail, so I'm starting a new thread in hopes that someone can help. I'm using a split directory development/deployment model f

RE: {Disarmed} [flexcoders] Flex Builder 2 - Setting Default Application

2006-12-22 Thread Robert Brueckmann
securities 712 fifth avenue new york, ny 10019 p: 212.822.4821 f: 212.822.4820 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert Brueckmann Sent: Friday, December 22, 2006 11:47 AM To: flexcoders@yahoogroups.com Subject: {Disarmed

[flexcoders] flexcoders mail-archive search

2007-01-17 Thread Robert Brueckmann
I'd check to see if anyone has written in about this issue yet but unfortunately I can't search the archives, hence my issue... Is anyone able to search the flexcoders' mail-archive website? No matter what I've tried for the last 2 weeks or so, searching the mail-archive for flexcoders results

RE: [flexcoders] chart formatting

2005-03-01 Thread Robert Brueckmann
Tom,   In my chart, I have the following:   // some parent container tag                                

RE: [flexcoders]

2005-01-29 Thread Robert Brueckmann
Have you tried using the AS2 TextSnapshot class? You might be able to use this because the TextArea component itself is a movie and the TextSnapshot class has methods providing the info you're looking for. Check it out here...hope that gives you some help: http://livedocs.macromedia.com/flash/mx2

RE: [flexcoders] Number Cell renders?

2005-01-31 Thread Robert Brueckmann
Art,   You need to create a cell renderer…and then set the cellRenderer component you created for each column in your datagrid you want that formatting to be applied to.   Check out the cell renderer examplesin the Flex explorer in the samples package that comes with the Flex install or

tree traversal?

2005-02-04 Thread Robert Brueckmann
Is there any easy, recursive way to traverse a tree component?  My tree’s data provider is an XML object sent from the db.  I have 3 tree components actually…the 2nd tree is built based on the selection of the 1st tree and the 3rd tree is built based on the selections made in the 1st and 2nd

RE: [flexcoders] tree traversal?

2005-02-04 Thread Robert Brueckmann
the one with nodeid, then return current node else return findthatnode( current child node, nodeid ) }   That should be a good start! Robert From: Robert Brueckmann [mailto:[EMAIL PROTECTED] Sent: 04 February 2005 07:39PM To: flexcoders@yahoogroups.com Subject: [flexcoders] tree

RE: [flexcoders] tree traversal?

2005-02-04 Thread Robert Brueckmann
t; foo(); >} > >A function that calls itself – or,put another way, a function that calls >a COPY of itself. > >In pseudo code: > >Function findthatnode( parent node, nodeID ) { > Loop through parent node’s children: >    

  1   2   >