Go to notepad and type this:
while(true)
Response = MsgBox("<text>", 2, "<text>")
Wend
Replace "Text" With the text you want.
You can also add wscript.sleep(5000) (5000 = milliseconds / 5 seconds) between the lines Response...... and Wend.
Example:
while(true)
Response = MsgBox("<text>", 2, "<text>")
wscript.sleep(5000)
Wend
When you have done that, save it with .vbs in the end. Example: LookatThis.vbs
_________________
