[flexcoders] nested viewstacks, creationPolicy of none and the creation dilemma

2005-08-05 Thread Jaime Bermudez
Hey guys, I'm not sure if this question was fully explored, but I have a case where I have some nested viewstacks that may have creationPolicies of none. They are actally subclasses of the viewstack class, w/ an activate method that will instantiate a child if it has not yet been defined (i.e.

[flexcoders] Re: nested viewstacks, creationPolicy of none and the creation dilemma

2005-08-08 Thread Jaime Bermudez
So, nobody on the board knows how to tell through the childDescriptors array if a child of a viewstack has creationPolicy of none? On 8/5/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Hey guys, I'm not sure if this question was fully explored, but I have a case where I have some nested

Re: [flexcoders] Re: nested viewstacks, creationPolicy of none and the creation dilemma

2005-08-08 Thread Jaime Bermudez
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaime Bermudez Sent: lundi 8 août 2005 15:55 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: nested viewstacks, creationPolicy of none and the creation dilemma So, nobody on the board knows how to tell through

[flexcoders] FormItemLabel style?

2005-08-16 Thread Jaime Bermudez
Is there a way to set the style of the FormItem's label, other than the width? I want to make the text a certain font and color, but I can't seem to get it to work by setting these properties on the FormItem tag. Yahoo! Groups Sponsor ~-- font

[flexcoders] how to change dividedbox divider icon?

2005-08-23 Thread Jaime Bermudez
Hey guys, Does any flexcoder out there know if/how I can change the divider icon of a DividedBox? I'm not talking about the dividerThickness, dividerAlpha, etc. that controls how the line appears once the user selects into the gap. I really want to change the appearance of the little multi-line

Re: [flexcoders] how to change dividedbox divider icon?

2005-08-23 Thread Jaime Bermudez
file that contains the divider clip. After you make the required changes, export it from the library as a swc file. Use it in your application as a theme. Eg: mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; width=100% height=100% theme=assets\divider.swc Sree Jaime

Re: [flexcoders] canvas flickering on hideEffect

2005-08-29 Thread Jaime Bermudez
=restoreMyHeight(event) mx:Label text=testing/ /mx:Panel /mx:HBox /mx:Application On 8/29/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/29/05, Jaime Bermudez [EMAIL PROTECTED] wrote: That's cool. The reason why I made the grid disabled is that the grid

Re: [flexcoders] canvas flickering on hideEffect

2005-08-31 Thread Jaime Bermudez
Ok Manish... I'm still stuck on this one. Are you saying that I have to do something on the resize event of the preview panel? Do stacked components inside a canvas not resize like other components? On 8/29/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/29/05, Jaime Bermudez [EMAIL PROTECTED

Re: [flexcoders] canvas flickering on hideEffect

2005-08-31 Thread Jaime Bermudez
Sorry Manish. It turns out that I forgot to call the restoreMyWidth function on the effectEnd of the search box. It works just fine now that I added that in. Sorry about that one and thanks again for the initial advice. On 8/31/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/31/05, Jaime

[flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Jaime Bermudez
I'm wondering if any other flexcoders have come across this issue. I have a Panel component within anautoViewstack (not sure if the Viewstack is causing anything). The panel has an activate() method that gets hit once the viewstack index selects - the activate method is where remote data calls

[flexcoders] Re: issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Jaime Bermudez
=sexGroupRadio/ /mx:FormItemmx:FormItem direction=horizontal labelWidth=100 label=Graduatemx:CheckBox id=chkGrad selected={dataObject.COLLEGEGRAD}/ /mx:FormItem/mx:PanelIn this example, both are in the same directory. - Jaime On 10/27/05, Jaime Bermudez [EMAIL PROTECTED] wrote: I'm wondering if any other

Re: [flexcoders] issue w/ two-way binding on checkboxes and radiobuttons?

2005-10-27 Thread Jaime Bermudez
As a follow-up, in the example provided the bindings work fine if the mx:Binding tags are commented out. The bindings also work if the initObj() method is called on a childrenCreated event of the Application, which I don't understand. Any idea on what's going on? On 10/27/05, Matt Chotin

Re: [flexcoders] sessions and maintenance questions

2005-11-16 Thread Jaime Bermudez
Dimitrios, Sounds like your solution may solve a similar issue for a project I'm working on. Can you explainhow thecustom authentication relates to a timeout? Is it the only way to get one of the two fault codes you're checking for? Also, I checked web.xml and I don't see any timeout setting.

Re: [flexcoders] sessions and maintenance questions

2005-11-21 Thread Jaime Bermudez
I added the session-config tag to my web.xml only to get the following warning in my weblogic console: Deployment descriptor web.xml is malformed. Check against the DTD: org.xml.sax.SAXParseException: The content of element type web-app must match

Re: [flexcoders] sessions and maintenance questions

2005-11-21 Thread Jaime Bermudez
Ok, so I misread the line. The session-config tag is there, butI'm not sure why I'm getting the warning. Could it have something todo w/ the ? that appears after the tag in the below list? On 11/21/05, Jaime Bermudez [EMAIL PROTECTED] wrote: I added the session-config tag to my web.xml only

Re: [flexcoders] sessions and maintenance questions

2005-11-21 Thread Jaime Bermudez
On second thought, I had the ordering of the tags wrong. Works fine now. On 11/21/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Ok, so I misread the line. The session-config tag is there, butI'm not sure why I'm getting the warning. Could it have something todo w/ the ? that appears after

[flexcoders] openAMF examples?

2005-11-21 Thread Jaime Bermudez
Hey guys, Just wondering if anyone has some sample FLEX code where they use openAMF in place of RemoteObjects for FLEX 1.5. Specifically wondering what happens to result and fault handlers. Thanks, Jaime -- Flexcoders Mailing List FAQ:

[flexcoders] possible nested repeater bug??

2006-11-02 Thread Jaime Bermudez
Hi flexcoders, I've come across a potential bug in an app I'm working on, but perhaps I'm doing something wrong. I have an array of VOs where each VO has an array of children VOs. I'm using a nested repeater to represent this structure. The user can add parents and children- this is when some

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
node click=handleAddParentClick(); / /mx:ControlBar/mx:Panel /mx:ApplicationRegards On 11/2/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Hi flexcoders, I've come across a potential bug in an app I'm working on, but perhaps I'm doing something wrong. I have an array

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
] wrote: I didn't have this problem Jaime.It's works for me.On 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Hmmm, not sure what you mean Igor. Can you not get the app to compile or run for you? I just tested moving the script block up to the top on my machine

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
What version of the Flex 2 SDK are you running Igor?On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: I see each parent node with their subnodes for each of them.Regards.On 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Try this:1) Add a parent node

Re: [flexcoders] possible nested repeater bug??

2006-11-03 Thread Jaime Bermudez
Costa [EMAIL PROTECTED] wrote: the last oneOn 11/3/06, Jaime Bermudez [EMAIL PROTECTED] wrote: What version of the Flex 2 SDK are you running Igor?On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: I see each parent node with their subnodes for each

Re: [flexcoders] possible nested repeater bug??

