mrinmoy1984
Community Beginner
mrinmoy1984
Community Beginner
Activity
‎Feb 13, 2011
10:21 PM
Hi Peter, I have changed the code according to you. But it didn't work. Thanks, Mrinmoy
... View more
‎Feb 10, 2011
07:13 AM
changeToArrow(); function changeToArrow(){ replaceText('_MID_ROW_UP','@#!','<25B2>'); replaceText('_MID_ROW_NoChange','#@!','—'); replaceText('_MID_ROW_DOWN','!#@','<25BC>'); } function replaceText(a_char_style,a_find_what,a_change_to){ app.findChangeTextOptions = NothingEnum.nothing; app.findTextPreferences = NothingEnum.nothing; app.changeTextPreferences.appliedCharacterStyle = document.characterStyles.item(a_char_style);//_MID_ROW_DOWN app.findTextPreferences.findWhat = a_find_what;//down-arrow(!#@) app.changeTextPreferences.changeTo =a_change_to;//<25BC> app.findChangeTextOptions.includeFootnotes = false; app.findChangeTextOptions.includeHiddenLayers = false; app.findChangeTextOptions.includeMasterPages = false; app.findChangeTextOptions.includeLockedStoriesForFind = false; app.findChangeTextOptions.includeLockedLayersForFind = false; var results = app.changeText(false);//In this line InDesign is cushing.. } Any one know the reason behind it?
... View more
‎Jul 28, 2010
07:21 AM
2 Upvotes
Use the folowing code: Folder.decode(folderPath);//where folderPath is the file location.
... View more
‎Jul 28, 2010
07:00 AM
1 Upvote
Hi try the following code. It will work var FilePath = Folder.decode(C:/Package/); //where "C:/Package/" is the folder location var FileName = File.decode(a.indd); //where a.indd is the indd file name var fileLocation = FilePath + FileName; app.open(File(fileLocation));
... View more
‎Jun 03, 2010
02:54 AM
‎Apr 30, 2010
06:16 AM
Thanks mark, It's working. I've also tried to do it from DOM. But failed to find appropriate method. Thanks again!!!!
... View more
‎Apr 30, 2010
03:44 AM
1 Upvote
How to convert textframe to button?
... View more