RE: [flexcoders] Help to create an object instance dynamically

2005-09-15 Thread Mink, Joseph
I don't know if you're using import statements, but those might help if you're not: import com.datasul.framework.custom.view.LoanForm; import Workspace; var workspace:Workspace = Workspace.getInstance(); //Do you mean 'new Workspace ();' ? workspace.createChild(LoanForm,instanceName, {attr:

RE: [flexcoders] Help to create an object instance dynamically

2005-09-15 Thread Jim Phelan
Title: Help to create an object instance dynamically Hi Michel, Are you referencing this class elsewhere? If not, you need to in order for flex to compile it. A simple reference like: com.datasul.framework.custom.view.LoanForm; Might do the trick. Not sure about the rest of