[flexcoders] XML Deserializing

2008-05-15 Thread Jhonny Everson
. How can I copy that object forcing it to cast to that class? -- Jhonny Everson

Re: [flexcoders] Re: JAXB POJO to Action Script VO

2008-04-01 Thread Jhonny Everson
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, JhonnyEverson [EMAIL PROTECTED] wrote: Just correcting myself. I DON'T think we can bind internal classes in actionscript. On Feb 4, 2008 5:36 PM, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, I'm using JAXB to generate POJOs

[flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
'? ( don't need to be completely stable, but at least usable) Does anyone knows an alternative? Thanks -- Jhonny Everson

[flexcoders] Re: Artemis

2008-04-01 Thread Jhonny Everson
Trying to run the sample application This application requires a version of Adobe AIR which is no longer supported. Please contact the application author for an updated version. On 4/1/08, Jhonny Everson [EMAIL PROTECTED] wrote: hi Guys, Is anyone using Artemis to bridge Adobe Air

Re: [flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
source inside of something like 3-6 months. On 4/1/08, Jhonny Everson [EMAIL PROTECTED] wrote: Thanks guys, We don't want to install anything on client's machine unless it is really necessary. We are even using embed databases. I really want to use Flex/AIR as front-end, but installing a java

Re: [flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
an opportunity to take over the Deskops. -- Jhonny Everson

Re: [flexcoders] Artemis

2008-04-01 Thread Jhonny Everson
://tc.deals.yahoo.com/tc/blockbuster/text5.com, No Cost. -- Jhonny Everson

Re: [flexcoders] Re: Upload files using Hibernate and Java

2008-02-29 Thread Jhonny Everson
} } -- Jhonny Everson

Re: [flexcoders] DataGrid - programmatically selecting the first row - selectedItem is null

2008-02-29 Thread Jhonny Everson
You could try something like: dg.selectedItem = xmlDataProvider[0]; where xmlDataProvider[0] points to the first item in the dataprovider. -- Jhonny Everson

Re: [flexcoders] Programmatically know if property is a Getter or Setter?

2008-02-27 Thread Jhonny Everson
/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links -- Jhonny Everson

Re: [flexcoders] Localizing Menus

2008-02-23 Thread Jhonny Everson
. DisplayNames Name language=en_US text=Test / Name language=en_UK text=Test / /DisplayNames --- Jhonny Everson [EMAIL PROTECTED] khronnuz%40gmail.com wrote: Hi, I'm using resourceBundles ( .properties files) to define multiple locales, it's working except that I have a MenuBar which uses

[flexcoders] Localizing Menus

2008-02-22 Thread Jhonny Everson
Hi, I'm using resourceBundles ( .properties files) to define multiple locales, it's working except that I have a MenuBar which uses an XML file to define it's items. How can I can localize the menu items too? -- Jhonny Everson

Re: [flexcoders] Re: Help with RegEx

2008-02-14 Thread Jhonny Everson
To solve a similar problem I wrote a lexical analyzer and a parser in AIR. I use it to convert Java code to AS3 to using with remoting. The code is messy but i can send to you if you want. -- Jhonny Everson

Re: [flexcoders] dynamic variable naming in as3

2008-02-12 Thread Jhonny Everson
Or to be more careful... for (var i:int=0;i10;i++){ clips[i] = new Loader(); } On Feb 12, 2008 12:42 PM, Jhonny Everson [EMAIL PROTECTED] wrote: I don't know if you can create properties like you want, by using this['']. But for what you have said you can just have an array: var

Re: [flexcoders] dynamic variable naming in as3

2008-02-12 Thread Jhonny Everson
. -- Jhonny Everson

[flexcoders] Unable to resolve a class for factoryClass

2008-02-05 Thread Jhonny Everson
this error, I just recompile and the error disappears. But if I just compile again, it may appear. It's random but often. Does anyone know what is it? It's really annoying. -- Jhonny Everson

Re: [flexcoders] JAXB POJO to Action Script VO

2008-02-04 Thread Jhonny Everson
Just correcting myself. I DON'T think we can bind internal classes in actionscript. On Feb 4, 2008 5:36 PM, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, I'm using JAXB to generate POJOs too, it's working fine. I have even written an Air application to automatically generate actionscript code

Re: [flexcoders] JAXB POJO to Action Script VO

2008-02-04 Thread Jhonny Everson
are interested in the application to generate actionscript from java code say so that i'll send to you. -- Jhonny Everson

Re: [flexcoders] amfphp and complex where clauses in queries

2008-02-02 Thread Jhonny Everson
everything. -- Jhonny Everson

Re: RES: [flexcoders]

2008-02-01 Thread Jhonny Everson
You can use Red5 with sharedObjects. -- Jhonny Everson

Re: [flexcoders] Re: How can I save XML path deep inside my XML data ?

2008-01-31 Thread Jhonny Everson
].book.covers.cover[2].items[2].data123 However I can not build the above statement since the XML is dynamic. I wish for the function to return the absolute path of the item after I find it ... Thanks in advance, Sean. -- Jhonny Everson

Re: [flexcoders] Re: Executing local java

2008-01-30 Thread Jhonny Everson
Thank you guys, Artemis looks like it is what I wanted. Using javax.xml.ws.Endpoint looks good too. -- Jhonny Everson

Re: [flexcoders] RegEx help

2008-01-29 Thread Jhonny Everson
Hi Nick, I have a String that will contain camel-case characters that I would like to add an underscore before each capital letter. var string1:String = SomeCamelCaseString; var string2:String = string1.replace(/(\w)([A-Z])/g,$1_$2); -- Jhonny Everson

[flexcoders] Re: Executing local java

