TechTablets › Forums › Jumper Discussion › EZBook series › My experiences with EZBook 3 pro v5
- This topic has 35 replies, 17 voices, and was last updated 6 years, 11 months ago by
j4gu4r.
-
AuthorPosts
-
June 28, 2019 at 8:58 pm #181218
Hi,
Thank you for your input. And you haven’t figured out how to decrease the pitch noise? I am really worried about these
About autohotkey, I have tried the script, but it appears a screen with this text. I press <span class=”pl-c”>Win+\ and nothing happens. Thanks for the help</span>
Script lines most recently executed (oldest first). Press [F5] to refresh. The seconds elapsed between a line and the one after it is in parentheses to the right (if not 0). The bottommost line’s elapsed time is the number of seconds since it executed.
—- C:\Users\xxx\Downloads\1965854-7bef2c51c308d08259a732b17532c7963bc746f7\monitor-off.ahk
017: Return (4.94)Press [F5] to refresh.
June 29, 2019 at 6:31 am #181225This is the exact part that I use, try this one and press win+ESC.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
#Persistent
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.#Esc::
Sleep 1000
SendMessage 0x112, 0xF170, 2, , Program Manager
returnOther useful scripts:
#Left::
send {Home}
return
#Right::
send {End}
return
#Up::
send {PgUp}
return
#Down::
send {PgDn}
returnI don’t have any idea about the high pitch noise.
June 30, 2019 at 10:38 am #181253Dear Adam,
Sorry I don’t know how to use what you write. Is there a tutorial or something? I have never used AutoHotKey and I have not clue about programming
Thank you so much
July 2, 2019 at 8:12 am #181264Hi,
Download AutoHotkey, right-click on your desktop and click New -> AutoHotkey script. Insert the following.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
#Persistent
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.#Esc::
Sleep 1000
SendMessage 0x112, 0xF170, 2, , Program Manager
return
#Left::
send {Home}
return
#Right::
send {End}
return
#Up::
send {PgUp}
return
#Down::
send {PgDn}
returnSave it and double click the file. This will do the following while the script runs:
Win+ESC will turn off your screen.
Win+Left will work as Home button.
Win+Right will work as End button.
Win+Down will work as PgDown button.
Win+Up will work as PgUp button.
Edit the script and re-run it if you want to modify this behavior.
July 6, 2019 at 6:07 pm #181310Now it works great, thak you so much!!! If you discover more tips or about pitch noise, please notify us
-
AuthorPosts
- You must be logged in to reply to this topic.

