Re: [flexcoders] why the textarea can not display the value?

2005-06-01 Thread Manish Jethani
On 6/1/05, loveewind [EMAIL PROTECTED] wrote: Function: User inputs the word in textarea,enter the key Enter, the head of next line need display the character *, Do it in the 'change' event handler: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml;

[flexcoders] Re: why the textarea can not display the value?

2005-06-01 Thread loveewind
great!thanks! --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 6/1/05, loveewind [EMAIL PROTECTED] wrote: Function: User inputs the word in textarea,enter the key Enter, the head of next line need display the character *, Do it in the 'change' event

[flexcoders] Re: Hiding 'Null'...

2005-06-01 Thread jamiebadman
--- In flexcoders@yahoogroups.com, alex_harui [EMAIL PROTECTED] wrote: The TextInput is kind enough to do a toString() on anything passed to its .text property, which is great for Number and other things, but is the root of your problem. My advice, subclass TextInput and put the null

[flexcoders] More Documentation of Cairngorm and Flex Cairngorm Store

2005-06-01 Thread Steven Webster
All, Just in case you're not aware ... myself and some of the other team members here are serialising a number of blog entries that will delve into the detail of Cairngorm store; we've put up 3 entries so far, that cover the bottom 2-tiers of the 3-tier architecture, and in future blog