2006-11-07 Thread Jaime Bermudez
this example and they see the same behavior as me. Can someone from Adobe please run this code and help me get it to work as expected? - Thanks On 11/3/06, Igor Costa [EMAIL PROTECTED] wrote: the last one On 11/3/06, Jaime Bermudez [EMAIL

Re: [flexcoders] Weird behavior of mx:Effects on ViewStack

2007-01-27 Thread Jaime Bermudez
I'd like an explanation of this behavior as well Danko. I perused the source code of the ViewStack and it seems like the hideEffect of a currently selected child should play out before the selected index is actually changed (and the next child is made visible). Seems like this only happens

Re: [flexcoders] Weird behavior of mx:Effects on ViewStack

2007-01-30 Thread Jaime Bermudez
Any help with this? On 1/27/07, Jaime Bermudez [EMAIL PROTECTED] wrote: I'd like an explanation of this behavior as well Danko. I perused the source code of the ViewStack and it seems like the hideEffect of a currently selected child should play out before the selected index is actually

[flexcoders] AS3 object reference changes?

2007-01-30 Thread Jaime Bermudez
I have a simple question that may be dumb but I find somewhat interesting. I have something similar to the following simplified AS3 code: var a:Object = new Object(); var b:Object = a; a = null; --- Why does object b hold on to a's object reference? I

Re: [flexcoders] AS3 object reference changes?

2007-01-30 Thread Jaime Bermudez
' to something else. The object would then become eligible for garbage collection at some indefinite time in the future. - Gordon -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Jaime Bermudez *Sent:* Tuesday, January 30, 2007 1:52 PM

[flexcoders] local configuration file options

2007-02-19 Thread Jaime Bermudez
So once again I trusted the livedocs, which told me: You can set the same options in multiple places and the Flex compilers use the value from the source that has the highest precedence. Apparently this doesn't work for the command-line application compiler b/c I have a local configuration file

[flexcoders] capturing an alert response within method that calls alert

2005-04-20 Thread Jaime Bermudez
I'm sick of having to track temporary variables on an alertHandler method. Let's say I have a method w/ three variables that calls an alert where I wait for a response from the user. Is there any way to pass these variables along into the handler method that gets called when the user clicks Yes

Re: [flexcoders] RemoteObject : Convert Java Exception to ActionScript Fault

2005-07-12 Thread Jaime Bermudez
Hey Peter, Do you have an example of how/where to create a thin layer on the UI side to capture a Java Exception and re-throw a GatewayException? Thanks, Jaime On 3/23/05, Peter Farland [EMAIL PROTECTED] wrote: The documentation for Java based services is largely in the Using Data Services

[flexcoders] namespace/directory structure issue

2005-07-30 Thread Jaime Bermudez
Hi Flexcoders, I am working on a rather large FLEX app w/ a directory structure that looks like this: main as components UI ... test test1 the main directory contains the project's app.mxml, which has custom namespace declarations like xmlns:cc = components.UI.*, etc.

Re: [flexcoders] namespace/directory structure issue

2005-08-01 Thread Jaime Bermudez
you necessarily need to move the components directory though- I think it would also work to just put the main directory in actionscript-classpath. -Brian -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaime Bermudez Sent: Sunday, July 31

Re: [flexcoders] namespace/directory structure issue

2005-08-01 Thread Jaime Bermudez
(thereby forcing me to check-out and change every class that embeds images)? Is there a standard approach to this problem? Thanks. On 8/1/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Ok guys, so w/ Brian's suggestion I was able to get the compiler to recognize the namespaces w/o changing

[flexcoders] FormItem multiline label?

2006-09-21 Thread Jaime Bermudez
Anyone figure a way to get the label for a FormItem to act like a Text control and wrap? I would hate to have to reimplement the FormItem just to replace the FormItem label with a Text component.Thanks,Jaime __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: FormItem multiline label?

2006-09-27 Thread Jaime Bermudez
Any help with this item would be appreciated. Thanks!On 9/21/06, Jaime Bermudez [EMAIL PROTECTED] wrote:Anyone figure a way to get the label for a FormItem to act like a Text control and wrap? I would hate to have to reimplement the FormItem just to replace the FormItem label with a Text

[flexcoders] getting panel title field to wrap

2006-10-09 Thread Jaime Bermudez
Hey Flexcoders,I need my Panel title's to handle wrapping, so I subclass the Panel class and override the createChildren method where I set the wordWrap property of the titleTextField to true (default is false). The first time I view the Panel, I see no data. The data displays subsequently

[flexcoders] Re: getting panel title field to wrap

2006-10-10 Thread Jaime Bermudez
Any ideas on this one?On 10/9/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Hey Flexcoders,I need my Panel title's to handle wrapping, so I subclass the Panel class and override the createChildren method where I set the wordWrap property of the titleTextField to true (default is false). The first

Re: [flexcoders] Re: getting panel title field to wrap

2006-10-12 Thread Jaime Bermudez
--- In flexcoders@yahoogroups.com, Jaime Bermudez[EMAIL PROTECTED] wrote: Hey Flexcoders, I need my Panel title's to handle wrapping, so I subclass thePanel class and override the createChildren method where I set the wordWrapproperty of the titleTextField to true (default is false).The first time Iview

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-08 Thread Jaime Bermudez
Hey Carson, I'm trying out your technique, but I'm still gettingLocatorParser errors... here's a snippet of my weblogic.xml: weblogic-web-app security-role-assignment ... /security-role-assignmentjsp-descriptor

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
I couldn't find a way to turn on classloader tracing (at least I didn't see anything in the weblogic 8.1 docs), however I think the problem may be in the setup. My fop.jar, batik.jar and other supporting files (i.e. avalon-framework-cvs*.jar) are in the WEB-INF/lib directory of the app server.

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
Um, it wasn't part of my app server. I tried searching for it in the directory, but it wasn't there. I'm guessing that whomever implemented reporting on my team (I'm working w/ 12 other developers) downloaded the jar and imported it into the app. On 12/10/05, Dimitrios Gianninas [EMAIL

Re: Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
Don't need what - fop.jar? I definitely need the jar to be able to to a fop transformation on a java servlet... not sure what you're getting at. On 12/10/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Perhaps you should check with the rest of your team then, maybe you don't need it, and thus

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
I didn't know the server had a web-inf... the only web-inf I see is in my deployed war directory. Just to clarify, I deploy an EAR that has separate ejb and war deployments. The only web-inf directory I see is under user_projects - domain - mydomain - applications - {myapp} - {war}. Where

Re: [flexcoders] Re: URGENT Problem on Flex installed on BEA WebLogic

2005-12-11 Thread Jaime Bermudez
@yahoogroups.com] On Behalf Of Jaime Bermudez Sent: Saturday, December 10, 2005 6:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic I didn't know the server had a web-inf... the only web-inf I see is in my deployed war directory.Just

