Skip to main content
CanyonJim
Participating Frequently
September 16, 2024

25.12 Problems: missing Crop frame & Logitech customizations

  • September 16, 2024
  • 3 replies
  • 290 views

I installed the 25.12 update and immediately encountered two, for me significant, problems.  My Logitech MX Master 3S customizations for Photoshop no longer work and when running my custom scripts that invoke a crop, the crop frame is not visible.

 

I reverted to 25.11 and everything is OK again.

 

 

(subject edited for clarity)

 

 

3 replies

CanyonJim
CanyonJimAuthor
Participating Frequently
November 9, 2024

As a workaround I changed my script to force selection of the the "cropTool" before invoking the crop dialog.  This worked and the crop frame and overlays display appropriately.  The code I added, straight from ScriptListener:

     var idslct = charIDToTypeID( "slct" );
     var desc226 = new ActionDescriptor();
     var idnull = charIDToTypeID( "null" );
     var ref1 = new ActionReference();
     var idcropTool = stringIDToTypeID( "cropTool" );
     ref1.putClass( idcropTool );
     desc226.putReference( idnull, ref1 );
     var iddontRecord = stringIDToTypeID( "dontRecord" );
     desc226.putBoolean( iddontRecord, true );
     var idforceNotify = stringIDToTypeID( "forceNotify" );
     desc226.putBoolean( idforceNotify, true );
     executeAction( idslct, desc226, DialogModes.NO );

 

After the crop I reset the tool selection to zoom.

CanyonJim
CanyonJimAuthor
Participating Frequently
November 8, 2024

After several hours of screwing around, I accidentally discovered that if I select the crop tool before running my script, the frame and overlay show up.  The first thing my script does is the crop.

 

I hope that helps.

CanyonJim
CanyonJimAuthor
Participating Frequently
November 8, 2024

The problem with the mouse was that Adobe apparently removed the addin it used.  I fixed that by removing the Photoshop settings from the mouse and renstalling them.

 

However the problem with the crop overlays remains in 26.0