[flexcoders] Re: Aspects of functional programming in ActionScript

2010-08-25 Thread Florian
. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Florian Sent: Friday, August 20, 2010 1:24 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Aspects of functional programming in ActionScript Well

[flexcoders] Re: Aspects of functional programming in ActionScript

2010-08-20 Thread Florian
Well, the question was more intended to case like: function elementAddhandler(event:ElementExistenceEvent):void { const renderer:IVisualElement = event.renderer; } or function iterateOverList(list:IList):void { if (!list) return; const length:int = list.length; for (var i:int; i

[flexcoders] Re: ItemRenderer gets invalidated when List is scrolled

2010-08-10 Thread Florian
when scrolling? If the renderer is using autosizing text controls there can be extra invalidation calls. We are looking at issues related to that right now. Not sure we can always optimize them away. On 8/9/10 1:05 PM, Florian florian.saliho...@... wrote: No, i'm aware

[flexcoders] ItemRenderer gets invalidated when List is scrolled

2010-08-09 Thread Florian
When scrolling my custom item renderer, which inherits from ItemRenderer, i notice significant performance problems, when scrolling the list. It seems like the list's layout is invalidating the component when the list is scrolled. I configured the list's layout with the following parameters:

[flexcoders] Aspects of functional programming in ActionScript

2010-08-09 Thread Florian
I've started swimming in the sea of functional programming languages. As in languages like Scala, immutability is a very important aspect. Since ActionScript offers possibilities to programm in a functional fashion, i'd like to know what kind of impacts to expect consist instead of vars in

[flexcoders] Re: ItemRenderer gets invalidated when List is scrolled

2010-08-09 Thread Florian
, renderers are being recycled so more invalidation does go on. It pretty much has to. You might be able to block some of it, depending on your scenario. On 8/9/10 12:12 AM, Florian florian.saliho...@... wrote: When scrolling my custom item renderer, which inherits from

[flexcoders] Re: ItemRenderer gets invalidated when List is scrolled

2010-08-09 Thread Florian
@yahoogroups.com, Florian florian.saliho...@... wrote: Yes, i understand this aspect of the component model. But since nothing happens after the renderer references a new data, why is there the invalidation of renderers which have a correct state already? --- In flexcoders@yahoogroups.com, Alex Harui

[flexcoders] Re: ItemRenderer gets invalidated when List is scrolled

2010-08-09 Thread Florian
it is decided a renderer will be recycled the data property is set to null before hand. On Mon, Aug 9, 2010 at 4:26 AM, Florian florian.saliho...@... wrote: My thoughts more specifically: - the data property is set - an invalidation should occur. - a renderer is reused - an invalidation

[flexcoders] Re: Smooth scrolling with variable row height in Spark List?

2010-06-15 Thread Florian
Could you post some code? --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Try with really simple variableRowHeight renderers (colored rectangles of various sizes). Maybe the renderer you are using is could use some tuning. On 6/14/10 9:06 AM, vigilsolace sig...@...

[flexcoders] Re: Why does applying Filter to container change anti-aliasing on inner text control

2010-06-15 Thread Florian
When a filter is applied, cacheAsBitmap is set to true which might be the reason. --- In flexcoders@yahoogroups.com, tntomek tnto...@... wrote: Bump anyone --- In flexcoders@yahoogroups.com, tntomek tntomek@ wrote: I have this simple piece of code. mx:DropShadowFilter

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-10 Thread Florian
not popping up although expected. You might understand my confusion. Thanx for taking the time. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Maybe this? http://www.adobe.com/devnet/flex/articles/spark_layouts.html On 6/8/10 11:24 PM, Florian florian.saliho...@... wrote

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-09 Thread Florian
() in the component as well. On 5/31/10 12:34 AM, Florian florian.saliho...@... wrote: Hi Alex, usually i would agree right on spot but the fact that i am using a basic layout in for group and the layouting is done correctly, i don't really see the need for another class. There is just one

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-04 Thread Florian
the measurement and layout logic together is to create a custom layout. I suppose you could also just override measure() in the component as well. On 5/31/10 12:34 AM, Florian florian.saliho...@... wrote: Hi Alex, usually i would agree right on spot but the fact that i am

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-03 Thread Florian
. On 5/31/10 12:34 AM, Florian florian.saliho...@... wrote: Hi Alex, usually i would agree right on spot but the fact that i am using a basic layout in for group and the layouting is done correctly, i don't really see the need for another class. There is just one update

[flexcoders] Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe employees please forward this message: Please make sure that my browser won't crash when a broken SWF is loaded or a runtime errors occur. Also: i experienced the crash a few hours ago the first

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I'm running Mac OS X 10.6.3 and the RC 6 from labs. But i'm running into the issues also with older versions of the player. --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I'm running Mac OS X 10.6.3 and RC 6 from labs, but i'm also experiencing this problem with 10.0.x. --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I know this is not primarily a Flash Player, but an ActionScript/Flex forum but could some Adobe employees please

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-06-02 Thread Florian
that its measurement is not right. One way to encapsulate the measurement and layout logic together is to create a custom layout. I suppose you could also just override measure() in the component as well. On 5/31/10 12:34 AM, Florian florian.saliho...@... wrote: Hi Alex, usually

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Yes, tahnx... but that's not the solution. I need to fix this since and i have to know the reason behind this. It can't be the case that the plugin is crashing my system. Browsers affected. Safari, Opera. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Try Chrome, it

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Well, all i could say was, that it crashed... Charles was showing me some possibilties. I cleaned my Libraries/Preferences/.../#SharedObjects Folder, reinstalled the player a few times (like 5 times) and now i was able to get proper error messages (see link below if you are interessted). It was

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
I have all the infos. And yes, i was quite shocked today experiencing this... well... Thanx for taking the time! --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Just for the record - a quick search in the bug database for LocalConnection gives 88 results, about one

[flexcoders] Re: Addressing SERIOUS Flash Player issues

2010-06-02 Thread Florian
Just wanted to add, that i commented on http://bugs.adobe.com/jira/browse/FP-2837 Best regards. --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Just for the record - a quick search in the bug database for LocalConnection gives 88 results, about one half of them

[flexcoders] Re: Flex 4 layout documentation for spark ActionScript components

2010-05-31 Thread Florian
: I would create a new Layout class and properly measure and layout in its measure() and updateDisplayList() methods and use that as the contentGroup's layout, otherwise the Group's default layout class is going to be arguing with your code. On 5/30/10 3:36 AM, Florian florian.saliho

[flexcoders] Re: Building a wizard ?? any one has done that before ?

2010-05-31 Thread Florian
Sorry, could you open your own thread... @Alex: could you perhaps elaborate a little more on the layout mechanics? Best regards. --- In flexcoders@yahoogroups.com, Nini7016 Nini7016 nahloulaha...@... wrote: Hello :) I would like to build an interface which proposes to the user to search

[flexcoders] Flex 4 layout documentation for spark ActionScript components

2010-05-30 Thread Florian
Hi, i was and i am still running into problems with sizing and placing components in skins programmatically for spark ActionScript and MXML/ActionScript components. I want to initialize the components in MXML and size and position the children in the component's (a component's skin)

