I know that I had a specific issue with CFINCLUDES in CFCs myself, but it wasn't the argument scope. Here's what I did...
I had a file called inc_triggeredBy.cfm that I wanted all the CFCs to share, so ... I made a trigger function that did nothing more than include that file. Within the Cfinclude, I had a cfscript creating a component object and then doing a return answer; -- The CFC could not see the returned answer at all (leave access out of this, I know access="" well enough now to know which one to use and which one not to use). I could not get the cfinclude working within a cfc. I think I know why now tho (it just came to me as I was writing this), inside the cfc, I invoked the component object as if it was a cfc (meaning, I didn't put the full path of the component that I was trying to invoke. I'll have to test that and try it later tonight. Ideally, that's now what cfinclude should be doing. ~Todd On Mon, 10 Jun 2002, Stacy Young wrote: > Can anyone confirm this on the final? I believe my build is 6,0,0,48097 > > Thx - Stace > > -----Original Message----- > From: Matt Liotta [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 10, 2002 12:41 PM > To: CF-Talk > Subject: RE: Arguments scope? > > > That was a bug in RC. > > -Matt > > > -----Original Message----- > > From: Stacy Young [mailto:[EMAIL PROTECTED]] > > Sent: Monday, June 10, 2002 9:39 AM > > To: CF-Talk > > Subject: Arguments scope? > > > > Am I on crack or is the arguments scope not available to includes > within a > > component/function? > > > > Stace > > > > > > AVIS IMPORTANT: > > ------------------------------- > > Les informations contenues dans le present document et ses pieces > jointes > > sont strictement confidentielles et reservees a l'usage de la (des) > > personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, > > soyez avise que toute divulgation, distribution, copie, ou autre > > utilisation de ces informations est strictement prohibee. Si vous > avez > > recu ce document par erreur, veuillez s'il vous plait communiquer > > immediatement avec l'expediteur et detruire ce document sans en faire > de > > copie sous quelque forme. > > > > WARNING: > > ------------------------------- > > The information contained in this document and attachments is > confidential > > and intended only for the person(s) named above. If you are not the > > intended recipient you are hereby notified that any disclosure, > copying, > > distribution, or any other use of the information is strictly > prohibited. > > If you have received this document by mistake, please notify the > sender > > immediately and destroy this document and attachments without making > any > > copy of any kind. > > > > > > > > ______________________________________________________________________ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

