chrisell99
Participant
chrisell99
Participant
Activity
‎Dec 15, 2024
07:26 AM
HI, I have the same problem on Mac mini4, Sequoia 15.1.1, Ps 26.1.0, all Credential functions disabled. Hoping it will be solved soon. Though the files aren't too large when you have hundreds of photos it begins to be annoying !
... View more
‎Oct 01, 2024
10:32 AM
Doesn't work for me either. Each of the other bl;urs work but radial won't even open a window...
... View more
‎Jun 04, 2024
06:39 AM
1 Upvote
We wanted to update this thread that the issue was fixed with the release of 25.6. If you are still having this issue with the most recent Ps version, please start a new thread with your information so the team can investigate further.
Thanks,
Cory - Photoshop Product Manager
... View more
‎Feb 02, 2024
07:22 AM
25.4.0 is the current Photoshop version, so may want to try updating.
... View more
‎Jan 09, 2024
08:23 AM
I'm getting this exact same issue that @chrisell99 has been describing and turning off GPU compositing worked for me. Cheers guys!
... View more
‎Nov 01, 2023
06:44 AM
4 Upvotes
That solution is working.
... View more
‎Aug 14, 2023
09:21 AM
8 Upvotes
In the last two versions of Photoshop - currently on v24.7 - there's been a really irritating issue where zooming one window when it's on top of another causes the underlying document to flip to higher priority. To reproduce, have separate windows per document. Expand one so it fills the main Photoshop view. Get the other document over the top in it's window and zoom it. The underlying one will flip to highest priority, hiding the one you're trying to zoom. Attached video shows this in action.
... View more
‎Mar 07, 2023
08:10 AM
Hi @wnwka, sorry to hear scrolling through fonts using the arrow keys isn't working for you. What have you tried so far to fix it? When did it start happening? What Photoshop release are you using and on what OS? If you give us some more info we'll try to help you sort it out.
... View more
‎Nov 01, 2023
06:44 AM
4 Upvotes
That solution is working.
... View more
‎Aug 04, 2022
11:53 AM
1 Upvote
Honestly the current method is all but useless. I'm not sure why they would have gone to this - it makes it impossible to get any consistency of arrowhead shape across different line widths without having to calculate and manually fill in values every time. It's a reduction in productivity.
... View more
‎Mar 07, 2023
08:10 AM
Hi @wnwka, sorry to hear scrolling through fonts using the arrow keys isn't working for you. What have you tried so far to fix it? When did it start happening? What Photoshop release are you using and on what OS? If you give us some more info we'll try to help you sort it out.
... View more
‎Sep 07, 2020
07:23 AM
1 Upvote
Hi, The only way I could resolve the issue was to disable Cybersec within the Nord VPN app. This worked immediately. I have raised it with Nord. Hope this helps. Chris
... View more
‎Nov 19, 2009
08:33 AM
Mark, If your code was to show that you could remove a component channel then convert the mode back, that is true. The reason I said you don't want to do that without a good reason is the conversion is not color managed when you delete component channels. It would be better to convert to multi, delete then convert back.
... View more
‎Oct 15, 2009
07:50 AM
For the sake of completeness when this topic turns up in a google search in later years, here's my completed script with comments, prompts and a counter. Because my application only involves TIF images, it's pretty simple: var counter=0; var yesorno = confirm ("This script will search the chosen texture folder for greyscale TIF images that have been saved as RGBs by mistake.\nThose images will be converted to greyscale and re-saved. Pure RGB and RGBA images will not be touched.\nScript by Chris Longhurst.\n\nDo you want to run this script?","Grey texture converter"); if (yesorno == true) { //Select the folder with the textures we need to check var texturefolder = Folder.selectDialog("Select the folder containing the images to be checked"); //Get a list of the files var textureList=texturefolder.getFiles(/\.(tif)$/i); //Create loop to open and process files for (var a = 0; a<textureList.length; a++) { // open file app.open(textureList); // Only perform the actions in this script if the opened file is an RGB image var ColourMode = app.activeDocument.mode; if( ColourMode == 'DocumentMode.RGB' ) { // Convert active document to lab colour then check // the mid point of the a and b channels histogram. If // they match the total number of pixels then it is grayscale image. app.activeDocument.changeMode( ChangeMode.LAB ); var totalPixels = Number( app.activeDocument.width.as( 'px' ) ) * Number( app.activeDocument.height.as( 'px' ) ); var aMid = Number( app.activeDocument.channels[1].histogram[128] ); var bMid = Number( app.activeDocument.channels[2].histogram[128] ); // If the midpoints match, this is a grayscale image that // needs to be converted and saved as such if( aMid == totalPixels && bMid == totalPixels ) { // Suppressed the warning dialog - it was getting to clumsy and prevented // the script from being able to run unattended // alert('Changing image to gray'); app.activeDocument.changeMode( ChangeMode.GRAYSCALE ); activeDocument.close(SaveOptions.SAVECHANGES); counter ++; } else { // If the midpoints don't match, the document is actually // an RGB and does not need changing activeDocument.close(SaveOptions.DONOTSAVECHANGES); } } else { // If the document is not an RGB, just close it activeDocument.close(SaveOptions.DONOTSAVECHANGES); } } alert (counter,'Textures altered:'); } else { alert('Aborting script.'); }
... View more