wshshell.sleep

This forum is for questions / discussions regarding development of addons / tweaks for MediaMonkey for Windows 4.

Moderators: Gurus, Addon Administrators

wolfram.brod
Posts: 28
Joined: Tue Feb 24, 2009 7:43 am

wshshell.sleep

Post by wolfram.brod »

This is my code:

Code: Select all

	Set WshShell = CreateObject("WScript.Shell")
	WshShell.sendkeys "^r"
	WshShell.Sleep 1000   'this statement causes an error
	WshShell.sendkeys "{DOWN}"
The cript works fine, except for the sllep-Statement, but I need it at this place because MM needs some time to build the new Window. I assume it is a stupid failure, but I can't find what is wrong. Windows says:
Object doesn't support this method: wshshell.sleep
Pls help
Wolfram