Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

90
Vistas
Illustrator Script- Java script- Applying action to selection

I'm trying to make a script that will go through the selection and apply action to each group in the selection.

Here is what I'm trying to do:

  1. select a couple of individual groups
  2. apply an action to each group seperatly

My problem is that instead of applying it to each group it does it to all of them. I tried using a for loop but it didn't worked, I tried to deselect the group that passed the action but it failed to.

Here is my script:

var doc = app.activeDocument;

for (i=0; i < doc.groupItems.length; i++)
{
    doc.groupItems[i].selected = true;
    app.doScript("300", "Set 1"); //Action name - Folder Name
    app.activeDocument.selection = null;
}
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Try this:

var sel = app.selection;
app.activeDocument.selection = null;

for (var i = 0; i < sel.length; i++) {
    if (sel[i].constructor.name != 'GroupItem') continue;
    sel[i].selected = true;
    app.doScript("300", "Set 1"); // Action name - Folder Name
    sel[i].selected = false;   
}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda