• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

CEP-Extension Remove or hide resize widget.

New Here ,
Dec 29, 2024 Dec 29, 2024

Copy link to clipboard

Copied

Hi everyone can anyone help me to remove this resize widget in the botton corner " resize handle" in this toolbar panel I don't find a way to do it. Dont look stetic over the add button.Screenshot 2024-12-30 024500.png

TOPICS
Actions and scripting , SDK , Windows

Views

85

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 2 Correct answers

Engaged , Dec 29, 2024 Dec 29, 2024

If the panel is cep
You need to edit the manifest.xml file
These are the values ​​you need to change.
<Geometry> <Size> <Width>300</Width> <Height>555</Height> </Size> </Geometry>
If it is a uxp panel, you need to edit the manifest. json
In the manifest file put the 4 equal height values,
And equal width
See below
minimumSize": {
"width": 240,
"height": 840
},
"maximumSize": {
"width": 240,
"height": 840
},
"preferredDockedSize": {
"width": 240,
"height": 840
},
"preferredFloatingSize": {
"width": 240,
"height": 840
}

...

Votes

Translate

Translate
Community Beginner , Dec 30, 2024 Dec 30, 2024

You must modify the manifest.xml file if the panel is missing.
These are the values that you must alter.
\Size> \Geometry> \Width>300</Width> \Height>555</Height> \/Size> \/Geometry>
You must alter the manifest if it's an uxp panel. JSON
Place the four equal height values in the manifest file.
and the same width
View below
minimumSize": {"width": 240, "height": 840}, "maximumSize": {"width": 240, "height": 840}, "preferredDockedSize": {"width": 240, "height": 840}, "preferredFloatingSize": {

Votes

Translate

Translate
Adobe
Engaged ,
Dec 29, 2024 Dec 29, 2024

Copy link to clipboard

Copied

If the panel is cep
You need to edit the manifest.xml file
These are the values ​​you need to change.
<Geometry> <Size> <Width>300</Width> <Height>555</Height> </Size> </Geometry>
If it is a uxp panel, you need to edit the manifest. json
In the manifest file put the 4 equal height values,
And equal width
See below
minimumSize": {
"width": 240,
"height": 840
},
"maximumSize": {
"width": 240,
"height": 840
},
"preferredDockedSize": {
"width": 240,
"height": 840
},
"preferredFloatingSize": {
"width": 240,
"height": 840
},

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Dec 30, 2024 Dec 30, 2024

Copy link to clipboard

Copied

You must modify the manifest.xml file if the panel is missing.
These are the values that you must alter.
\Size> \Geometry> \Width>300</Width> \Height>555</Height> \/Size> \/Geometry>
You must alter the manifest if it's an uxp panel. JSON
Place the four equal height values in the manifest file.
and the same width
View below
minimumSize": {"width": 240, "height": 840}, "maximumSize": {"width": 240, "height": 840}, "preferredDockedSize": {"width": 240, "height": 840}, "preferredFloatingSize": {

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 30, 2024 Dec 30, 2024

Copy link to clipboard

Copied

Thanks a lot guy's so the only way is to set the same size for the width and height this is so limited I need the verticall resize for the toolbar bu this little square appear. Its possible to make the panel resize aumatic when adding new iconButton to the toolbar.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Dec 30, 2024 Dec 30, 2024

Copy link to clipboard

Copied

LATEST
quote

Thanks a lot guy's so the only way is to set the same size for the width and height this is so limited I need the verticall resize for the toolbar bu this little square appear. Its possible to make the panel resize aumatic when adding new iconButton to the toolbar.


By @Kakachiex_x2025

Unfortunately it is not possible to do so.
For the square, if it is a uxp panel you can remove it.
This is the code
window.require('photoshop').core.suppressResizeGripper(
{
"type": "panel",
"target": "com.jdp.frames",
"value": true
})

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines