[flexcoders] Re: Using @Resource directive with Moxie

2007-09-13 Thread kramus0
this as a bug at http://bugs.adobe.com/flex > <http://bugs.adobe.com/flex> . We should probably make the MXML compiler > autogenerate a resourceManager property if necessary so that > @Resource(...) will work in any class. > > - Gordon > > ___

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

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

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

[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? > > Tur

[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: I know that it doesn't work because it uses it as a hole string and the single strings are not concatenated at all. But it wor

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

2007-10-19 Thread kramus0
expressions that get > evaluated. > > > > You can use script as well: > > > > > > > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of kramus0 > Sent: Thursday,

[flexcoders] Number of lines in

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 lot

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

[flexcoders] Re: Text truncateToFit

2007-10-24 Thread kramus0
sign mode appropriately to > specify 1 or 2 lines > as required. > > Thanks, > Pratap Ramanujam > > > > _ > > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of kramus0

[flexcoders] Re: Text truncateToFit

2007-10-24 Thread kramus0
, you either need to implement 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 &l

[flexcoders] Re: Number of lines in

2007-10-24 Thread kramus0
internal TextField and get numLines. 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: fle

[flexcoders] Re: Number of lines in

2007-10-25 Thread kramus0
} } } --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > You should be all set after super.updateDisplayList(). > > > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT

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

[flexcoders] Re: Number of lines in

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 wh

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

[flexcoders] Re: Integrating MapServer with Flex

2007-08-30 Thread kramus0
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 sup

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

[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, "kr

[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: But when I try to compile the same code with the Moxie SDK I get an error that basically says: Error: Try to access a not defined property resourceManager. (My actual error

[flexcoders] Re: Using @Resource directive with Moxie

2007-09-12 Thread kramus0
"http://www.adobe.com/2006/cairngorm";> The compiler error is on the last line, where it tries to allocate the Resource. Like I said in the 2.0.1 SDK that was fine. --- In flexcoders@yahoogroups.com, "kramus0" <[EMAIL PROTECTED]> wrote: > > Hi, &

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

Re: RES: [flexcoders] DateFormatter Bug?

2008-09-22 Thread kramus0
e de Tom Chiverton > Enviada em: segunda-feira, 22 de setembro de 2008 10:29 > Para: flexcoders@yahoogroups.com > Assunto: Re: [flexcoders] DateFormatter Bug? > > On Friday 19 Sep 2008, kramus0 wrote: > > trace(myDateFormatter.format(myDate)); // <-- returns an empty > st

[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

[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

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

[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" wrote: > > hi > i need to integrate spring and flex application. > ( i want to get data retun by spring from Db to Advanced datagrid in