Lumigraphics
LEGEND
Lumigraphics
LEGEND
Activity
‎Oct 18, 2024
12:54 PM
2 Upvotes
/*
Utility Pack Scripts created by David M. Converse ©2018-24
This script renames text layers in an open Photoshop document
Last modifed 7/5/2024
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#target photoshop
renameTextLayers();
function renameTextLayers(){
if(!app.documents.length > 0){
return;
}
var docRef = null;
var vis = true;
var LayerRef = null;
var TextRef = null;
var layerText = '';
try{
docRef = app.activeDocument;
docRef.activeLayer = docRef.artLayers[0];
for(var i = 0; i < docRef.artLayers.length; i++){
LayerRef = docRef.artLayers[i];
vis = true;
if(LayerRef.kind == LayerKind.TEXT){
if(!LayerRef.visible){
vis = false;
}
TextRef = LayerRef.textItem;
layerText = TextRef.contents;
layerText = layerText.replace(/\r$/, '');
layerText = layerText.replace(/,\r/, ', ');
if(layerText.search('\r') == -1){
layerText = layerText.split(' ');
layerText[0] = layerText[0].replace(',', '');
}
else{
layerText = layerText.split('\r');
}
LayerRef.name = layerText[0];
if(vis == false){
LayerRef.visible = false;
}
}
}
}
catch(e){
Window.alert(e + e.line);
}
}
... View more
‎Oct 18, 2024
11:21 AM
External devices can be accessed in different ways by a computer. Memory cards are handled differently than external hard drives. Photo Downloader doesn't work with hard drives. I personally don't use it because its flaky and my workflow doesn't need it anyway. Just copy files with the Finder or Explorer.
... View more
‎Oct 18, 2024
09:13 AM
Glad to be of help. You can mark this as the correct answer to help others with the same question.
... View more
‎Oct 18, 2024
08:33 AM
This has been a complaint here and there. Adobe is presumably trying to prevent the huge legal, political, and PR problems that have popped up for other generative AI models and production of, shall we say, problematic or illegal images. You can either use traditional editing tools and techniques which many of us have relied on for decades, or use a different AI model if you MUST rely on AI to retouch.
... View more
‎Oct 18, 2024
08:28 AM
You might have better luck running it on an old computer with, say, Windows 7. Lightroom 6 has not been updated for compatibility with Windows 11 and may just fail at any point.
... View more
‎Oct 18, 2024
07:53 AM
Are you asking to hide layers in the Layers panel? If so, this is already implemented. Change the search popup to Attribute and then select Visible (or another choice as desired.)
... View more
‎Oct 18, 2024
05:45 AM
1 Upvote
Adobe hardware support tracks that of Microsoft and Apple. There are many system frameworks that are used along the way and often, older processors are indeed not supported. Just stay on the older versions of Photoshop or get a computer with a newer processor.
... View more
‎Oct 18, 2024
05:40 AM
3 Upvotes
This is not the "I need you to write code for free" website. We can help, but its up to you to do the work or pay someone to do it for you. I don't think this whole endeavor is going to work the way you think it will.
... View more
‎Oct 18, 2024
05:38 AM
1 Upvote
This is not Java and has nothing to do with writing an Android app.
... View more
‎Oct 17, 2024
01:50 PM
(removed by moderator)
https://www.apple.com/privacy/control/
... View more
‎Oct 17, 2024
12:27 PM
Apple requires applications to ask permission to access files on your computer as a privacy and security measure.
... View more
‎Oct 17, 2024
11:10 AM
Bridge is just a viewer, it sees whatever is on your hard drive. Just copy the files to your drive, organize them as you want. Bridge and Windows Explorer will see them the same way. There is no import into Bridge.
... View more
‎Oct 17, 2024
11:05 AM
Is your spacebar stuck?
... View more
‎Oct 17, 2024
09:43 AM
1 Upvote
I have not seen non-functional buttons or menus under Sequoia, either 15.0.or 15.0.1, on either Intel or M1 Macs. Just as a data point.
... View more
‎Oct 17, 2024
09:41 AM
I'm not impressed by the new versions. I guess you could say the middle color schemes are missing, since they existed before. A LOT of software has gone to rendered HTML/CSS in a webview, since this is easy to code and support is universal. Adobe has cross-platform frameworks that are painful on both platforms, not sure if that is the problem.
... View more
‎Oct 17, 2024
08:08 AM
1 Upvote
Most of us keep older versions in case of bugs, regressions, for testing, and because sometimes we prefer the older features. Those of us who develop for Adobe apps need multiple versions. Pretty much every app out there is going to get new versions for a new file structure at some point. Its just reality.
... View more
‎Oct 17, 2024
08:06 AM
Complain to Apple and Microsoft about file naming constraints. I don't know what else to say.
... View more
‎Oct 17, 2024
08:05 AM
Your files do not go to Photoshop as CR3, they are demosaiced and sent as TIFF or PSD format.
... View more
‎Oct 17, 2024
08:04 AM
https://www.codeproject.com/Reference/1091137/Windows-Clipboard-Formats https://developer.apple.com/documentation/appkit/nspasteboard/pasteboardtype
... View more
‎Oct 17, 2024
07:53 AM
Its a new version, and if you want to keep the old around, then what?
... View more
‎Oct 17, 2024
06:41 AM
I find Bridge/ACR slightly faster than Lightroom Classic. However, Bridge 13-15 is a total disaster. Bridge 12 was no racehorse but later versions are the speed of a dead horse. I still use Bridge 12 in production because of this, on both Intel and M1 Macs. I'm doing fairly large volumes. I have ~350,000 files in my Lightroom catalog on an M1 mini, and work with tens of thousands of files in Bridge on an Intel MacBook Pro.
... View more
‎Oct 17, 2024
06:36 AM
Mac or Windows? And if Mac, is it an Apple Silicon computer? That may hold the answer.
... View more
‎Oct 17, 2024
06:34 AM
You have to disable the beta profile in System Settings and reinstall macOS https://beta.apple.com/unenroll-your-devices https://beta.apple.com/restore#macos
... View more
‎Oct 17, 2024
06:32 AM
2 Upvotes
This makes no sense. Javascript files don't have expiration dates. Can you give a better explanation?
... View more
‎Oct 17, 2024
06:29 AM
Feather to what? Transparent? A background color? There are multiple ways to do this, either with a layer mask or blur.
... View more
‎Oct 17, 2024
06:27 AM
1 Upvote
The answer is no, Nancy was explaining that. Its not compatible, and there are other problems such as activation counts. You cannot migrate Adobe apps and cannot install it on your newer computer. IF you have the original install media and a valid serial number and a supported OS version and unused activations, it should work with a new installation. FWIW, I expect Adobe to completely cut off CS5.x and CS6 at some point in the near future. That's the direction they are headed.
... View more
‎Oct 17, 2024
06:22 AM
There are hard limits depending on a lot of things- operating system, application, drive format, local vs cloud, etc. Keep in mind that CLOUD STORAGE IS NOT SUPPORTED and that these pathname limits have changed over the years. If you get an error, you have to use shorter names. That simple, I know that not everyone likes to accept technical realities.
... View more
‎Oct 17, 2024
06:04 AM
Its not missing, its part of the multiple redesigns over the past half dozen releases. I'd rather they fixed the performance which has never been good and the UI that they destroyed. Bridge 13-15 are a tragedy.
... View more
‎Oct 17, 2024
05:54 AM
1 Upvote
You can download the Sonoma updates from Apple. https://support.apple.com/en-us/102662
... View more
‎Oct 17, 2024
05:53 AM
What happens when you DON'T run a beta OS? Apple makes it very clear that betas are not for production use, only testing. And your testing reveals that something is broken. I'm shocked. Shocked!
... View more