Copy link to clipboard
Copied
Hello:
I've written a script to format the Horoscope for our newspaper. But when I run it, the place feature opens the last folder InDesign used, as it normally does. But I want it to open a specific directory. I've tried several versions of place, but none seem to work.
(The script deletes the text we don't need, formats the other text, and saves the finished text box as a snippet in a directory. We use TownNews for pagination, so we can auto import the snippet when needed.)
I did get the script to work if I use the Folder feature, but it places the new text file over the current text file on the document. Of course, I can make the script delete the current text box and then place.
But I would like to have the script "place..." and open a specifiic directory.
I've tried everything I know of to get the "Place..." to open a specific directory, but no luck.
Here is a copy of the script.
I would appreciate any feedback/help anyone can offfer.
Thanks.
Larry
1 Correct answer
You are almost there.
When you want to place something - you are not limited to Pages - you can place inside an object that you've created - and the way to do it is exactly the same as when you place it on a page:
var myInsertionPoint = app.activeDocument.stories[0].insertionPoints[-1];
myInsertionPoint.place(name_of_your_file);
or
var myRectangle = app.activeDocument.pages[0].rectangles.add();
myRectanngle.geometricBounds = [0,0,100,100];
myRectangle.place(name_of_y
...
Copy link to clipboard
Copied
It's possible there's a specific and helpful answer here, but if not/in the meantime: would it not be a simpler solution to keep the daily content file (for this item, at least) in one folder? Or is it essential that all of a day's content be held within a unique daily folder?
Copy link to clipboard
Copied
You mean something like this?
var myFolder = Folder.selectDialog("Please select folder containing snippets", "");
Copy link to clipboard
Copied
Thanks, Robert:
That opens the dialog box but it doesn't place the text file I'm going for.
I think there should be a way to designate a specific folder to place from using the "Place..." menu item fuction.
I've tried several different methods, but none seem to work.
I can get text to import and go into the document using:
var dir = Folder("/\\10.10.1.9/Copydesk/Horoscope_Files_Originals\\/");
var files = dir.openDlg('This is always the same folder?','',true); //This will open the folder at the location specified in the previous line
if(files && files.length > 0) //We need to check if the user did select and did not cancel the dialog
placedItem = myPage.place(files[0]);
But this creates a new text box in the doc.
I can make this though delete the old text box first, then place the new one and run the rest of that script.
Thanks for your help and feedback.
Larry
Copy link to clipboard
Copied
You are almost there.
When you want to place something - you are not limited to Pages - you can place inside an object that you've created - and the way to do it is exactly the same as when you place it on a page:
var myInsertionPoint = app.activeDocument.stories[0].insertionPoints[-1];
myInsertionPoint.place(name_of_your_file);
or
var myRectangle = app.activeDocument.pages[0].rectangles.add();
myRectanngle.geometricBounds = [0,0,100,100];
myRectangle.place(name_of_your_file);
https://www.indesignjs.de/extendscriptAPI/indesign-latest/#InsertionPoint.html#d1e518510__d1e526414
And use SEARCH in the top-right corner - type "place" - you'll get a long list of all objects that accept place() method.
Copy link to clipboard
Copied
Thanks, again, Robert.
I appreciate your help.
That worked.
I didn't know about the search for "place" to help with placing items.
So that will help me in the future too.
Thanks for taking the time to respond back.
Much appreicated.
Larry
Copy link to clipboard
Copied

