Is there a way I can make it that VDJ doesn't force the screen to always be on? I use another product where it doesn't force it to be on, and would like to see it the same with VDJ. Thanks!
Posted Wed 17 Jan 18 @ 7:34 pm
Um, what?
Can't you just turn off your monitor?
Can't you just turn off your monitor?
Posted Thu 18 Jan 18 @ 10:03 am
Minimise the vdj window...
Posted Thu 18 Jan 18 @ 1:20 pm
It's more so like this. I have a couple setups in the house. I always keep them running as I like to practice turntablism, and leave either a loop loaded on one deck and some samples on the other deck. So, as I'm walking by one of the setups I usually have a little practice session. While not optimal, I could minimize the Window as recommended. Just thought there would be an option that could support it.
Posted Thu 18 Jan 18 @ 4:58 pm
Just minimizing the window doesn't work. My power saving / screensaver hasn't kicked on. Sadly the Devices are AIO computers and no ability to shut off the monitors manually.
Posted Fri 19 Jan 18 @ 1:33 am
got to be some key combo to DIM your screen.
Posted Fri 19 Jan 18 @ 2:23 am
I have a .exe (perhaps it's a .bat) that calls a blank screen saver. On mouse touch it turns off.
I'll look for the name later.
I'll look for the name later.
Posted Fri 19 Jan 18 @ 7:05 am
here is a hack/work around if you really need it to be BLANK.
just create a JPG all BLACK.. Set it the options audiovisualation (somewhere in the that line) as a slideshow.
When it is displayed on the main monitor, double click it to expand....BINGO, instant BLACKNESS.
just create a JPG all BLACK.. Set it the options audiovisualation (somewhere in the that line) as a slideshow.
When it is displayed on the main monitor, double click it to expand....BINGO, instant BLACKNESS.
Posted Fri 19 Jan 18 @ 7:16 pm
....but that still won't allow his power saving and/or screensaver to kick in, because VDJ is still running (which apparently prevents it).
Of course it's perfectly understandable that VDJ behaves this way because VDJ is designed for DJs to play live at gigs - and power saving or a screen saver kicking in is the ABSOLUTE LAST THING you'd want to happen.
Of course it's perfectly understandable that VDJ behaves this way because VDJ is designed for DJs to play live at gigs - and power saving or a screen saver kicking in is the ABSOLUTE LAST THING you'd want to happen.
Posted Fri 19 Jan 18 @ 8:29 pm
look what I GOOGLED
here is a youtube link
https://www.youtube.com/watch?v=5oPwL_eY9Vg
dunno if it works...
I'll leave that up to you and let us know the result.
here is a youtube link
https://www.youtube.com/watch?v=5oPwL_eY9Vg
dunno if it works...
I'll leave that up to you and let us know the result.
Posted Sat 20 Jan 18 @ 12:20 am
here is another one (script)
This script written in Powershell can make this work for you.
# Turn display off by calling WindowsAPI.
# SendMessage(HWND_BROADCAST,WM_SYSCOMMAND, SC_MONITORPOWER, POWER_OFF)
# HWND_BROADCAST 0xffff
# WM_SYSCOMMAND 0x0112
# SC_MONITORPOWER 0xf170
# POWER_OFF 0x0002
Add-Type -TypeDefinition '
using System;
using System.Runtime.InteropServices;
namespace Utilities {
public static class Display
{
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern IntPtr SendMessage(
IntPtr hWnd,
UInt32 Msg,
IntPtr wParam,
IntPtr lParam
);
public static void PowerOff ()
{
SendMessage(
(IntPtr)0xffff, // HWND_BROADCAST
0x0112, // WM_SYSCOMMAND
(IntPtr)0xf170, // SC_MONITORPOWER
(IntPtr)0x0002 // POWER_OFF
);
}
}
}
'
[Utilities.Display]::PowerOff()
Note: This tip requires PowerShell 2.0 or above.
here is the link
https://superuser.com/questions/630784/how-to-manually-trigger-turn-off-display
This script written in Powershell can make this work for you.
# Turn display off by calling WindowsAPI.
# SendMessage(HWND_BROADCAST,WM_SYSCOMMAND, SC_MONITORPOWER, POWER_OFF)
# HWND_BROADCAST 0xffff
# WM_SYSCOMMAND 0x0112
# SC_MONITORPOWER 0xf170
# POWER_OFF 0x0002
Add-Type -TypeDefinition '
using System;
using System.Runtime.InteropServices;
namespace Utilities {
public static class Display
{
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern IntPtr SendMessage(
IntPtr hWnd,
UInt32 Msg,
IntPtr wParam,
IntPtr lParam
);
public static void PowerOff ()
{
SendMessage(
(IntPtr)0xffff, // HWND_BROADCAST
0x0112, // WM_SYSCOMMAND
(IntPtr)0xf170, // SC_MONITORPOWER
(IntPtr)0x0002 // POWER_OFF
);
}
}
}
'
[Utilities.Display]::PowerOff()
Note: This tip requires PowerShell 2.0 or above.
here is the link
https://superuser.com/questions/630784/how-to-manually-trigger-turn-off-display
Posted Sat 20 Jan 18 @ 12:24 am