Re: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread dave buhler
Hi Dan, MethodName: usersService.loginUser Parameters (object #2) .[0] (object #3) .._flag: Envelope ..data (object #4) ...[0]: (undefined) ..headers (object #5) ...[0] (object #6) [0]: ServiceType

[flexcoders] media playing at startup

2005-06-01 Thread Krzysztof Szlapinski
hi, my application is basically a viewstack with many external componet children: mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; xmlns:local=* mx:Panel id=pan width=900 height=560 horizontalAlign=center verticalAlign=middle mx:ViewStack id=vs widthFlex=0

RE: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread Dirk Eismann
Hi Dave, make sure to configure the named object in the gateway-config.xml file of your ColdFusion MX 7 server and not in the flex-config.xml Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of dave buhler Sent: Wednesday, June 01, 2005 3:33

Re: [flexcoders] Using custom classes in RSL

2005-06-01 Thread Aral Balkan
Hi Roger, Darren, I *hate* the idea of Flex running on the server, and I think that's why it took me so long to start using it. In my opinion, there's no reason a .swf needs to be compiled for every request, .swf is not server-side technology, and Flash has always been client side

Re: [flexcoders] Using custom classes in RSL

2005-06-01 Thread Aral Balkan
Of course, I could've done without misspelling Darron's name fifty times. Sorry, dude -- I'll conveniently blame the spell check instead of my lack of concentration :) Aral Aral Balkan wrote: Hi Roger, Darren, snip Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Using custom classes in RSL

2005-06-01 Thread Aral Balkan
Hi Roger, Darron, [No, I can't possibly let this email live on with Darron's name misspelled. :) I'm resending it... list admins please feel free to delete the original message.] I *hate* the idea of Flex running on the server, and I think that's why it took me so long to start using it. In

Re: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread dave buhler
Hi Dirk When I looked in the Cairngorm store example, the Flex-Config was modified with names that I think had to map to names in my Services.mxml. I am @ work right now, so the gateway-config.xml isn't in front of me. Do I need to modify a whitelist within the Gateway-Config AND the

RE: [flexcoders] VO problem

2005-06-01 Thread Peter Farland
Oops, note that there's no need for a public modifier on the AS2 class declaration, only the Java class. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christoph Guse Sent: Tuesday, May 31, 2005 12:05 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] media playing at startup

2005-06-01 Thread dave buhler
Hi, I typically use creationPolicy=all for my viewstack. With your situation, you have options. If you want the mediaDisplay to load the content in the background, use creationPolicy=all and have a viewHelper load the FLV (setMedia or contentPath) when the button to the view is clicked. Or,

Re: [flexcoders] TabNavigator - Hiding Tabs

2005-06-01 Thread dave buhler
Hi Ali, I'll give it a try tonight. One of the other difficulties I was having was this: I wanted to Keep a tab's state when a view is switched. For example, I have something like: tabNavigator ---pets -dogs -cats ---programmers -java -actionscript -php /tabNavigator

[flexcoders] Re: flex swc theme flash

2005-06-01 Thread alex_harui
And it turns out that both work fine unless you are using a custom theme swc with an non-actionscript skin for the title bar. That exposes a bug in the Panel code that can be worked around as follows: mx:Panel id=foo creationComplete=foo.back_mc._visible = false... --- In

[flexcoders] File - flexcodersFAQ.txt

2005-06-01 Thread flexcoders
Flexcoders Frequently Asked Questions Last Updated: 30th May 2005 Contributors: Matt Chotin, Steven Webster, Alistair McLeod, Tariq Ahmed, Jeff Tapper,

RE: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread Peter Farland
Hey Dave, Lots to discuss here. There are compile time considerations and runtime considerations. Firstly, from the AMF trace that you posted I see several things worth mentioning: 1. The MethodName is listed as usersService.loginUser which implies the service name was usersService and the

[flexcoders] Re: flex swc theme flash

2005-06-01 Thread tongfangchen
Yes, I am using a custom theme. How to add actionscript for the title bar --- In flexcoders@yahoogroups.com, alex_harui [EMAIL PROTECTED] wrote: And it turns out that both work fine unless you are using a custom theme swc with an non-actionscript skin for the title bar. That exposes a bug

RE: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread Steven Webster
As for Cairngorm considerations, I can't comment on those but this list seems very capable of helping out in that regard. I'll just followup Pete's (excellent) post by saying that there's a methodology to tracking this down; I'd suggest reducing your testing to a single *non cairngorm*

RE: [flexcoders] Re: Hiding 'Null'...

2005-06-01 Thread Matt Chotin
Actually, make sure you also put a getter in there since Flex requires both getter and setter when you override. function get text() : String { return super.text; } Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alex_harui Sent: Wednesday,

RE: [flexcoders] HTTPService error strings

2005-06-01 Thread Cynthia Lee
Doh! I could never get the proxy to work in my environment. Every time I made an HTTPService call, I would get a generic Could not retrive data error. Once I turned the proxy off, the HTTService calls would work fine except for the ability to pass back any errors from the service call.

[flexcoders] Re: Custom preloader question

2005-06-01 Thread pilby1
Lol, it was in one of the handful of chapters I haven't read. But I did check the book index, looking for custom and preloader, and I didn't find any references. The example in your book required using Flash. I was looking for a preloader that's reliant on only an Actionscript class, i.e,. no

[flexcoders] Flex/Maelstrom/PNG/SVG?

2005-06-01 Thread Rick Bullotta
Any insights as to whether or not Maelstrom/Flash Player 8 will support PNG (or ideally SVG) images natively/remotely (as opposed to embedded)? Rick Bullotta CTO Lighthammer Software www.lighthammer.com Yahoo! Groups Links To visit your group on the web, go

Re: [flexcoders] media playing at startup

2005-06-01 Thread Manish Jethani
On 6/1/05, Krzysztof Szlapinski [EMAIL PROTECTED] wrote: one of these comonents has a media display component and the problem is that the media starts to play for one second and then stops when the application is being initialized even when its autoplay property is set to false. Can you

Re: [flexcoders] Image control does not display dynamically generated images?

2005-06-01 Thread dave buhler
Baseline = the same term as non-progressive. Some of the image converters allow you to batch-convert images to baseline.On 6/1/05, JesterXL [EMAIL PROTECTED] wrote: Are the JPEG's being created progressive? Flash Player only supports non-progressive JPEG's to be loaded at runtime.

RE: [flexcoders] Image control does not display dynamically generated images?

2005-06-01 Thread Rick Bullotta
Not sure we have the ability to change the JPG rendering typeof course, everything else on the planet supports this JPEG format why not Flash Player? J. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JesterXL Sent: Wednesday, June 01, 2005 2:37 PM To:

[flexcoders] Fun with context roots

2005-06-01 Thread sbyrne_dorado
I am wondering if I've stumbled on a limitation of Flex, or if it's a limitation of my knowledge (probably the latter). Here's the situation: I would like to have the ability to have a web server dispatch to different app servers based on a contex root like path prefix. But, I don't want to have

Re: [flexcoders] Image control does not display dynamically generated images?

2005-06-01 Thread dave buhler
So the player doesn't have to support a decompressor that would bloat the size. Same reason it doesn't support RegEx.On 6/1/05, Rick Bullotta [EMAIL PROTECTED] wrote: Not sure we have the ability to change the JPG rendering typeof course, everything else on the planet supports

RE: [flexcoders] Is there a Java form of ActionsScript escape/unescape?

2005-06-01 Thread Matt Chotin
Title: Is there a Java form of ActionsScript escape/unescape? java.net.URLEncoder.encode(strToEncode, UTF-8); Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Wednesday, June 01, 2005 8:31 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] Fun with context roots

2005-06-01 Thread Matt Chotin
What urls are being generated by the server here, named services? If the urls need to be portable can you use relative urls? I can understand that you want a url on one server to redirect to a different url on another server using a different path, but I guess Im not sure how the context

Re: [flexcoders] Re: Cairngorm .99 + Flex-Config + Services.mxml

2005-06-01 Thread dave buhler
Hi Peter and Steven, First, thanks for the assistance and for Pete, the very eloquent response. 2. A Flex-specific RemoteObject envelope is being sent to a CFC - this is not supported. The idea of a stateless-class or stateful-class isa Flex-only consideration for the Java adapters. You have