[flexcoders] Flex Builder 2.0 extension point documentation?

2006-12-01 Thread jruud68
Are the Eclipse extension points defined by Flex Builder described anywhere? com.adobe.flexbuilder.editors.mxml.quickFixProvider and com.adobe.flexbuilder.editors.mxml.contentAssistFactories are among the more interesting sounding ones that I'm not sure how to use.

[flexcoders] Re: Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread jruud68
Thanks Matt, that should do it (BTW, 2.0 is supposedly using 'Proxy' instead) John --- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote: > > Is this Flex 1.5 you're talking about? Check out __resolve: > http://livedocs.macromedia.com/flex/15/flex_docs_en/1622.htm and i

[flexcoders] Conditional data-binding (if UI control is visible)?

2005-11-18 Thread jruud68
Our application consists of multiple pages, and I don't want the queries on non-visible pages to run until they become selected (visible). Are there any patterns or frameworks that deal with this issue? I think the ideal solution would be if Flex 1.5 or 2.0 data-binding would be delayed until

[flexcoders] Defining default value for missing dynamic properties (doesNotUnderstand:)?

2005-11-18 Thread jruud68
For a dynamic object 'MyObject', does actionscript support returning a default value for missing properties? For example, I'd like: MyObject.MissingProperty to return "there is no such property", if MissingProperty has not been added to MyObject. (This would be similar to implementing a 'doesNot

[flexcoders] Re: BiDi/right-to-left support in Flex

2005-05-17 Thread jruud68
[mailto:[EMAIL PROTECTED] On > Behalf Of jruud68 > Sent: Monday, May 16, 2005 10:21 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] BiDi/right-to-left support in Flex > > > I was just browsing through the code for mx:TextInput, trying to > figure out if it wou

[flexcoders] BiDi/right-to-left support in Flex

2005-05-16 Thread jruud68
I was just browsing through the code for mx:TextInput, trying to figure out if it would be possible to add right-to-left support to the basic Flex input controls (like mx:TextInput). However, I suspect there is probably some reason why this wasn't just added to Flex in the first place... Has anybod

[flexcoders] Re: How to restart app/get url of current app

2005-05-11 Thread jruud68
--- In flexcoders@yahoogroups.com, Manish Jethani <[EMAIL PROTECTED]> wrote: > On 5/12/05, jruud68 <[EMAIL PROTECTED]> wrote: > > I need to restart my application after a user presses the "logout" > > button. Running: getURL("http://localhost:8700/my

[flexcoders] How to restart app/get url of current app

2005-05-11 Thread jruud68
I need to restart my application after a user presses the "logout" button. Running: getURL("http://localhost:8700/mydir/MyApp.mxml";); in my app's "logout" event handler works, but is there a less hardcoded way of getting my app's URL? Thanks, John Yahoo! Groups Links <*> To visit your gr

[flexcoders] HTTPService and dynamic result handlers

2005-04-29 Thread jruud68
I need to define my HTTPService in MXML so that the invoker of the service.send() call gets notified once the query result is ready (i.e. the service may be invoked from within class C1 or C2, so either C1 or C2 would get nofied depending on where the call was made from). The following code is

[flexcoders] Data-binding problem using Cairngorm ServiceLocator

2005-04-29 Thread jruud68
I have defined a HTTPService in my Services.mxml as follows: http://www.mysite.com/index.xml"; {username} I then try to invoke the service from a different MXML file: var query = ServiceLocator.getInstance().getService("myQuery"); query.send(); The problem is that 'username' is bound