[flexcoders] WHO IS RESPONSIBLE???

2010-03-22 Thread Florian
I am scared... I was glad to see that there is now Flash Builder 4 available @ adobe.com... I am glad i didn't buy it right away. I can't install it on a case sensitive formatted HDD?

[flexcoders] Re: Flex 4....Large recordset...how much is too much?

2010-03-14 Thread Florian
But on the other Hand: why would you want to display more then a few hundred rows? There are way more efficient ways to walk through the data. --- In flexcoders@yahoogroups.com, iloveyouwisconsin iloveyouwiscon...@... wrote: Thanks! I will look into that. For now, is there a quick and dirty

[flexcoders] Re: How to create Flex 4 Library Project with custom namespace please ?

2010-03-14 Thread Florian
It's been a while since i did that, but take a look at the manifests: http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_25.html http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_31.html Best regards --- In flexcoders@yahoogroups.com, astronaute75 astrona...@...

[flexcoders] Re: Spark, FXG and composition - the performance black hole

2010-01-28 Thread Florian
Please comment and vote: http://bugs.adobe.com/jira/browse/SDK-25281 --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I think i am going to start a new topic for the issue... I ran into to the problem that i groups and graphic primitives wouldn't behave as expected

[flexcoders] Re: IGraphicElement and LayoutBase

2010-01-19 Thread Florian
of the Group, as in BasicLayout vs. VerticalLayout, just like any other child of the Group. --- In flexcoders@yahoogroups.com, Florian florian.salihovic@ wrote: Ah, thanx. that clearifies a lot. But i don't understand why. I thought the IGraphicElements would be a util class to draw

[flexcoders] Spark, FXG and composition - the performance black hole

