EnableAllDevices

カテゴリ

一般

詳細

デバイス マネージャにリストされているすべての機器を有効にします。

スクリプト構文

EnableAllDevices();

VBScript の例

Dim oDevice
CreatePrim "Cone", "MeshSurface"
SetValue "PlayControl.Out", 500
' Enable the Device manager
If Not Application.Devices.Enable Then
Application.Devices.Enable = True
End If
' Add the Mouse Driver if it is not there.
set oDevice = Application.Devices.Item("Mouse")
If TypeName (oDevice) = "Nothing" Then
set oDevice = Application.Devices.AddDevice( "Mouse" )
End If
EnableAllDevices
logmessage oDevice & " is active " & oDevice.Enable

関連項目

DisableAllDevices