What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

photoshop scripts

  1. O

    Script for JPGS to run Action

    Hi, I'm running the second half of this script to determine the layout orientation and run a specific action according to image layout. It works, although I would like to run this script when Photoshop opens an image file that is a jpg only. If it opens a psd file, I would like the script not to...
  2. Simonetos The Greek

    How to put multiple values into an array of a dropdownlist?

    With this part of code, I am trying to put all found layer names (layersData) into dropdownlist2_array, but instead of a list with names, I get one line with all names!!! Any idea what am I doing wrong? Thank you in advance!!! var layerNames = []; for (var i = 0; i < layersData.length; i++) {...
  3. Simonetos The Greek

    Scripting Get values from an applied bevel and emboss effect for multiple layers?

    I created this function below, to get some values from an applied bevel and emboss effect, like shading angle, shading altitude etc. alert("Angle: " + getBevelAndEmbossValues()[0] + "\nAltitude: " + getBevelAndEmbossValues()[1]); function getBevelAndEmbossValues() { try {...
  4. Simonetos The Greek

    Explanation of a function line by line for learning purposes!

    Greetings to everyone!!! :) As the title says, I need someone to give me an explanation of this function below, line by line, for learning purposes. Thank you in advance!!! function getAllShapeLayersData() { var lyrs = []; try { activeDocument.backgroundLayer; var...
Back
Top