View previous topic :: View next topic |
Author |
Message |
skynet888 !BEWARE! Deletes post on answer
Reputation: 1
Joined: 12 Apr 2021 Posts: 64
|
Posted: Fri Jun 17, 2022 6:57 pm Post subject: The upper part of CE7.2 is too big |
|
|
The upper part of CE7.2 is too big (the picture shows the comparison between 5.6 and 7.2). This causes my CT table to display only 10 rows when using CE7.2 (my laptop screen is only 768 pixels high).
Is it possible to shrink the upper part of CE7.2 by modifying the registry? Other ways can be suggested!
Description: |
|
Filesize: |
46.42 KB |
Viewed: |
3685 Time(s) |

|
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Fri Jun 17, 2022 7:15 pm Post subject: |
|
|
Save this as a Lua file and place it in the autorun folder of Cheat Engine:
Code: |
function compactMode()
getMainForm().Panel5.Visible = not getMainForm().Panel5.Visible
end
function addCompactMenu()
local parent = getMainForm().Menu.Items
cMenu = createMenuItem(parent)
parent.add(cMenu)
cMenu.Caption = 'Toggle Compact'
cMenu.OnClick = compactMode
end
addCompactMenu()
|
|
|
Back to top |
|
 |
skynet888 !BEWARE! Deletes post on answer
Reputation: 1
Joined: 12 Apr 2021 Posts: 64
|
Posted: Fri Jun 17, 2022 9:16 pm Post subject: |
|
|
LeFiXER wrote: | Save this as a Lua file and place it in the autorun folder of Cheat Engine:
Code: |
function compactMode()
getMainForm().Panel5.Visible = not getMainForm().Panel5.Visible
end
function addCompactMenu()
local parent = getMainForm().Menu.Items
cMenu = createMenuItem(parent)
parent.add(cMenu)
cMenu.Caption = 'Toggle Compact'
cMenu.OnClick = compactMode
end
addCompactMenu()
|
|
I already tried it! Great! Thanks a lot!
|
|
Back to top |
|
 |
LeFiXER Grandmaster Cheater Supreme
Reputation: 20
Joined: 02 Sep 2011 Posts: 1069 Location: 0x90
|
Posted: Sat Jun 18, 2022 10:14 am Post subject: |
|
|
skynet888 wrote: |
I already tried it! Great! Thanks a lot! |
You're welcome
|
|
Back to top |
|
 |
|