Hi, GUICtrlRead is used to read GUI controls, if you want to get the value of a simple variable then just do : Global $Tiempo = 1 ;assign the value 1 to Tiempo
$Tiempo = $Tiempo * 60000
_Delay()
Func _Delay()
Sleep($Tiempo) ;set the var $Tiempo as delay param (give the $Tiempo value)
EndFunc ;==>_Delay Don't forget to use the helpfile (F1 hotkey in SciTE). Edit : typo. Br, FireFox.