Re: [flexcoders] Flex and Databas Project

2005-07-30 Thread Sjors Pals
Well i don't think too much people are gonna help you this way. Just start building it your self and if you get stuck, ask your questions on this list. Not too much people are you gonna help this way. I would also advice you to read the FAQ of this mailinglist. There are some rules regarding

[flexcoders] broadcasting to a sub-component

2005-07-30 Thread Ghislain Simard
How to broadcast an event to a component inside a component? main.mxml comp1:myComp1/ myComp1.mxml Subcomp2:mySubComp2/ mySubComp2.mxml Yahoo! Groups Sponsor ~-- font face=arial size=-1a

[flexcoders] Flex on Oracle App Server Issues

2005-07-30 Thread jeeflex
Hi All, This is my first post on flexcoders. Question- Is there any know issues or bugs while using Flex on Oracle App Server( 10g )? . Is there any internal bugs reported my Macromedia ? . Looking forward to get some replies. Thanks, Sean Yahoo! Groups Sponsor

[flexcoders] Rich Internet Apps book

2005-07-30 Thread Manuel Saint-Victor, M.D.
I am working on an example from the Flex Book for the Blogreader and google search and having trouble with an error that says You are not allowed access to this URL by this proxy I went to the whitelist and the localserver is not commented so I could not remove the comments to get it to work as

[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.

[flexcoders] Binding to properties?

2005-07-30 Thread Stacy Young
Is it not possible to bind the enabled attribute of a button to a property? As the property changes the state of the button remains disabled i.e. mx:Button id=saveButton label=Create Section height=22 enabled={ModelLocator.formSection.isValid} click=sectionViewHelper.submitForm()

RE: [flexcoders] Binding to properties?

2005-07-30 Thread Matt Chotin
Whos dispatching the change event? And does ModelLocator have formSection typed as a FormSection? Or is it just a static variable of unknown type? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy Young Sent: Saturday, July 30, 2005 6:38 PM To:

RE: [flexcoders] broadcasting to a sub-component

2005-07-30 Thread Matt Chotin
Youre gonna have to provide more information than this. Give everyone ids and youll be able to reach them by dotting down. comp1:myComp1 id=mc1 / Subcomp2:mySubComp2 id=msc2 / mc1.msc2.dispatchEvent({type: change}); From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] namespace/directory structure issue

2005-07-30 Thread Matt Chotin
I think what youre gonna need to do is create a different root directory and then add it to your classpath in flex-config.xml. Put all the components in that directory (create whatever subdirectories you desire). Since you have the test directory it cannot easily refer to components in a

RE: [flexcoders] Binding to properties?

2005-07-30 Thread Stacy Young
Ah, left that meta in there by accident, was messing around. Its not being dispatched. As for the ModelLocator, yes, formSection is typed as a FormSection. IsValid property registers as false when the view is initialized (as it should) yet when the property changes to true. Da button,

RE: [flexcoders] Binding to properties?

2005-07-30 Thread Matt Chotin
Dude, you need a ChangeEvent for a getter unless youre sure it will be right the first time J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacy Young Sent: Saturday, July 30, 2005 6:58 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders]