I'm trying to rewrite the CornerEffects.jsx script in Indesign CS5.5 to make it more user friendly in school, so people know exactly where the first point is and where the last point is etc. The Script has to work in CS3 as well. I need to the options to change only when a rectangle is the selected object and otherwise fallback to the default. I've tried to the following snippet but it just falls back to the default anyway. Thanks, guys.

function myDisplayDialog(myObjectList){
        if (app.selection.constructor.name == "Rectangle"){                 
        var myStringList = ["all points","first point (top-left)", "last point(top-right)", "second point(bottom-left)", "third point(bottom-right)", "fourth point(top-right)", "first two", "second and third", "last two", "first and last", "odd points", "even points"]
        }
         else{  
             var myStringList = ["all points","first point", "last point", "second point", "third point", "fourth point", "first two", "second and third", "last two", "first and last", "odd points", "even points"]
        }
link|improve this question

feedback

1 Answer

Just looking at it, you would typically use 'selection[0].constructor' rather than 'selection.constructor' but it's hard to say if it will work with this fix. You should be able to step through the code in ExtendScript Toolkit to see where it goes wrong. It might be helpful to break it up into steps to be able to see the values easier.

Just out of curiosity, what school is teaching InDesign scripting?

link|improve this answer
i'm in high school, and in a grade 11 Web Design course, a lot of kids found the whole scripting and corner effects thing confusing..so i thought this might help..oh and i'm in Canada.. – theatomicdude Dec 21 '11 at 8:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.