Shift InsertionPoint by one or several Characters?
for example i have a text like blabla1 blabla and my insertion point is before the 1. how can i get the insertion point after the 1? or maybe before the second blabla, How can i shift my insertion...
View ArticleRe: Copy paste anchored objects in a table
One more question:And what if the object (image) was pasted, no anchored, in the cell??? Then it hasnt insertion point, but the object is anchored, anyway...Thanks!Jose
View ArticleRe: Copy paste anchored objects in a table
An object pasted like that is an inline anchored object. No big deal…Also represented as a Character object.Every single cell as shown in your screen shot should have a...
View ArticleRe: Shift InsertionPoint by one or several Characters?
You could check for the index of the insertion point according to the story. If you want to shift the selection of that insertion point by one, just do the following:...
View ArticleRe: Copy paste anchored objects in a table
Oh.There is another thing that is missing (e.g. for a round trip from a character to the anchored object [e.g. the rectangle] and back): The Character object "contains" the rectangle with all...
View ArticleExport PDF to path
Hi everybody, I do have a challenge in exporting PDF to particular folder called "PDF". The PDF path to be exported inside the folder News/PDF/. //PDf file path. where indesign file will be inside...
View ArticleRe: Copy paste anchored objects in a table
Just one additional thing:it could depend on the property you want to use when working with pageItems[0] like in my example. But I'm finding no negative example right now ;-) In any case, resolving the...
View ArticleRe: Export PDF to path
Also used this script from Forum.. var myDoc = app.activeDocument; var myFolderName = myDoc.filePath; var myDocumentName = myDoc.name.slice (0, -5); var myFilePath = myFolderName + "/" +...
View ArticleRe: Copy paste anchored objects in a table
Thanks, thanks, thanks..... Until now, all my works are with rectangles, so the job must be easier. I'm working with all your usefuls informations and I expect to have a script for my (almost) diary...
View ArticleRe: It's is possible in non printing lines creation.
Dear Caleb, I am not copy your feature of typefi product, I was already created the lines for my note text indicator to pasteboared of the note text source like as comment pdf line marks, My question...
View ArticleRe: Export PDF to path
Thanks I found it... var myFolder = app.activeDocument.filePath.parent + "/PDF/";var myDoc = app.activeDocument; var myDocname = myDoc.name.split(".indd");myDoc.exportFile(ExportFormat.PDF_TYPE,...
View ArticleRe: InDesign Conditional text batch export with TOC update
Hi Jarek / anyone else who might know... I'm using this method but want to ask it to save into a different folder if the currConditionName is something specific. Is there something I can add at some...
View ArticleRe: InDesign Conditional text batch export with TOC update
Hi, part to modify: //set pdfName var other = "";if (currConditionName == "specificName") { other = "/otherFolderName/"; if (!Folder(currFilePath + other).exists) Folder(currFilePath...
View ArticleCS6 findchangebuylist with javascript error
Running Mac OS 10.6.8 iMac 2.93 GHz Intel Core i74GB 1333 MHz DDR3Indesign CS6 8.0.1 I have created an new page with nothing on it except a text box. I imported paragraph and text styles for a master...
View ArticleRe: Find indesign doc Path and continue next
Hi Forum Because often I use to work on destop or downloads, i forget to save on a particular path... So the alert is needed to convey the document is not in path. atleat if it could check the path up...
View ArticleRe: CS6 findchangebuylist with javascript error
In the original script, line 116 seems to be:var myFindChangeFile = myFindFile("/FindChangeSupport/FindChangeList.txt") You said all you did was add _SimpleTest to the name, but then you went looking...
View ArticleRe: CS6 findchangebuylist with javascript error
Sorry I should have included the entire javascript so you could see exactly whats there. I am calling the correct file and I am not including the .txt extension. I'll include the findchange.txt file...
View ArticleRe: CS6 findchangebuylist with javascript error
try including the .txt extension in the call...
View ArticleRe: CS6 findchangebuylist with javascript error
Tried that and it doesnt work either. Any other ideas? Thanks for your help Peter!
View Article