Re: _Re:_cfcomponent_cffunction_access=private_--_what_the_!!??

2003-09-02 Thread Sean A Corfield
On Saturday, Aug 30, 2003, at 22:16 US/Pacific, S. Isaac Dealey wrote: cffunction name=f2 access=public cfreturn this.f() /cffuntion Invoking 'f()' via 'this' scope causes it to be treated as an 'outside' call (so you can't call private methods). You should use 'variables.f()' (in CFMX6.1)

Re:_Re:_cfcomponent_cffunction_access=private_--_what_the_!!??

2003-08-31 Thread S . Isaac Dealey
no... pretty sure the cfmodule tag isn't part of the issue 'cause it's just a local function call and if I change the access to public or package it's fine... same thing if I leave out the cfmodule call and just do something like this: cfcomponent cffunction name=f access=private cfreturn hello

Re: Re:_Re:_cfcomponent_cffunction_access=private_--_what_the_!!??

2003-08-31 Thread Kwang Suh
to a an object, not within the CFC (class). - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, August 30, 2003 11:16 PM Subject: Re:_Re:_cfcomponent_cffunction_access=private_--_what_the_!!?? no... pretty sure the cfmodule tag isn't part

Re:_Re:_Re:_cfcomponent_cffunction_access=private_--_what_the_!!??

2003-08-31 Thread S . Isaac Dealey
. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, August 30, 2003 11:16 PM Subject: Re:_Re:_cfcomponent_cffunction_access=private_- -_what_the_!!?? no... pretty sure the cfmodule tag isn't part of the issue 'cause it's just a local function call and if I change