[flexcoders] Equivalent to html embed tag's scale attribute?

2005-07-19 Thread cazzaran
Is there any way to achieve what the scale=noBorder attribute in the html embed tag does? I need to have a flash movie take up the whole area of an mx:Image tag without being shrunk or distorted. The scale=noBorder usually does this in HTML, or Stage.scaleMode = noBorder in straight-up Flash, but

[flexcoders] Help with loading of some SWF content in an mx:Image tag

2005-07-15 Thread cazzaran
I have a banner that I load into my Image tag, and this banner goes out to the server it came from to request a TXT file to load up some variables. The problem is that I want to be able to use as much client side as possible. Is there a way to override it loading these vars so I can put in my own

[flexcoders] Dynamically add an MXML to a Panel

2005-07-06 Thread cazzaran
I have a Panel in my application that needs to include different form stuff based on what a user chooses in a ComboBox. I have a Panel that looks like: mx:Panel title=Message Specifics width=100% height=100% id=editMessageSpecificsPanel/ Based on the selection they choose in the ComboBox, I need

[flexcoders] Re: Trouble getting mx:List to show any changes to dataProvider

2005-06-09 Thread cazzaran
:[EMAIL PROTECTED] On Behalf Of cazzaran Sent: Wednesday, June 08, 2005 6:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Trouble getting mx:List to show any changes to dataProvider For some reason, I have one mx:List in mxml that refuses to show the contents of its dataProvider. I

[flexcoders] Re: Trouble getting mx:List to show any changes to dataProvider

2005-06-08 Thread cazzaran
-Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod [EMAIL PROTECTED] On Behalf Of cazzaran Sent: Wednesday, June 08, 2005 6:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Trouble getting mx:List to show any changes to dataProvider For some reason, I

[flexcoders] Trouble with mx:Image or mx:Loader

2005-05-20 Thread cazzaran
I have a flash banner that displays its content in the vertical middle. I have an application that is 800px wide, but the banner is, by default, only around 600px wide. My tag looks like: mx:Image contentPath=autumn.swf scaleX=100 scaleContent=true width=800 / If I specify the width attribute

[flexcoders] Pass variable to mx:image tag

2005-05-12 Thread cazzaran
I need to include an external SWF file that takes variables to display some content. It's just a banner, so the mx:Image tag is sufficient, except that I can't figure out how to pass variable information to it. There's talk of a flashVar tag, but that's for JSP, and it doesn't look like

[flexcoders] Re: Pass variable to mx:image tag

2005-05-12 Thread cazzaran
] On Behalf Of cazzaran Sent: Thursday, May 12, 2005 11:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Pass variable to mx:image tag I need to include an external SWF file that takes variables to display some content. It's just

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-04-11 Thread cazzaran
, Christoph Guse [EMAIL PROTECTED] wrote: Hi cazzaran, how did you solve your problem? I'm interested in a solution, because I have a very similar problem. In my case I have an object (OgoJobVO) in which is another object (OgoAccountVO) in which is another object (OgoPersonVO). When I get

[flexcoders] Prevent dynamic properties from being set

2005-04-11 Thread cazzaran
I have some POJOs on my server like Role, etc... They have many getter methods that return subsets of actual data. For example, Role has getGroups() and getSubGroups(), where getSubGroups() returns a filtered list of what getGroups() would (they both reference the same Set in the object, but

[flexcoders] Re: Popup only works once

2005-04-08 Thread cazzaran
the magic doLater(). doLater(this, deletePopUp) Tracy -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Thursday, April 07, 2005 6:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Popup only works once I have an Add Group button in my MXML that calls

[flexcoders] Popup only works once

2005-04-07 Thread cazzaran
I have an Add Group button in my MXML that calls a method: public function showAddGroupWindow():Void { var popup = PopUpManager.createPopUp(MovieClip(mx.core.Application.application), addGroupWindow, true); popup.centerPopUp(); } In my popup MXML, which is just a simple title

[flexcoders] Re: Simple Cairngorm architecture question

2005-04-05 Thread cazzaran
event to a difrent method. Omar Ramos Itacon Corporation Technology Manager _ From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 4:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Simple Cairngorm architecture question You're right. My

[flexcoders] Re: Simple Cairngorm architecture question

2005-04-05 Thread cazzaran
Omar, That really does help, I appreciate it. I was trying to figure out how to accomplish this... Again, thanks! -Josh --- In flexcoders@yahoogroups.com, Omar Ramos [EMAIL PROTECTED] wrote: Hi Josh, Here is a example of how you would do it. var alertListener:Function =

[flexcoders] Re: Flex 1.5 price

2005-04-04 Thread cazzaran
it gives us a better understanding of how the product is being used, the sorts of problems people are facing, and so on, by interacting with real users rather than 'customers'. ... and participating in this forum is not necessarily a part of our job. And we love you for it! ;-) -Josh

[flexcoders] How to get access to HttpSession in a stateful-class

2005-04-04 Thread cazzaran
I have some remote business delegates that are stateful. Is there a way to get access to the session that they are being held in? For example, I have a UserDelegate that handles user based business logic for the current logged in user, and it maintains a member variable of the user so I don't

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
use the gateway debug level logging approach on the server. I'd prefer you to try the server gateway logging approach anyway as we want to see whether an AMF Typed Object or untyped Object was deserialized from your Group param. -Original Message- From: cazzaran [mailto:[EMAIL

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
). -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 4:58 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Error: Cannot invoke method when using a VO Peter, Here's my whitelist: whitelist unnamed source*/source /unnamed

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-30 Thread cazzaran
) [0] = (Typed Object #12 'pojos.User') password = passger organizationId = null _remoteClass = pojos.User username = cazzaran email = [EMAIL PROTECTED] role = (Ref

[flexcoders] Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
I have a delegate class on my server called GroupDelegate, and it has a method addGroup(Group group). When I try and call this method on my remote object, I get the error: Error: Cannot invoke method addGroup However, if I switch my method's signature to addGroup(String groupName), the method

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
Peter, It does... -Josh --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: Does the Java version of Group have a public no args constructor? -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:50 PM

[flexcoders] Can't see selectedNode on my Tree change event

2005-03-27 Thread cazzaran
I have a Tree that has a method bound to the change event. Problem is, for some reason, the event.target doesn't have a selectedNode property, so I can't seem to find out what Node the user clicked. As I understand it, this property should be there. Am I correct? Any ideas? Thanks in

[flexcoders] Re: Can't see selectedNode on my Tree change event

2005-03-27 Thread cazzaran
Well, I can't see it when debugging, but it's accessable, so nevermind... thanks... --- In flexcoders@yahoogroups.com, cazzaran [EMAIL PROTECTED] wrote: I have a Tree that has a method bound to the change event. Problem is, for some reason, the event.target doesn't have a selectedNode

[flexcoders] Weird tree issue

2005-03-27 Thread cazzaran
I have a tree I'm populating with objects that mimic my serverside Group classes. What's happening is that the tree is getting built, but the data field of the nodes isn't getting filled. This method: var node = treeDP.addTreeNode(group.name, group); is supposed to create a node with the label

[flexcoders] Re: Problem with variable initialization

2005-03-26 Thread cazzaran
of the variable data you use a getter: Public function get data() : String { Return id; } Matt _ From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 6:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Problem with variable

[flexcoders] Re: Problem with variable initialization

2005-03-26 Thread cazzaran
with the columnName of the getter it'll be fine. Matt _ From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Saturday, March 26, 2005 7:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Problem with variable initialization Matt: Will the dataproviders