Adopted from
http://www.petefreitag.com/item/85.cfm
<cfscript>
thread = CreateObject("java","java.lang.Thread");
thread.sleep(5000); // CF will now sleep for 5 seconds
</cfscript>
GAT wrote:
> We have built a screen-scrape process using CFscript (CF
5.0) calling a host
> emulator named HOSTFRONT (by Farabi/Seagull) and are
having an issue with
> Coldfusion processing faster than green-screens can be
transitioned. Is there
> a command to wait/pause/delay in CFscript to be sure
that the requested screen
> has been returned before further execution of CFscript
coding?
>