Do you want to evaluate the <!--- #y# ---> in the main inside the custom tag?
If so - as long as you dont have the main page one wrapped in a CFOUTPUT you could try using evaluate on the content string inside the custom tag. You may also have to use <!-- #y# --> (normal comments) so that CFMX doesn't filter out the content. Gary On Thu, 22 Jul 2004 16:31:06 +1000, Gareth Edwards <[EMAIL PROTECTED]> wrote: > its o.k.. I'm a little unsure myself.. > > the y value from the custom tag... cant be passed back as a value to the calling > page, untill the custom tag has finished at least. > > Gareth. > > > > -----Original Message----- > From: Mark Mandel [mailto:[EMAIL PROTECTED] > Sent: Thursday, 22 July 2004 4:21 PM > To: CFAussie Mailing List > Subject: [cfaussie] Re: Its a longshot. > > Nope... > > actually no idea what you are talking about... sorry :o( > > Mark > > On Thu, 22 Jul 2004 16:16:01 +1000, Gareth Edwards > <[EMAIL PROTECTED]> wrote: > > next question.. > > > > <!--- CALLING PAGE ---> > > <CE:cf_loop> > > test <!--- #y# ---> > > </CE:cf_loop> > > > > <!--- CUSTOM TAG ---> > > <cfif thisTag.ExecutionMode NEQ 'start'> > > <cfloop from="1" to="10" index="y"> > > #y# > > #thisTag.generatedContent# > > </cfloop> > > </cfif> > > > > that works great.. > > > > but I cant pass the y value back to the generatedContent? > > > > Gareth. > > > > > > > > -----Original Message----- > > From: Mark Mandel [mailto:[EMAIL PROTECTED] > > Sent: Thursday, 22 July 2004 4:01 PM > > To: CFAussie Mailing List > > Subject: [cfaussie] Re: Its a longshot. > > > > You could also have done it with a cfsavecontent and a repeatString() > > > > Mark > > > > On Thu, 22 Jul 2004 15:53:19 +1000, Gareth Edwards > > <[EMAIL PROTECTED]> wrote: > > > actually.. just what I was after.. > > > > > > Gareth. > > > > > > -----Original Message----- > > > From: Mark Mandel [mailto:[EMAIL PROTECTED] > > > Sent: Thursday, 22 July 2004 3:49 PM > > > To: CFAussie Mailing List > > > Subject: [cfaussie] Re: Its a longshot. > > > > > > <cfparam name="attributes.count" type="numeric"> > > > > > > <cfif Thistag.executionMode neq "start"> > > > <cfoutput>#RepeatString(thisTag.generatedContent, > > > attributes.count)#</cfoutput> > > > </cfif> > > > > > > Is that what you wanted? > > > > > > Mark > > > > > > On Thu, 22 Jul 2004 15:38:26 +1000, Gareth Edwards > > > <[EMAIL PROTECTED]> wrote: > > > > is there ANY way of creating a custom repeater wrapper in coldfusion? > > > > > > > > ie. > > > > > > > > <CUST:cf_repeater type="simple" count="10"> > > > > content here to loop over. > > > > </CUST:cf_repeater> > > > > > > > > So far I've found it cant be done, please if someone knows a way without doing > > > > it in java or c++.. let me know. > > > > > > > > Gareth. > > > > > > > > --- > > > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > > > > To unsubscribe send a blank email to [EMAIL PROTECTED] > > > > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > > > > > > > > > -- > > > E: [EMAIL PROTECTED] > > > W: www.compoundtheory.com > > > ICQ: 3094740 > > > > > > --- > > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > > > > > > > > > To unsubscribe send a blank email to [EMAIL PROTECTED] > > > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > > > > > --- > > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > > > To unsubscribe send a blank email to [EMAIL PROTECTED] > > > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > > > > > > -- > > E: [EMAIL PROTECTED] > > W: www.compoundtheory.com > > ICQ: 3094740 > > > > --- > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > > To unsubscribe send a blank email to [EMAIL PROTECTED] > > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > > > --- > > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > > To unsubscribe send a blank email to [EMAIL PROTECTED] > > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > > > -- > E: [EMAIL PROTECTED] > W: www.compoundtheory.com > ICQ: 3094740 > > --- > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > Aussie Macromedia Developers: http://lists.daemon.com.au/ > > --- > You are currently subscribed to cfaussie as: [EMAIL PROTECTED] > To unsubscribe send a blank email to [EMAIL PROTECTED] > Aussie Macromedia Developers: http://lists.daemon.com.au/ > --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
