RE: [flexcoders] Flex and Remote Objects

2005-09-16 Thread grady.haynes
.java files are Java source code; .class files are compiled Java bytecode that's obtained by compiling one or more .java files with the javac command if you have Sun's JDK installed. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis

RE: [flexcoders] Error with populationg a Datagrid

2005-08-23 Thread grady.haynes
You're not declaring the variable userlist. (At least not in this snippet of code.) Try putting private var userlist: Array; inside mx:Script tags. Grady Haynes Senior Systems Engineer, IT Services 817.252.4891 [EMAIL PROTECTED] Practitioners Publishing Company A Thomson Business 801

RE: [flexcoders] Cairgorm question.

2005-08-22 Thread grady.haynes
Hi, Omar. Cairngorm is primarily designed to help teams of developers build large database-driven Rich Internet Applications for business. It implements patterns and best practices that are designed with that intent. It works very well for this; however---at least without knowing more details

RE: [flexcoders] Constructor not called when calling myClass

2005-08-18 Thread grady.haynes
Hi, Chiel. Could you post some of the code from your myClass tag whose constructor wasn't being called? afaik, the no-args constructor should have been called; is there a possibility of a typo (or incorrect capitalization) in the constructor name? Also, make sure that your constructor isn't