RE: [flexcoders] how to get the windows domain user id of the loc al machine?

2005-04-14 Thread Matt Chotin
The flash player doesnt have access to this information for security reasons. What are you looking to do? Matt From: youngceflex [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 7:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to get the windows

RE: [flexcoders] how to display the HashMap data in flex mx:Data Grid?

2005-04-14 Thread Matt Chotin
Im not sure what youre trying to do. If you have the accessMap you can index into it using names (accessMap[foo]). Are you trying to make the hashmap the dataProvider of the DataGrid? Thats not going to work, you need a linear list for that to happen (which you could create pretty easily

RE: [flexcoders] Namespace Inheritance??

2005-04-14 Thread Matt Chotin
I believe that namespaces are always going to be relative to the location of your main file (in this case index.mxml). You will also need to specify the namespace in every MXML file in which you want to use it. So in DueDiligence.mxml you need xmlns:comp=assets.comps.* Matt

RE: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Matt Chotin
Dont put the semi-colon in a binding _expression_ (though I dont think it should be a problem). Binding should take care of the class not being initialized yet (if you mean myActionscriptClass hasnt been assigned to anything). If the problem is that myActionsciptClass exists but

RE: [flexcoders] Repeater with Checkboxes

2005-04-14 Thread Matt Chotin
I think youre going to need to introduce another binding on the CheckBox, selected={rep_state.currentItem.selected == true}. I know the Model doesnt declare a selected property, so in the beginning any currentItem.selected will return undefined, which is why the statement explicitly is

[flexcoders] OT: Workflow Management Suite?

2005-04-14 Thread Scott Barnes
Q. Anyone know of a workflow management server? that i can use FLEX to interface to. I'm getting bogged down in CFMX world in just rolling my own workflow management objects and i'm hoping there already exists one for say JSP or insert whatever price is no concern, we need it yesterday. --

RE: [flexcoders] OT: Workflow Management Suite?

2005-04-14 Thread Matt Chotin
price is no concern, we need it yesterday. And people wonder why we sell to the enterprise ;-) Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/ To unsubscribe from this group, send an email to:[EMAIL PROTECTED] Your

[flexcoders] Child control implementing a parents labelFunction

2005-04-14 Thread Jeff Krueger
All, I am trying to create a component that has two list with a couple of buttons between the two list to allow the user to move items between the two list. Pretty standard type of control. The problem that I am having is that I want to be able to have a base control that handles the

RE: [flexcoders] Child control implementing a parents labelFunction

2005-04-14 Thread Jeff Krueger
K, figured out a solution. In the base control the list items are public vars and created by me in the init, and then they are available in the child. Jeff Base control ?xml version=1.0 encoding=utf-8? !-- selector.mxml -- mx:HBox

<    1   2