[flexcoders] Is there a way to mock stage?

2009-04-15 Thread Borek
has been set correctly (or at least not easily) but I can see no better way at the moment. Any suggestions? Thanks, Borek

[flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread Borek
he actual > > > validation to the presentationModel instance who actually does the > > > validation ... so the view only display the info that comes from the model > > > and that's it... > > > > > > C > > > -- >

[flexcoders] Re: Validation in Model (rather than in View)

2009-04-14 Thread Borek
How does the Presentation Model pattern help? --- In flexcoders@yahoogroups.com, claudiu ursica wrote: > > Have a look a the presentaion model pattern maybe helps your cause... > > C > > > > > ____ > From: Borek > To: flexcoder

[flexcoders] Validation in Model (rather than in View)

2009-04-14 Thread Borek
t;)] public var name : String; and then just have the TextInput in the View validated automatically. Silverlight + .NET RIA Services can work like that but is that possible in Flex where we don't have 2-way data binding? Thanks, Borek

[flexcoders] Re: How to take a screenshot of a loaded module?

2009-03-19 Thread Borek
The module loads and displays just fine if it's added to the visual hierarchy (i.e. is somewhere in my app and is visible). I just can't get a snapshot of it programatically. --- In flexcoders@yahoogroups.com, "rob_mcmichael" wrote: > > --- In flexcoders@yahoo

[flexcoders] How to take a screenshot of a loaded module?

2009-03-18 Thread Borek
object to our saveThumbnail() routine, only a white rectangle is stored (the rectangle has the correct size, though!). Any ideas what else I need to do? I've tried to add CREATION_COMPLETE event handler but it is never triggered. I am kind of lost. Any help would be greatly appreciated, Borek

[flexcoders] Localization vs. normal assets in Flex Builder

2009-02-24 Thread Borek
calization doesn't really work (I tried to add multiple source path entries, like "locale/en_US", "locale/"es_ES" etc. but only the first entry is being picked up). Can anyone confirm this bogus behavior or tell me what I'm doing wrong? I would think that my scenario is pretty common... Thanks, Borek

[flexcoders] Re: Localization without SDK modification?

2009-02-20 Thread Borek
difying the SDK, though just by adding an empty directory. Thanks, Borek --- In flexcoders@yahoogroups.com, Robert Vollmar wrote: > > Hello, > > The frameworks/flex-config.xml file contains this entry, which tells the compiler to look for a directory for the locale: > > locale/{l

[flexcoders] Localization without SDK modification?

2009-02-20 Thread Borek
depend on manual actions (every new developer shouldn't be required to run 'copylocale' prior to compiling the project). I have tried to add the generated SWCs to my libs directory but that didn't work. Any solutions? Thanks, Borek

[flexcoders] Updating AIR apps - 'version string' nonsense?

2008-07-30 Thread Borek
ialog etc.) I feel this is completely wrong in AIR. Am I missing something? Borek

[flexcoders] Re: Show tooltip on click - possible?

2008-05-15 Thread Borek
Thanks for this, I'm sure monkey patching would help but I want to avoid it if possible. Unfortunately, it seems that monkey patching is the only way here. Someone from the Flex team could pick this up... Borek --- In flexcoders@yahoogroups.com, "wesley.petrowski" <[EMAIL

[flexcoders] Show tooltip on click - possible?

2008-05-15 Thread Borek
My situation is that users can hover over a help icon and get a nice help tooltip. One problem is that this tooltip isn't displayed immediately (there is a 0.5s lag by default) which is easily fixed by showDelay property on ToolTipManager. However, there is this second problem: some users click the

[flexcoders] Re: Reading Flex local shared object from Flash - problem

2008-05-01 Thread Borek
Thank you very much, we will try this. Didn't know of this encoding thing! Borek --- In flexcoders@yahoogroups.com, "Jim Hayes" <[EMAIL PROTECTED]> wrote: > > I just had to know. > > http://livedocs.adobe.com/flex/201/langref/flash/net/SharedObject.html#o >

[flexcoders] Re: Reading Flex local shared object from Flash - problem

2008-05-01 Thread Borek
Hi Raghu, It's the other way around - we CAN store shared object in a Flash (AS2) app and then read it in a Flex app, we CAN'T store the shared object in a Flex app and then read it in a Flash app. I think the Flash application is compiled using Flash MX. Thanks, Borek --- In

[flexcoders] Reading Flex local shared object from Flash - problem

2008-05-01 Thread Borek
We can't read Flex-created local shared objects from Flash applications. When I compare .sol files, it looks like Flash and Flex use a different file format - is that correct? If so, is there any work around? Thanks, Borek

[flexcoders] HTTP requests security

2008-02-07 Thread Borek
? Many thanks, Borek

[flexcoders] Re: FB3 - release and debug versions of SWF files

2007-10-02 Thread Borek
The more I work in FB3, the more I think that the debug/release model in FB2 was much better. Flex Builder team, please make available an option to compile the standard output file (which is confusingly the _debug_ version in FB3) as MyAppName-debug.swf. Regards, Borek --- In flexcoders

[flexcoders] FB3 - release and debug versions of SWF files

2007-10-02 Thread Borek
figure out how to generate "MyApp-debug.swf" for normal Flex Builder's compilation. In other words, I would like to influence the filename that Flex Builder uses for SWF compilation but the 'output' command-line argument doesn't work when used inside Flex Builder. Any ideas? Thanks, Borek

[flexcoders] isPropertyDataBound (or something like that)

2007-09-26 Thread Borek
Hi all, I need to programmatically find out whether some property is data bound or not. Is that possible in Flex? Thanks in advance, Borek

[flexcoders] Re: Vector graphics serialization format?

2007-09-26 Thread Borek
Wow, that looks great! I'm looking forward to the beta. Thanks, Borek --- In flexcoders@yahoogroups.com, "Jason Hawryluk" <[EMAIL PROTECTED]> wrote: > > We are hoping to have a beta for Degrafa around the end of Oct. This > framework will do what your looking to d

[flexcoders] Re: Vector graphics serialization format?

2007-09-25 Thread Borek
Or thermo :) We shall see... --- In flexcoders@yahoogroups.com, "Daniel Cascais" <[EMAIL PROTECTED]> wrote: > > The closest to what you want is embedding SVG files. > > On 9/18/07, Borek <[EMAIL PROTECTED]> wrote: > > > > Hi all, is there

[flexcoders] Re: popupManager.removePopup adding effects ??

2007-09-20 Thread Borek
Canvas.addChild(popupCanvas). This will display you pop-up with the addedEffect defined in previous step. 5) To hide the pop-up with an effect, just call contentCanvas.removeChild(popupCanvas). Hope this helps. It's really quite a simple but working solution. Regards, Borek --- In flexcoders@yahoogro

[flexcoders] Re: popupManager.removePopup adding effects ??

2007-09-20 Thread Borek
uick and dirty trick. Regards, Borek --- In flexcoders@yahoogroups.com, "oneproofdk" <[EMAIL PROTECTED]> wrote: > > I'm using popupManager to show a thumbnail when the user hovers over a > icon - added a creationCompleteEffect so it eases.elastic "wobles" &g

[flexcoders] Vector graphics serialization format?

2007-09-18 Thread Borek
rather than imperative method calls when the task - creating user interface - is practically the same as when creating containers and controls. Thanks, Borek