[flexcoders] Re: Spring vs Flex

2009-03-30 Thread kramus0
Or just have a look at Christophe Coenraets page at http://coenraets.org/flex-spring/ Regards Markus --- In flexcoders@yahoogroups.com, senthilkumarirtt senthilkumari...@... wrote: hi i need to integrate spring and flex application. ( i want to get data retun by spring from Db to

[flexcoders] Flex Roadmap Question

2009-03-09 Thread kramus0
I'm not sure if I should ask that question here, but maybe somebody can help me anyway. Is there any roadmap for Flex? I have found a bug in the Flex bug management system (Jira) that shows that it is already fixed in I11 - which mean Iteration 11 for Gumbo. But what does that exactly mean? Is

[flexcoders] Re: DateFormatter Bug?

2008-09-23 Thread kramus0
Should I report this a bug? --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 19 Sep 2008, kramus0 wrote: trace(myDateFormatter.format(myDate)); // -- returns an empty string!!! I would have expected 00:00 or 12:00. I suspect the timeOffeset is trying

Re: RES: [flexcoders] DateFormatter Bug?

2008-09-22 Thread kramus0
: flexcoders@yahoogroups.com Assunto: Re: [flexcoders] DateFormatter Bug? On Friday 19 Sep 2008, kramus0 wrote: trace(myDateFormatter.format(myDate)); // -- returns an empty string!!! I would have expected 00:00 or 12:00. I suspect the timeOffeset is trying to subtract an hour from the start

[flexcoders] DateFormatter Bug?

2008-09-19 Thread kramus0
Hi all, is this maybe a DateFormatter bug or am I doing something wrong? When I use a Date object that is initialized with 0 (Zero) then I can't get that value formated (with my German environment) using the DateFormatter. Here is my code: var myDateFormatter: DateFormatter = new

[flexcoders] Stop Loader.load before redirect

2008-06-17 Thread kramus0
Hi, I have the problem that I want to cancel a Loader.load(...) request before it follows any redirects (done by a HTTP 302). Is the any chance to do it? I have tried to use Loader.close() but it didn't work. Thanks a lot. Markus

[flexcoders] Re: Cache image in Security Sandbox

2008-03-25 Thread kramus0
Does nobody else have ever thought about that? Thanks for your help. Markus --- In flexcoders@yahoogroups.com, kramus0 [EMAIL PROTECTED] wrote: I have build a simple image cache in Flex that is used to cache all loaded images from different web sites. When I deployed that version I got

[flexcoders] Re: Number of lines in mx:text/

2007-11-01 Thread kramus0
Hello, can please somebody confirm if this is really a bug? Thanks Markus --- In flexcoders@yahoogroups.com, kramus0 [EMAIL PROTECTED] wrote: Yes I thought so as well, but this doesn't seems to work. Below you can find my code example. So what I see on the screen are the first two lines

[flexcoders] Re: Measuring TextField properties in TextArea subclass

2007-10-29 Thread kramus0
I think it's nearly the the same issue that I dicussed in message 91764 Number of lines in mx:text/. But I didn't get an answer yet. Markus --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: It looks like the force update method you need for TextArea is

[flexcoders] Re: Number of lines in mx:text/

2007-10-25 Thread kramus0
(). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kramus0 Sent: Wednesday, October 24, 2007 9:23 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Number of lines in mx:text/ Thanks for your help. But when is the text in the textField

[flexcoders] Text truncateToFit

2007-10-24 Thread kramus0
I'm not sure whether this is a bug or not but truncateToFit doesn't seems to work for me. I have a text that has has a certain width and height so that it can show two lines. When I set truncateToFit to true and assign a text that is longer than to lines I would expect it is truncated at the end

[flexcoders] Re: Text truncateToFit

2007-10-24 Thread kramus0
: [flexcoders] Text truncateToFit Hi, Use mx:TextArea text=Hello kramus0 editable=false Width= Height=/ Set the Width and Height in the design mode appropriately to specify 1 or 2 lines as required. Thanks

[flexcoders] Re: Text truncateToFit

2007-10-24 Thread kramus0
it yourself, or find someone that already has. From http://livedocs.adobe.com/flex/201/langref/mx/controls/Text.html - unlike Label, Text does not truncate its text with ... /Max On 10/24/07, kramus0 [EMAIL PROTECTED] wrote: I'm not sure whether this is a bug or not but truncateToFit

[flexcoders] Re: Number of lines in mx:text/

2007-10-24 Thread kramus0
. There are other apis on TextField to get line content From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kramus0 Sent: Tuesday, October 23, 2007 9:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Number of lines in mx:text

[flexcoders] Number of lines in mx:text/

2007-10-23 Thread kramus0
This might be fairly simple but how can I find out how many lines a text contains? If I for instance assign some long text to a text field it is separated in different lines if the control height is big enough. So how can I find out how many lines are there and what their content is? Thanks a

[flexcoders] Re: String concat in MXML (with using @Resource)

2007-10-19 Thread kramus0
Of kramus0 Sent: Thursday, October 18, 2007 2:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] String concat in MXML (with using @Resource) Hi all, I have a simple question regarding text values in mxml files. Is it possible to concat string values in a mxml text or label

[flexcoders] String concat in MXML (with using @Resource)

2007-10-18 Thread kramus0
Hi all, I have a simple question regarding text values in mxml files. Is it possible to concat string values in a mxml text or label property? So something like this: mx:Label text='Value' + 'AnotherValue'/ I know that it doesn't work because it uses it as a hole string and the single strings

[flexcoders] Cairngorm ServiceLocator as ActionScript class?

2007-10-05 Thread kramus0
Hi, is it possible to write the cairngorm ServiceLocator as an ActionScript class - instead of an mxml file? Does anybody know how to do that? Which class does it extend? Thanks for your help. Markus

[flexcoders] Re: Cairngorm ServiceLocator as ActionScript class?

2007-10-05 Thread kramus0
Didn't know it is that easy. :-) Thanks. Markus --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 05 Oct 2007, [EMAIL PROTECTED] wrote: is it possible to write the cairngorm ServiceLocator as an ActionScript class - instead of an mxml file? Turn on

[flexcoders] MXML value / Difference between default value and a mxml value

2007-09-24 Thread kramus0
Hi, this might sound difficult but I'm sure it isn't. I have written my own ActionScript class that extents from LinkButton. But I want that my LinkButton class uses a normal font (fontWeight = normal) as default instead of the bold font. But how can I distinguish between the default value

[flexcoders] Panel with transparent content area

2007-09-18 Thread kramus0
Hi, I am struggle a bit with a really simple panel that I what to use as container for other components. This panel should have rounded corners and it should look like as if it contains no content area. If I set for instance the border thickness so high that it doesn't show the content area it

[flexcoders] Re: Panel with transparent content area [Solved]

2007-09-18 Thread kramus0
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, Set the border thicknesses to 0 and the border will dissapear. Peace, Mike On 9/18/07, kramus0 [EMAIL PROTECTED] wrote: Hi, I am struggle a bit with a really simple panel that I what to use

[flexcoders] Re: Using @Resource directive with Moxie

2007-09-13 Thread kramus0
. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kramus0 Sent: Wednesday, September 12, 2007 9:56 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using @Resource directive with Moxie Hi again, maybe

[flexcoders] Using @Resource directive with Moxie

2007-09-12 Thread kramus0
Hi, when I use the 2.0.1 SDK I can use a localized value for the url in a HTTPService and it would look like this: mx:HTTPService id=myService url=@Resource(key='myServiceUrl', bundle='myServiceBundle')/ But when I try to compile the same code with the Moxie SDK I get an error

[flexcoders] Re: Using @Resource directive with Moxie

2007-09-12 Thread kramus0
said in the 2.0.1 SDK that was fine. --- In flexcoders@yahoogroups.com, kramus0 [EMAIL PROTECTED] wrote: Hi, when I use the 2.0.1 SDK I can use a localized value for the url in a HTTPService and it would look like this: mx:HTTPService id=myService url=@Resource(key

[flexcoders] Re: Text display in a ComboBox

2007-09-10 Thread kramus0
Hi again, is this really such a difficult thing? I was thinking about to write my own class that inherits from ComboBox and then I could access the internal text field that is used to display the text. Did anybody try this before? Regards Markus --- In flexcoders@yahoogroups.com, kramus0

[flexcoders] Text display in a ComboBox

2007-09-06 Thread kramus0
Hi, I have a simple question concerning the text display in a (closed) ComboBox. Is it possible to reduce the offset of the displayed text from the upper left corner? My ComboBox seems to be large enough for the text but by default I have an offset of 6 pixels to the top and around 4 pixels to

[flexcoders] Re: Integrating MapServer with Flex

2007-08-30 Thread kramus0
was to write a new map provider for the WMS map server. Was not to hard. ;-) Regards Markus --- In flexcoders@yahoogroups.com, paulh [EMAIL PROTECTED] wrote: kramus0 wrote: integrated several map providers in a map component using actionscript 3. modestMap supports flex? i thought it was just

[flexcoders] Re: Integrating MapServer with Flex

2007-08-29 Thread kramus0
Hi, I suggest you should take a look on http://modestmaps.com/ - they have integrated several map providers in a map component using actionscript 3. Regards Markus --- In flexcoders@yahoogroups.com, sonnygett [EMAIL PROTECTED] wrote: Hi guys, I'm a college student and now start to working