> Unfortunately not, neither is there a way to stop them > producing output > like through the CFML cffunction attribute output="false". I was > thinking of writing some sort of preprocessor that would convert a > cfscript-like syntax such as
Incorrect. Well.... not exactly. A tag based UDF allows you to specify output=true/false. This does two things: a) Allows a UDF to display text. b) And while this is technically the same, controls the white space generated by a UDF. So even if your UDF doesn't do <cfoutput>foo</cfoutput>, if you call it, and output is NOT specified or set to true, white space will be generated. So, you should ALWAYS use output=false if your udf is not displaying anything. A script based udf is different. It should not generate any white space at all, but does allow you to writeOutput crap. ======================================================================== === 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 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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 Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

