<cfloop index="i" from="1" to="20">
   1. Do something
   2. wait 2 seconds then next step
   3. if "i" = 20 start over
</cfloop>

Scary that I'm contemplating this, this is untested and never tried so all the 
usual caveats. 

<cfset i = 1>
<cfloop condition="i LTE 20">

        1. do something.
        2. wait (I don't think CF has a sleep does it?  If not play with now() 
and/or getTickCount().
        3. <cfset i = i + 1>
        4. <cfif i = 20><cfset i = 1></cfif>
</cfloop>

I presume somewhere in there you plan to create an exit.  Or are just seeing 
how long you can make a templete bog up the server?


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220079
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to