Re: [plugin] "My NetFlix" Plugin with Watch Now Support
Cinnabuns, I haven't tested it but based on the AHK scripts I've seen (Netflix Control: A Netflix Silverlight Remote Control Script - SageTV Community), this should work:
By the way, hexadecimal 0x5555 to decimal is 21845.
Channel Up/Next Episode Button:
Channel Down/Previous Episode Button:
Cinnabuns, I haven't tested it but based on the AHK scripts I've seen (Netflix Control: A Netflix Silverlight Remote Control Script - SageTV Community), this should work:
By the way, hexadecimal 0x5555 to decimal is 21845.
Channel Up/Next Episode Button:
Code:
If Window Exists("Microsoft Silverlight","AGFullScreenWinClass")
Then
Find Window AGFullScreenWinClass,Microsoft Silverlight,C:\Program Files\Internet Explorer\iexplore.exe
Send Message 21845,10,103
Else
Press Key F8
Channel Down/Previous Episode Button:
Code:
If Window Exists("Microsoft Silverlight","AGFullScreenWinClass")
Then
Find Window AGFullScreenWinClass,Microsoft Silverlight,C:\Program Files\Internet Explorer\iexplore.exe
Send Message 21845,10,104
Else
Press Key F7