> > Can you still pass a structure without using > AttributeCollection in cfmodule? Or is it still permissible > to pass it like any other variable, > lIke: > > <cfset s - structNew()> > <cfset s.x = 1> > <cfset s.y = 2> > > <cf_foo s ="#s#"> >
Sure. <cfset att = structNew()> <cfset att.s = structNew()> <cfset att.s.x = 1> <cf_foo attributeCollection="#att#"> Enjoy the CF goodness. :) ======================================================================== === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email : [EMAIL PROTECTED] Blog : www.camdenfamily.com/morpheus/blog Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Get the mailserver that powers this list at http://www.coolfusion.com ------------------------------------------------------------------------------ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.
