here try this...

<CFSET pausetime = 1500> <!--- 1.5 second pause (milliseconds)--->
<CFSET counter = GetTickCount()>
<CFSET end = counter + pausetime>
<CFLOOP Condition="#counter# lt #end#">
        <CFSET counter = GetTickCount()>
</CFLOOP>

Set your time to whatever you feel is needs to be....


Good luck...

Christopher Badouin - founder
www.giveitaudio.com



-----Original Message-----
From: Falksen, Steven A [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 5:36 AM
To: CF-Talk
Subject: RE: Pause


There is a custom tag <cf_wait> that will wait so many seconds


-----Original Message-----
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 08, 2001 1:04 AM
To: CF-Talk
Subject: Pause


I have one page that goes to a server with form fields and makes it create a
text file.  I then want to put a pause after it does the get and then kick
off the rest of the code to do the get for the text files.  Does anyone have
any idea on this one?

Joshua Tipton
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to