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

"Show transform controls" missing from my toolbar

Explorer ,
Apr 27, 2024 Apr 27, 2024

Copy link to clipboard

Copied

For some reason, my "show transform controls" checkbox is now hidden behind a gear icon on my toolbar.  It wasn't like that earlier, but I shut down photoshop and restarted today, and now it's gone.  I use that button all the time so it's incredibly annoying to have to take that extra step to click on the gear.  Anyone know how I can get it back to the main toolbar?

 

PonytailsDesigns_0-1714260264330.png

 

 

TOPICS
Windows

Views

456

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
Adobe
Community Expert ,
Apr 29, 2024 Apr 29, 2024

Copy link to clipboard

Copied

quote

For some reason, my "show transform controls" checkbox is now hidden behind a gear icon on my toolbar. 

 


By @PonytailsDesigns


I think the reason is that your software was updated to the latest version.

 

I'm not a fan of this either.

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 ,
May 22, 2024 May 22, 2024

Copy link to clipboard

Copied

I'm having the same issue and use it all the time too. I don't understand why they would remove this in their "update". It's not very convienient having to select/unselect in the settings (gear icon).

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 ,
Jun 26, 2024 Jun 26, 2024

Copy link to clipboard

Copied

Just chiming in to say this suuuuuuucks. Why add the extra click for the drop down every time? I have so much unused space on my 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
LEGEND ,
Jun 26, 2024 Jun 26, 2024

Copy link to clipboard

Copied

LATEST

The easiest workaround would be create two tool presets, one with and one without the checkbox enabled. You can record those into an action and assign a keyboard shortcut. You can also copy as Javascript and use Batchplay/UXP scripting for more control.

 

async function transformControls() {
    let result;
    let psAction = require("photoshop").action;

    let command = [
        // Select tool preset “Move Tool 2”
        {"_obj":"select","_target":[{"_name":"Move Tool 2","_ref":"toolPreset"}]},
        // Select tool preset “Move Tool 1”
        {"_obj":"select","_target":[{"_name":"Move Tool 1","_ref":"toolPreset"}]}
    ];
    result = await psAction.batchPlay(command, {});
}

async function runModalFunction() {
    await require("photoshop").core.executeAsModal(transformControls, {"commandName": "Action Commands"});
}

await runModalFunction();

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