[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 
it
> should get you on your way.
> 
>  
> 
> Matt
> 
> 
> 







 Yahoo! Groups Sponsor ~--> 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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 some event occured (i.e. a control becomes 
visible), but I'd be very interested to hear if somebody has had any 
luck with a more manually controlled approach as well.

Thanks, John





 Yahoo! Groups Sponsor ~--> 
1.2 million kids a year are victims of human trafficking. Stop slavery.
http://us.click.yahoo.com/WpTY2A/izNLAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 'doesNotUndertand:' method, 
that would be invoked if the property is missing, in Smalltalk)

Thanks, John





 Yahoo! Groups Sponsor ~--> 
Get fast access to your favorite Yahoo! Groups. Make Yahoo! your home page
http://us.click.yahoo.com/dpRU5A/wUILAA/yQLSAA/nhFolB/TM
~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




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

2005-05-17 Thread jruud68
Gordon, we are developing a prototype of an application that would 
run on a number of different languages, including RTL languages 
(arabic is likely the most urgent). The lack of RTL support may be a 
deal-breaker, but it would be helpful if we could tell our potential 
customer that RTL support is coming (and give them as much 
information about it as possible). 

Thanks, John

--- In flexcoders@yahoogroups.com, Gordon Smith <[EMAIL PROTECTED]> wrote:
> A TextField, which is the underlying Flash Player object rendering 
the text,
> does not support right-to-left scripts such as Hebrew or Arabic. 
Are you
> developing applications for these markets? Can you let us know 
about the
> demand for them, to help our player team judge the importance of 
this
> feature?
> 
> - Gordon
> 
> 
> -Original Message-
> From: flexcoders@yahoogroups.com 
[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 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 anybody tried to implement this themselves, 
and
> did you have any luck? 
> 
> Thanks, John
> 
> 
> 
> 
>  
> Yahoo! Groups Links




 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 anybody tried to implement this themselves, and
did you have any luck? 

Thanks, John




 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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/mydir/MyApp.mxml";);
> > in my app's "logout" event handler works, but is there a less
> > hardcoded way of getting my app's URL?
> 
> getURL("?")

Thank you (that worked)!




 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 




[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 from the Cairngorm demo application, and shows 
how this can be done for a mx:RemoteObject. Is there way to do the 
same thing for a HTTPService?

Thanks, John




service = ServiceLocator.getInstance().getService
("customerDelegate");
var call = service.login( loginVO );
call.resultHandler = Delegate.create(Object(this), this.onResult);





 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 





[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 to myQuery before myQuery 
has been given a value by the app, so running the query fails. Is 
there a way to force a 'rebind' of the query once it has been 
returned from the ServiceLocator and before invoking query.send()? 
(this is not necessarily Cairngorm's fault, but I need a workaround 
when for when services are defined in MXML)

Thanks, John





 
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 use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/