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!

Search results

  1. Simonetos The Greek

    How can I capture "Align To" into an action?

    Is there any way to capture "Align To: Selection" or "Align To: Canvas" into an action? Thank you for your time!!!
  2. Simonetos The Greek

    How can I rename a group using an action?

    I have quite a bit projects which contain a group by the name "Cover" and I want to rename it to "Cover Group" using this action. But into "Cover" layer group there is a layer with the same name. So when my action starts, instead of find and rename the group "Cover", renames the layer...
  3. 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++) {...
  4. Simonetos The Greek

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

    Well I finally managed to solve it!! Here is my solution... If anyone has anything better... var layers = getLayersData(); alert (layers.length + ' layers found!!!' , 'Message'); function getLayersData() { var lyrs = []; var layers = 1; while (true)...
  5. Simonetos The Greek

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

    Hello my friend and thank you for your answer!!! I have already make the same question at adobe photoshop scripting forum, at graphicdesign and stackoverflow, but nothing... So, I am testing some things by my own and waiting if someone give an answer!!! :)
  6. 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 {...
  7. 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...
  8. Simonetos The Greek

    Script which will find specific layers and apply Bevel and Emboss.

    Hello everybody, I am new to this forum and Photoshop scripting too!!! I need help to make a script (and study it of course) which will search in every group with specific name, then find every layer with specific name or layerkind, then count (length) those layers and then apply desired Bevel...
Back
Top