I have modified the plugin so it should launch powerdvd8 here is the link to the HD_Starter File
Click Here
!
!Remember to change the path as the HD_starter file is now called HD_Starter_PowerDVD8.exe
Let me know if you have any problems
; Exit
Backspace::Esc
return
; Stop
J::s
return
; Start playing
^+p:: ;Enter
SendInput, {Shift Up}{Ctrl Up}{p Up}{Enter}
return
; Switch audio Streams
;a::h
;return
; Rewind
^+b:: ;b
SendInput, {Shift Up}{Ctrl Up}{b}
return
; Fast Forward
^+f:: ;f
SendInput, {Shift Up}{Ctrl Up}{f}
return
; Play Previous
^b:: ;p
SendInput, {Ctrl Up}{b Up}{p}
return
; Play Next
^f:: ;n
SendInput, {Ctrl Up}{f Up}{n}
return
; Home Screen /Disc Home
^e:: ;l
SendInput, {Ctrl Up}{e Up}{l}
return
; Fullscreen
x:
return
; Displays/hides pop-up menu for Blu-ray Disc titles only
^g:: ;^p
SendInput, {g Up}{Ctrl Down}{p}{Ctrl Up}
return
; Mute volume
F8::q
return
;http://www.keyxl.com/aaab43b/275/PowerDVD-Ultra-keyboard-shortcuts.htm
;http://www.powerdvd.com-http.com/how-to-use-powerdvd.html
SetTitleMatchMode, 2
; Start sequence
IfWinNotExist, CyberLink PowerDVD
{
WinActivate, MediaPortal
;Stops Media playing in MP
Send {b}
[B];Switch nvidia to 24Hz mode
[COLOR="Red"]Run Rundll32.exe nvcpl.dll`, dtcfg setmode 1 1920 1080 32 24[/COLOR][/B]
[B] ;Run PowerDVD8 and have it play the inserted disc automatically
;Note 1: Change the drive letter (in this case D:) as appropriate
;Note 2: If you are not using PowerDVD8, you need to adjust the command line as appropriate
[COLOR="Red"]RunWait "%A_ProgramFiles%\CyberLink\PowerDVD8\PowerDVD8.exe" /FULLSCREEN D:[/COLOR][/B]
WinActivate, CyberLink PowerDVD
WinMaximize
Sleep, 500
[B];No need to minize MediaPortal, hence the next line is commented out[/B]
[B][COLOR="Red"];[/COLOR][/B]WinMinimize, MediaPortal
WinActivate, CyberLink PowerDVD
}
else
{
WinActivate, MediaPortal
;Stops Media playing in MP
Send, b
[B];Switch nvidia to 24Hz mode
[COLOR="Red"]Run Rundll32.exe nvcpl.dll`, dtcfg setmode 1 1920 1080 32 24[/COLOR][/B]
Sleep, 1000
[B];No need to minize MediaPortal, hence the next line is commented out[/B]
[B][COLOR="Red"];[/COLOR][/B]WinMinimize, MediaPortal
WinActivate, CyberLink PowerDVD
}
return
Escape::
IfWinExist, CyberLink PowerDVD
{
IfWinNotExist, MediaPortal
{
Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe"
}
[B];Switch nvidia back to 60Hz mode (must change to 50 if you live in Europe)
[COLOR="Red"]Run Rundll32.exe nvcpl.dll`, dtcfg setmode 1 1920 1080 32 60[/COLOR][/B]
Sleep, 1000
;WinRestore , MediaPortal
Run "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe"
WinClose, CyberLink PowerDVD
ExitApp
}
IfWinExist, MediaPortal
{
Send, , Escape, "%A_ProgramFiles%\Team MediaPortal\MediaPortal\MediaPortal.exe"
}
return