2008-01-29 Thread Jhonny Everson
Anyone does have a clue how to use flex for front-end for a Java application withou having to use a java server? On Jan 25, 2008 10:13 PM, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, Can Adobe Air run a local java application? Like System.exec()? We are building a multi-agent system using

Re: [flexcoders] Re: Executing local java

2008-01-29 Thread Jhonny Everson
Thanks. I was looking for a simpler way but i guess it's the only one... On Jan 30, 2008 3:53 AM, andrii_olefirenko [EMAIL PROTECTED] wrote: you could write a local service to access your java code. that's how i did it: along with AIR app, the Jetty web server is installed with all needed

[flexcoders] Executing local java

2008-01-25 Thread Jhonny Everson
Hi, Can Adobe Air run a local java application? Like System.exec()? We are building a multi-agent system using Jade. I was thinking about doing the front-end using Air. -- Jhonny Everson

Re: [flexcoders] Re: Upload/Download Files using FTP/SSH2 with Air

2008-01-14 Thread Jhonny Everson
, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, Does anyone have anything on using Adobe Air to transfer files to a server that doesn't involve server side code solution? like FTP, SSH2... Thanks, -- Jhonny Everson -- Jhonny Everson

[flexcoders] Upload/Download Files using FTP/SSH2 with Air

2008-01-13 Thread Jhonny Everson
Hi, Does anyone have anything on using Adobe Air to transfer files to a server that doesn't involve server side code solution? like FTP, SSH2... Thanks, -- Jhonny Everson

Re: [flexcoders] Re: Alternatives to LCDS

2007-12-29 Thread Jhonny Everson
Take a look at red5, it's worth a try. -- Jhonny Everson

Re: [flexcoders] Re: SharedObject security

2007-12-29 Thread Jhonny Everson
. -Andrew --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Jhonny Everson [EMAIL PROTECTED] wrote: I don't know about that, but I guess you can encrypt your data before saving to SO. Maybe that's a solution... On 12/28/07, andrewwestberg [EMAIL PROTECTED] wrote

Re: [flexcoders] SharedObject security

2007-12-28 Thread Jhonny Everson
-- Jhonny Everson

Re: [flexcoders] function binding toString

2007-12-26 Thread Jhonny Everson
():String { stringValue= this.toString(); return stringValue; } mx:Label id=lbl text={data.nameID.stringValue}/ Regards Frederico Garcia -- Jhonny Everson

Re: [flexcoders] Re: Learning Java for Flex

2007-12-25 Thread Jhonny Everson
frameworks. I'm sugesting is that you have to be able to write some small programs in java before thinking of more complex problems, like using java as backend for flex applications. Hope i've helped. Merry Christmas for you all. God bless you. -- Jhonny Everson

Re: [flexcoders] Connecting Flex with SQL Server

2007-12-20 Thread Jhonny Everson
Rajesh -- Jhonny Everson

[flexcoders] Problems with Modules

2007-12-20 Thread Jhonny Everson
' into main application. I've assured that it only calls any module after the module is ready. It also happened to ComboBox, MenuBar and some custom classes. Is that correct or am I missing something? I have 'Optimize for application' checked under Module SWF size. -- Jhonny Everson

[flexcoders] Re: Problems with Modules

2007-12-20 Thread Jhonny Everson
Another thing to note is that the modules are defined in actionscript classes that extend MXML componentes. On 12/21/07, Jhonny Everson [EMAIL PROTECTED] wrote: Hi, I'm dividing an application into modules, I load them in the main application. My problems is that it's only working when I

Re: [flexcoders] Re: Problems with Modules

2007-12-20 Thread Jhonny Everson
The problems i'm getting it's about not finding some classes if I do not include them in main application. I saw your presentation on modules. I guess it explains my problems, so I'll maintaining an instance in the main application of the classes I need in the modules. -- Jhonny Everson

Re: [flexcoders] notification event

2007-12-19 Thread Jhonny Everson
You could make the application dispatch custom events, then all windows can listen to that events, lock and unlock. -- Jhonny Everson

Re: [flexcoders] DataGridColumn dataField cannot select an attribute of an element. Why?

2007-12-18 Thread Jhonny Everson
You can do that using a labelFunction. This link explains how to do that. http://www.cflex.net/showFileDetails.cfm?ObjectID=564 -- Jhonny Everson

Re: [flexcoders] Re: E4X and DataGrid

2007-12-18 Thread Jhonny Everson
You can do that using a labelFunction. This link explains how to do that. http://www.cflex.net/showFileDetails.cfm?ObjectID=564 -- Jhonny Everson

Re: [flexcoders] get element type

2007-12-18 Thread Jhonny Everson
You can use ObjectUtil.getClassInfo(obj) to get information about an object 'obj', it returns another object with information about 'obj'. You can debug to see this information. The full class name is among them. -- Jhonny Everson

Re: [flexcoders] Debugging RemoteClass serialization

2007-12-17 Thread Jhonny Everson
org.red5.server.Standalone in debug mode. For your code remove managed annotation from the class SoggettoVO. I tried here and it worked. if it still not work for you I can send the full project I tested. good luck. -- Jhonny Everson

Re: [flexcoders] Creating a game in Flex

2007-12-16 Thread Jhonny Everson
I disagree. I work with both Flex and Flash. For me it's easier ( and faster) do it using Flex. But I guess it's a matter of which one he prefers or have more practice. -- Jhonny Everson

Re: [flexcoders] How come setStyle(width,100%) does not change container back to 100% ?

2007-12-13 Thread Jhonny Everson
You can use the property percentWidth; you code could be: this.percentWidth = 100; -- Jhonny Everson