Jump to content

how to resize potplayer


Go to solution Solved by ioa747,

Recommended Posts

  • Solution

first go to playback setting in default window size select custom 700X400 save,  and then try again

Edit:
or first sendkey 1 to exit full screen

Local $hPotPlayer = WinWait("[CLASS:PotPlayer]")
WinActivate($hPotPlayer)
Send("1")

WinMove($hPotPlayer,"",0,0,682,729)

or better

Local $hPotPlayer = WinWait("[CLASS:PotPlayer]")
WinActivate($hPotPlayer)
Send("9")
WinMove($hPotPlayer, "", 0, 0)
Sleep(100)
Send("8")

to hold aspect ratio

Edited by ioa747

I know that I know nothing

Link to comment
Share on other sites

58 minutes ago, ioa747 said:

first go to playback setting in default window size select custom 700X400 save,  and then try again

Edit:
or first sendkey 1 to exit full screen

Local $hPotPlayer = WinWait("[CLASS:PotPlayer]")
WinActivate($hPotPlayer)
Send("1")

WinMove($hPotPlayer,"",0,0,682,729)

or better

Local $hPotPlayer = WinWait("[CLASS:PotPlayer]")
WinActivate($hPotPlayer)
Send("9")
WinMove($hPotPlayer, "", 0, 0)
Sleep(100)
Send("8")

to hold aspect ratio

 

it woked out perfectly.thx

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...