Re: [flexcoders] JAXB for actionscript

2008-06-01 Thread Everson Alves
Hello, I haven´t seen any but i´ve written a air application that gets Java code generated with JAXB and creates the corresponding actionscript classes. The code is messy but it works. I can give it to you if you are interested. On 5/26/08, gianlucavatinno <[EMAIL PROTECTED]> wrote: > hello to

[flexcoders] Alternating colors for AdvancedDataGrid

2008-07-23 Thread Everson Alves
Hi, I need to use alternate colors for items within a ADG. alternatingItemColors is not what i'm looking for because I need that child objects have the same color as their parent. So the only alternating colors is depth 1. Thanks. -- Jhonny Everson

Re: [flexcoders] Re: Alternating colors for AdvancedDataGrid

2008-07-25 Thread Everson Alves
Hello, I found a solution extending ADG. I'll post here if anyone need it too. Just override drawRowBackgrounds and use alternatingItemColors properties. CODE: override protected function drawRowBackgrounds():void { var rowBGs:Sprite = Sprite(listContent.getChildByName("rowBGs")); if (!ro

[flexcoders] detect the build type (debug or release)

2009-04-20 Thread Everson Alves
Hello, is it possible to detect the build type (debug or release) of an Flex Application from code? -- Jhonny Everson

Re: [flexcoders] detect the build type (debug or release)

2009-04-20 Thread Everson Alves
: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Everson Alves > *Sent:* Monday, April 20, 2009 10:15 AM > *To:* flexcoders@yahoogroups.com > *Subject:* [flexcoders] detect the build type (debug

[flexcoders] bug in Flex regarding to import

2009-04-26 Thread Everson Alves
Hello, I have this scenario: class zzz.Webservice; class xxx.Webservice; class xxx.WebserviceAccess; I'm trying to use zzz.Webservice and can't; I imported it but flex compiler says it's ambiguos, when it shouldn't because I explicitly which one I want to use; -- Jhonny Everson

[flexcoders] Re: bug in Flex regarding to import

2009-04-26 Thread Everson Alves
I'm trying to use zzz.Webservice from xxx.WebserviceAccess On Sun, Apr 26, 2009 at 12:07 PM, Everson Alves wrote: > Hello, I have this scenario: > class zzz.Webservice; > class xxx.Webservice; > class xxx.WebserviceAccess; > I'm trying to use zzz.Webservice and can&

Re: [flexcoders] bug in Flex regarding to import

2009-04-26 Thread Everson Alves
rvice; > > (this should work; haven't actually had this occur in my code yet.) > > On 4/27/09, Everson Alves wrote: > > Hello, I have this scenario: > > class zzz.Webservice; > > class xxx.Webservice; > > class xxx.WebserviceAccess; > > I'm tr

[flexcoders] Generate sample request from WSDL

2009-06-11 Thread Everson Alves
Hello, Does anyone knows if it's possible to generate a sample XML request for a given WSDL. Or more generally, generate sample xml from a schema. I'm trying to build a webservice testing tool. I've done that using PHP, but I'm interested in doing it all in actionscript if it's possible. -- Jhonn

Re: [flexcoders] Read Items / Loop Through Datagrid Rows

2009-06-11 Thread Everson Alves
Hi, I did something quite similar but using List + renderer manually added instead. The custom line renderer dispatches events when edited so I can save the values, remove or add new lines, block the others rows etc. My previous implementation was using datagrid like you is trying but this new appr

[flexcoders] Re: Generate sample request from WSDL

2009-06-15 Thread Everson Alves
pi with no luck. Anybody knows if there is any lib that I can use to generate this sample XML request in actionscript? On Thu, Jun 11, 2009 at 6:21 PM, Everson Alves wrote: > Hello, > Does anyone knows if it's possible to generate a sample XML request for a > given WSDL. Or more generall

Re: [flexcoders] Re: Generate sample request from WSDL

2009-06-15 Thread Everson Alves
1 PM, valdhor wrote: > I don't know of anything. > > I would be inclined to read in the WSDL as a text string and then parse > that rather than use the built in web service functions. If you have already > done it in PHP, then it should be relatively easy. > > > Steve

[flexcoders] Adobe Air: open file with associated application

2009-08-03 Thread Everson Alves
Hello, Is there a way to make an Air application to open a file, let's say a *.doc or *.ppt with their associated applications? -- Jhonny Everson

Re: [flexcoders] Re: Month-calendar control (with MATE test-app and Degrafa skins)

2009-08-06 Thread Everson Alves
Hello, It's a nice work. Here goes some suggestions: - you could move the events by dragging them - add start and end time - have separated fields for subject and description On Thu, Aug 6, 2009 at 11:49 PM, max.nachlinger wrote: > Here's the new version: > > http://flexamusements.blogspot.com

[flexcoders] Singletons and Modules - Application domain problem

2009-08-15 Thread Everson Alves
Hello guys, I'm facing a weird problem. I'm working with flex Modules that are tide mxml components . Using ModuleManager to load the modules. If I load using moduleInfo.load(ApplicationDomain.currentDomain) it loads fine but as I want to use the module as independent sub applications and they use

[flexcoders] Re: Singletons and Modules - Application domain problem

2009-08-15 Thread Everson Alves
I tried removing the option to optimize the module but the problem persists. Any idea? On Sat, Aug 15, 2009 at 1:11 PM, Everson Alves wrote: > Hello guys, > > I'm facing a weird problem. I'm working with flex Modules that are tide > mxml components . Using ModuleManager to

Re: [flexcoders] Re: Singletons and Modules - Application domain problem

2009-08-16 Thread Everson Alves
p://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Everson Alves > *Sent:* Saturday, August 15, 2009 9:47 PM > *To:* granit...@yahoogroups.com; flexcoders@yahoogr

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
> With the added security restrictions... Your singleton implementation may > need to be hardened to prevent multiple instance... Etc. This example may > help as well. > > http://www.quilix.com/node/5 > > Cheers, > > Rick Winscot > > > > > On 8/15/09 12:11 PM, &q

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
n, but that requires changing in a lot of places, mainly propageting the conversationId all components and classes that need to access the modelLocator. On Tue, Aug 18, 2009 at 6:35 PM, Everson Alves wrote: > I'll have a look at it say the outcome here. Thanks. > > > On Tue, Aug 18

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
ng the module SWF again. > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. <http://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *E

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Everson Alves
The dataprovider is an arraycollection or any IList? try dataprovider.refresh(); On Tue, Aug 18, 2009 at 8:59 PM, Richard Rodseth wrote: > > > The full story is too long to relate and involves the component which has > given me more grief than any other - ComboBox. I'm pretty sure I established

Re: [flexcoders] Singletons and Modules - Application domain problem

2009-08-18 Thread Everson Alves
ttp://www.adobe.com/> > > Blog: http://blogs.adobe.com/aharui > > > > *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On > Behalf Of *Everson Alves > *Sent:* Tuesday, August 18, 2009 5:28 PM > > *To:* flexcoders@yahoogroups.com > *Subject:* R

[flexcoders] control captivate swf (fp9 / as2) in flex 3

2009-01-07 Thread Everson Alves
hello, How can I control ( play, pause, stop) an swf made with captivate 3. It's for FP9 ( actionscript 2). LocalConnection doesn't fit me well because the swf I need to control are generated. I don -- Jhonny Everson

[flexcoders] Flash builder 4 Slower Compilation

2009-09-20 Thread Everson Alves
Hello, I'm trying to use FB4 as main ide. Ok, I know it's beta! But everything that I want works. The problem is that the compilation time on the same workspace with a lot of big java and flex projects is much longer than the time when I'm using FB3. It's really weird but it's true. I have both we

[flexcoders] Re: Flash builder 4 Slower Compilation

2009-09-21 Thread Everson Alves
I tried putting flash builder to use 1Gb of ram, but that wasn't the cause... Anybody? On Mon, Sep 21, 2009 at 2:05 AM, Everson Alves wrote: > Hello, > > I'm trying to use FB4 as main ide. Ok, I know it's beta! But everything > that I want works. The problem is that

[flexcoders] mouseOut on drag

2009-12-30 Thread Everson Alves
Hello guys, I have a draggable custom panel (VBOX) with the following: box.addEventListener(MouseEvent.MOUSE_DOWN,handleDown); box.addEventListener(MouseEvent.MOUSE_OUT,handleUp); box.addEventListener(MouseEvent.MOUSE_UP,handleUp); private function handleDown(e:MouseEvent):void{ this.startDrag()

Re: [SPAM] [flexcoders] popup dialog with grow ability?

2010-02-01 Thread Everson Alves
This could be done with separate questions: 1) how to make a popup for a custom component ( e.g. a custom panel, canvas etc). 2) How to make a custom component expandable. There's lots of material about that too. 2010/2/1 MicC > > > > If you have a link that would be great googled for about

Re: [flexcoders] Tutorials or pointing me in the right direction

2010-02-18 Thread Everson Alves
I think this one can be a good start. http://www.jamesward.com/2009/04/16/flex-paint-2/ 2010/2/18 Wally Kolcz > I need to create a coloring tool, for a sick children's portal, where I > can lay a vector outline on the screen and the kids can color it. It > doesnt have to always be 'in the lines'

[flexcoders] Agent Platform for Actionscript

2010-02-20 Thread Everson Alves
We are interested in developing an experimental project, an Agent Platform for Actionscript, something similar to JADE. What you guys think? -- Jhonny Everson

[flexcoders] Re: Sysdeo Tomcat Plugin

2007-06-07 Thread Everson Alves da Silva
> Has anyone had success using the Tomcat Plugin from Sysdeo with Flex > Builder? Yes. Just install Eclipse Java Development Tools, from eclipse update site that it will work.

[flexcoders] Re: Alternating colors for AdvancedDataGrid

2008-07-24 Thread Everson Alves da Silva
--- In flexcoders@yahoogroups.com, "Everson Alves" <[EMAIL PROTECTED]> wrote: > > Hi, > > I need to use alternate colors for items within a ADG. alternatingItemColors > is not what i'm looking for because I need that child objects have the same > color a