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) or just 'f()' (in CFMX6.0). Sean A Corfield -- http://www.corfield.org/blog/ "If you're not annoying somebody, you're not really alive." -- Margaret Atwood ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm

