elinochinjr
Explorer
elinochinjr
Explorer
Activity
‎Aug 04, 2021
08:12 PM
Hello, Again, Thank you for this wonderful script you made for me. If possible, I want to make a minor change, I really don't know how to code. The pointText start from the TOP LEFT corner, I just want to make it start at the BOTTOM LEFT corner, that's all. This is the current script. var doc = app.activeDocument;
var name1 = app.activeDocument.name;
for (var i = 0; i < doc.artboards.length; i++) {
doc.artboards.setActiveArtboardIndex(i);
doc.selectObjectsOnActiveArtboard();
for (var j = 0; j < selection.length; j++) {
if (selection[j].typename == "PlacedItem") {
var name2 = decodeURI(selection[j].file.name).replace(/\.[^\.]+$/, "");
doc.artboards[i].name = name2;
var d = doc.artboards[i].artboardRect;
var text1 = doc.textFrames.pointText([d[0] + 20, d[1] - 20]);
text1.contents = name1 + " - " + name2;
text1.textRange.characterAttributes.size = 8;
text1.paragraphs[0].paragraphAttributes.justification = Justification.LEFT;
break;
}
}
} Please see image for reference:   Thank you very much!
... View more
‎Jan 05, 2021
01:18 AM
Hello, I need help creating Booklet for printing. "Action" tool can't keep up with what I'm trying to do, maybe "Script" could, but I don't know how to code. 😞 This is what my process like: For example, I have 4 pages (JPEG file) #1. Create document that fits 2 pages side by side. #2. Drag and drop the 4 pages into document as smart object. #3. Align right all Odd numbers, align left all Even numbers #4. Merge the first and last numbers and Rename to S1F, S1B, S2F, S2B, S3F, S3B etc..(Spread 1 Front, and Back) #5. Save as JPEG Finished product: The problem is if I have more pages. 4, 8, 12, 16, 32, 64 pages Thank you in advance!
... View more
‎Dec 01, 2020
05:43 PM
1 Upvote
working!!!! Thank you thank you so much!! This is lifesaver!
... View more
‎Nov 30, 2020
07:45 PM
sorry, I don't know what to do with that code 😞 This is what I want look like
... View more
‎Nov 28, 2020
12:08 AM
Can I add one more? What if I like to add the Filename itselft? Sample 1: Filename - Linked name Sample 2: Filename Linked name
... View more
‎Nov 28, 2020
12:05 AM
Wow!! This is perfect! Thank you so much!!
... View more
‎Nov 27, 2020
10:41 PM
Top left corner, please see image. thank you
... View more
‎Nov 27, 2020
10:40 PM
1 Upvote
Hello, This works for me perfectly!! But can you also add text filename base on linked image name? for example:
... View more
‎Nov 27, 2020
10:30 PM
Hello, Is there a script for when you put a linked image will insert a text with the filename of the linked and rename artboard at the same time. I don't know how to script 😞 Thank you. This will save my workflow!
... View more
‎Nov 23, 2020
07:50 PM
Hello, Please help me about pasting object/text/etc into another layer that active. For example I want to copy object from layer 3 to layer 1, It keeps pasting on the same layer where you copied please see video: Thank you!
... View more
‎Oct 08, 2020
08:18 PM
Hello, sorry, in my PC with Illustrator 2017, it says code:
... View more
‎Oct 07, 2020
05:06 PM
This is what I need, "Illustratoc CC (Legacy)" Thank you!!
... View more
‎Oct 06, 2020
07:13 PM
Hello, sorry to bother you, but I need your help again, I just don't know how to code, how to make this possible? option when saving AI document, I need to choose version for my lower version AI Thank you very much!
... View more
‎Sep 22, 2020
12:17 AM
1 Upvote
yea, thanks
... View more
‎Sep 21, 2020
05:53 PM
1 Upvote
the latest CC2020,
... View more
‎Sep 20, 2020
10:59 PM
Hello, How to put/pin the Image size window to Properties window? just like the Canvas window Thanks
... View more
‎Jul 23, 2020
11:08 PM
sorry for the late reply.. Thank you! It's working.
... View more
‎Jul 16, 2020
11:32 PM
Hello I want to save Layer 1 (link image) as AI format and Layer 2 (outline) as PDF format Is there a script for this to save at once? See sample: Layer 1: PDF format (link image only) Layer 2: AI format (outline only) Thank you
... View more
‎Jul 09, 2020
07:12 PM
Hello, can I ask another favor? can you make the label in another layer and locked? thanks for your help..
... View more
‎Jul 09, 2020
12:36 AM
its PERFECT! thank you very much !!! I have so many idea but I don't know how to code and if it's possible. but this script will simplify my work (a bit hehe) THANK YOU
... View more
‎Jul 09, 2020
12:04 AM
wow! Thank you, that works great. but one last thing. can you add the artboard name in the artboard itself like a small label? I need this for printing please see attached
... View more
‎Jul 08, 2020
11:24 PM
Thanks for your help, You can disregard the first part. for the second part: Can you make the 'odd number' of artboard (1,3,5,7,9 ~) Artobard1: S1F Artobard3: S2F Artobard5: S3F and 'even number' of artboard (2,4,6,8,10 ~) Artobard2: S1B Artobard4: S2B Artobard6: S3B Thank you
... View more
‎Jul 08, 2020
10:01 PM
Hello, Do you have script for renaming artboard? 1. Rename artboard for Front side and Back side: Artboard 1: Front Artboard 2: Back and placed it to the TOP LEFT 2. This is only 6 artboard for example, do you have shortcut for this? I'm doing this by renaming artboard 1 by 1 then typing it in artboard 1 by 1. S1F = Sheet 1 Front S1B = Sheet 1 Back thank you
... View more