Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Bryan LaPlante
Try saving the content in a variable first. then clear the content. then do your replacement. #ReplaceNoCase(content, 'do NOT', 'do')# - Original Message - From: "Jamie Jackson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, July 17, 2001 10:38 AM Subject: [Cus

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Jochem van Dieten
Jamie Jackson wrote: > Please tell me if the following is possible, and how: I want to stifle > the output of the area between and . > > Here is a simplified example: I the following output: "Hello World, I > do want to display this sentence." > > ### Calling script ###: > > Hello, World, I d

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Eric Dawson
rush answer - sorry. but if I understand correctly... == callingtemplate.cfm This is the Content. #PageContent# == end callingtemplate.cfm == stripcontent.cfm == end stripcontent.cfm This is how I do it. You could even get fancy to specify the variable name to return. E

RE: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Dave Watts
> Please tell me if the following is possible, and how: I want to > stifle the output of the area between and . Yes, it's possible. Simply clear the value of ThisTag.GeneratedContent when you're done with it. ### MyTag.cfm (custom tag) ###: #ReplaceNoCase(ThisTag.GeneratedContent, 'do NOT', 'd

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Nick McClure
In the end portion of the tag you need to set ThisTag.GeneratedContent to nothing. Do this after you output what you need to output. At 11:38 AM 7/17/2001 -0400, you wrote: >Please tell me if the following is possible, and how: I want to stifle >the output of the area between and . > >Here is a

RE: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Raymond Camden
Simply do: Make sure you do it in ThisTag.ExecutionMode EQ "End". === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email : [EMAIL PROTECTED] ICQ UIN : 3679482 "My ally is the Force, and a powerful a

Re: [Custom Tag Question] ThisTag.GeneratedContent...

2001-07-17 Thread Jamie Jackson
Got this reply via email, and it does exactly what I needed... Thanks Bryan. >Tuesday, July 17, 2001 1:03 PM My posts don't seem to go through for a long time so I am sending this to you directly. Try saving the content in a variable first. then clear the content. then do your replacement.