2010-01-19 Thread Florian
I think i am going to start a new topic for the issue... I ran into to the problem that i groups and graphic primitives wouldn't behave as expected when compositions are created, in more detail, when a layout is applied. I now understand, that compared to Degrapha, there is no possibility to

[flexcoders] Re: IGraphicElement and LayoutBase

2010-01-16 Thread Florian
regards! --- In flexcoders@yahoogroups.com, Ariel J arielj...@... wrote: You can. It's just that the constraint based sizing of the inner rect doesn't work when you use a vertical layout. Change them to height and width values of 100% and you'll see. --- In flexcoders@yahoogroups.com, Florian

[flexcoders] IGraphicElement and LayoutBase

2010-01-15 Thread Florian
Why is it not possible to draw an IGraphicElement into a Group which has a LayoutBase instance applied to it? ?xml version=1.0 encoding=utf-8? s:Application xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/halo

[flexcoders] [gumbo] Nested groups and clipped contents.

2009-12-03 Thread Florian
I'm just having a short question about nested groups. When i have to groups nested and and both are clipped, why can't i see the contents of the inner group? Is this some sort of masking problem? s:Scroller!-- This group should be a scrollable container for the HGroup --s:Group!-- Since more lists

[flexcoders] Re: [gumbo] Nested groups and clipped contents.

2009-12-03 Thread Florian
I don't know what i did wrong but now it works... strange... --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I'm just having a short question about nested groups. When i have to groups nested and and both are clipped, why can't i see the contents of the inner group

[flexcoders] Re: Stylesheets and swcs.

2009-10-12 Thread Florian
Problem solved... The swc needs to be included as a theme and it has to be added to the library path as well. --- In flexcoders@yahoogroups.com, Florian florian.saliho...@... wrote: I'm currently stuck and i hope somebody can give me a hint. I'm trying to compile a swc with applied

[flexcoders] Stylesheets and swcs.

2009-10-07 Thread Florian
I'm currently stuck and i hope somebody can give me a hint. I'm trying to compile a swc with applied component styles, so i can use the components on the fly without referencing a theme or using a CSS file when compiling the application. I thought the -include-stylesheet compiler option would

[flexcoders] undefined SampleDataEvent

2009-04-05 Thread Florian Heft
[ import flash.events.SampleDataEvent; function sampleDataHandler(event:SampleDataEvent):void { } ]] /mx:Script /mx:Application --- Best regards, florian heft -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Re: flex and automation

2008-06-27 Thread Florian Sprenger
DJ, Peter Martin has description how to run gflashplayer in a framebuffer here: http://weblogs.macromedia.com/pmartin/archives/2007/01/ continous_integ.html HTH florian Am 27.06.2008 um 20:20 schrieb netdeep: Seth, thanks for the reply. What I'm wondering is how to trick the server

Re: [flexcoders] Symmetric Key Encryption in Flex Client C# WebServices

2007-11-29 Thread Florian Sprenger
Hi, have a look at As3 Crypto : http://crypto.hurlant.com/ Florian There is a requirement to implement encryption some data in a Flex based client and decrypt it in a C# based web service, and vice versa. Has anybody tried it with AES, Blowfish or Triple DES? Any pointers would

[flexcoders] internationalization in flex

2005-11-02 Thread Pflueger Florian
Hi List, Is there a way I can simply realized internationalization in flex (like it is possible in other frameworks e.g. Jakarta Struts)? Can not find any Information. thx Florian -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files

AW: [flexcoders] ToolTips on Tree Nodes?

2005-07-13 Thread Florian Pflueger
Hi I tink that you couldnt do it like dataTipField=anyString you have to get the String of any dataProviderField e.g. dataTipField={dataProvider.nameOfAtribut} but the DataTip will only appear if the Entry isnt shown in its whole length. flo -Ursprüngliche Nachricht-

[flexcoders] Re: Flex + JSP + MySQL

2005-07-12 Thread Florian Pflueger
Title: [flexcoders] Re: Flex + JSP + MySQL Thanks Dirk I guess this Tutorial will answer my questions. Flo -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Dirk Eismann Gesendet: Montag, 11. Juli 2005 20:23 An:

AW: [flexcoders] Flex + JSP + MySQL

2005-07-11 Thread Florian Pflueger
Hey Dirk, thanks a lot for your help. flo -Ursprüngliche Nachricht- Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Dirk Eismann Gesendet: Freitag, 8. Juli 2005 16:55 An: flexcoders@yahoogroups.com Betreff: RE: [flexcoders] Flex + JSP + MySQL