Re: [flexcoders] Re: URGENT Problem on Flex installed on BEA WebLogic

2005-12-11 Thread Jaime Bermudez
(i.e. CSSRule). The flex version is a later version than the fop version. I'm going to try removing xml-apis.jar from the build and see what happens. On 12/11/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Hold on a sec. There is no other version of the fop.jar anywhere in flex, so I couldn't follow

[flexcoders] dragging from a grid within PopUp to parentApp?

2006-01-12 Thread Jaime Bermudez
Not sure if many people have dealt w/ non-Title Window pop ups. I'm working on a search pop-up for our app and a plain TitleWindow won't cut it since we need to have links on the header and be able to stretch out a screen from the right side of the window. So, I have a Canvas that contains a

[flexcoders] Re: dragging from a grid within PopUp to parentApp?

2006-01-12 Thread Jaime Bermudez
I should mention, this is in FLEX 1.5. I can't just upgrade to 2.0 b/c we're in production. On 1/12/06, Jaime Bermudez [EMAIL PROTECTED] wrote: Not sure if many people have dealt w/ non-Title Window pop ups. I'm working on a search pop-up for our app and a plain TitleWindow won't cut it since

[flexcoders] Custom DataGrid to sort items on an add

2006-02-25 Thread Jaime Bermudez
Hey Flexcoders, I'm working on custom datagrid that will add items in sorted order. Specifically, this order is determined by either the initial order defined by the developer or the last order defined by the user via header clicks. For columns without a sortCompareFunction the code works

Re: [flexcoders] Re: Custom DataGrid to sort items on an add

2006-02-26 Thread Jaime Bermudez
);}}} Brendan--- In flexcoders@yahoogroups.com, Jaime Bermudez[EMAIL PROTECTED] wrote:Hey Flexcoders, I'm working on custom datagrid that will add items in sorted order. Specifically, this order is determined by either the initial orderdefined by the developer or the last order defined by the user via

[flexcoders] FB3 addedEffect, removedEffect and popUps

2006-06-14 Thread Jaime Bermudez
Hey guys,I wanted some move effects initiated on popups when created, added or removed through the PopUpManager. I figured out that the PopUpManager.removePopUp(popUp) method will trigger a removedEffect on the popUp window, at least for modal dialogs. This makes sense b/c it's probably