Need a script CS4 - reissue of bonds of the illustrator files

I have a 7 100 pagemaker document pages that contain the same layout of tables, each table that is bound to a different illustrator file.  I used to run a simple script that ran through all the pages and relinked each file.  How do I do this in InDesign CS4?

Old writing looked like this... (I use a loop in VB to print the text of this script)

Page 1

textSelect (4.8)

create a link to C:\\filename\Alabama\graphic1

textSelect (4,10)

create a link to C:\\filename\Alabama\graphic2

page 2

textSelect (4.8)

create a link to C:\\filename\Alaska\graphic1

textSelect (4,10)

create a link to C:\\filename\Alaska\graphic2

....

The States don't want nothing to say I just used as an example to illustrate what I'm doing.

I need to know how exactly the same way in CS4.  I've looked everywhere and can't find what I'm looking for.  JavaScript is better.

Thanks for any help!

You searched for a hotel anywhere - have - you read all these messages?

http://forums.Adobe.com/search.jspa?communityID=3331&resultTypes=message&q=relink

Tags: InDesign

Similar Questions

  • script to unlock all layers in the illustrator file

    Hello!

    I run a batch place script the name of the document in the image and then save the document, all documents in a foder.

    However, he refuses to put this text, that the target layer is blocked at the outset.

    I'm looking for, so a piece of script that I can add to this script that will be first to unlock all layers in the document.

    Can someone help me with this?

    Something like this unlocks all the layers:

    myDoc = app.activeDocument;

    myLayers = myDoc.layers;

    for (a = 0;

    myLayer = myLayers [a];

    myLayer.locked = false;

    }

    But it is not unlock all items on layers.

    HTH,

    Ariel

  • need a script to create multiple tables as the other columns in tables

    I need script to create multiple tables as the other columns of tables respectively.

    lets consider I want to create tables from table1... table99 like tablex1... .tablex99 columns (without data) respectively (i.e table1 as tablex1, table99 as tablex99).
    declare
    
    cursor c is select object_name from all_objects where object_type='TABLE';
    
    begin
    
    for i in c loop
    
    execute immediate 'create table '||i.object_name||'_x as select * from '||i.object_name||' where 1=2';
    
    end loop;
    
    end;
    
    use can use this and put your user names accordingly.
    If you get any error please post the error.
    
  • Script to open 2 versions of the same file a JPEG and a TIFF - nrun action in a batch format

    I have 2 folders of images.  One is a folder of JPEG files that have paths created for the image.  The second folder is an identical image, except that it's a TIFF file with no path.

    I created an action that takes the path of the installation on the TIFF and JPEG and does work for me.  What I can't understand is how this batch?

    I think that I would need a script to open the first image for each folder action and then go to the next image in each folder and so on.

    Any help would be so wonderful.

    If you know a script or can point me in a direction that would be great!

    Sorry about that, I had missed a point out of this line, please try this now.

    #target photoshop
    main();
    function main(){
    var jpgFolder = Folder.selectDialog("Please select the jpg folder");
    if( jpgFolder == null) return;
    var tifFolder = Folder.selectDialog("Please select the tif folder");
    if( tifFolder == null) return;
    var fileList = jpgFolder.getFiles("*.jpg");
    for(var a in fileList){
        var JPG = fileList[a];
        var TIF = File( tifFolder + "/" + fileList[a].name.toString().replace(/jpg$/i,'tif'));
        if(!TIF.exists) continue;
        open(JPG);
        open(TIF);
        //needs amending with your action name and actionset
        doAction("ActionName","ActionSet");
        }
    };
    
  • Is there an API to retrieve the news related to the dynamic object bound to the ExtendScript Toolkit PS CS6 Core script? for example: linked to the Original file name?

    For example, title...

    I found the info of layer in the photoshop file format data document.

    But not found any API to retrieve in the scripts.

    Thank you, in advance!

    I see that you managed to post on the forum script.

    To find a specific Adobe forum, when you're on the Welcome screen,

    https://forums.Adobe.com/welcome

    look at the menus on the top right of the screen: "see all our products and services ', click on and choose from the dropdown menu, then 'Go '.

  • Illustrator cs4 error: could not open the illustration. Cannot print the illustration.

    Full disk error has occurred while printing.

    Everyone knows this? I am running Illustrator CS4 on a Mac Snow Leopard. The error occurs when starting to open an eps file on my computer, that are ALL my files Illustrator, sigh. I contacted Adobe and I was told this is a bug, and they have yet no solution. Does anyone know how to find out when the fix will be released?

    Thank you very much.

    If you do a Get Info on one of your files, which is listed as the program to open the .eps files? Try changing IT and change everything.

  • need a script to custom calculation to calculate the standard deviation

    need a calculation script customized to calculate the standard deviation of 8 rows, it is a form .pdf variable data entry points will be users using this model as a form.

    I can get the average of simple calculation, but struggling with the script for the standard deviation. Any help would be appreciated.

    Header 1 Header 2 Header 3 Header 4 Header 5 Heading 6 Heading 7 8 header Header 9 Header 11
    sample1Row1sample2Row1sample3Row1sample4Row1sample5Row1sample6Row1sample7Row1sample8Row1AveragestdDeviation

    If the formula is not:

    StdDev = sqrt (sum (sampleXRow1 - average) ^ 2 / (n-1))

    But:

    StdDev = sqrt (sum ((sampleXRow1-average) ^ 2) / (n-1))

    If the code should be something like this:

    var avg = Number(this.getField("AverageRow1").valueAsString);
    var sum = 0;
    var n = 0;
    for (var i=1; i<=8; i++) {
        var v = this.getField("sample"+i+"Row1").valueAsString;
        if (v!="") {
            sum+=Math.pow((Number(v)-avg),2);
            n++;
        }
    }
    if (n==0 || n==1) event.value = "";
    else event.value = Math.sqrt(sum / (n-1));
    
  • I need a script to perform a specific action and save file with the SAME name of document .jpg

    I have all my PSD master files registered as follows: mydocument_PSD.psd. I want to run a custom action to sharpening and then save the file as mydocument.jpg (note the part "_PSD" should be removed).

    I found this Photoshop-export-PSD-script/Export - PSD.jsx to edwardloveall/Photoshop-export-PSD-script master · · GitHub that gets me close to there, but that's a png and is the name of the document to the right and there is no action ran.

    Any ideas?

    This gives a try...

    #target photoshop;   
    
    main();
    function main(){
    if(!documents.length) return;
    try{
        var path = activeDocument.path;
        }catch(e){
            alert("This document has not been saved");
            return;
            }
    if(activeDocument.name.toString().toLowerCase().search(/_psd\.psd$/) == -1){
        alert("Filename is not in the correct format");
        return;
        }
    var fileName = activeDocument.name.toString().match(/[^_]*/);
    var savedState = activeDocument.activeHistoryState;
    doAction("savelarge","Action Set");
    //////////////////////////////////////////////////////////////////////
    SaveJPEG(File(path + "/" + fileName + "_large.jpg"),10);
    activeDocument.activeHistoryState = savedState;
    savedState = activeDocument.activeHistoryState;
    doAction("savesmall","Action Set");
    //////////////////////////////////////////////////////////////////////
    SaveJPEG(File(path + "/" + fileName + "_small.jpg"),10);
    activeDocument.activeHistoryState = savedState;
    };
    function SaveJPEG(saveFile, jpegQuality){
    jpgSaveOptions = new JPEGSaveOptions();
    jpgSaveOptions.embedColorProfile = true;
    jpgSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgSaveOptions.matte = MatteType.NONE;
    jpgSaveOptions.quality = jpegQuality;
    activeDocument.saveAs(saveFile, jpgSaveOptions, true,Extension.LOWERCASE);
    };
    
  • If I don't use that works I need to install Office are there updates to the common files, I need

    From the Internet, I received several updates of Office files with 'security update' in the name of the file.  I don't have room to keep loading these updates, if I don't need them for other programs to work properly

    Hi nancymosley,

    Works updates appear sometimes as Office updates.   If you do not have Office installed, then the automatic update feature should not offer updates for Office - but if you have installed works, it will offer to those that apply to the works.  If you wish, you can learn more about the update before installing it (and it should tell you whether it applies to works or office and what it does); However, if they apply to the works and updates of security you really have to install them to your system's security.  If this is the case and you have doubts about a particular update, after the name and the number here and we'll see if we can help determine you if it is necessary for the work.

    If you have not installed Office but simply do not use it, then you will receive updates for Office as well as works.  If you do not have an office, to avoid this problem I suggest you uninstall Office (all versions you have installed) and who can fix the problem (except as noted above).  If you want to have something like office works also available "in case", then after you have uninstalled Office, ask the free OpenOffice www.openoffice.org and you will be covered and will not get not the Microsoft updates specifically for the office.  This release also lots of space on your disk space seems to be a matter of concern.

    Although it is extremely unlikely for a security issue to occur through office if you are not using Office and it is just installed, it is remotely possible (but very, very unlikely-, I'm almost tempted to say it wouldn't happen).  But if you never use it, then you can cause problems without these updates installed.  If really, you do not want to install the updates and want to stay safe, and are certain that you do not use Office (if you decide to do, then you will need to install all updates before you do anyway to avoid security problems and other), then I highly recommend that uninstall you it simply.  I guess you have discs re - install if you ever decide that you need.  If not, then you can always still use (install if you don't have it already) the free OpenOffice which covers most of the common programs of office (with the exception of Outlook).

    I hope this helps.

    Good luck!

  • My new reinstalled Premiere Pro CS4 is unable to bear the .mov files. Is there something I can do?

    The files have been supported when I created the project on a computer of college in a previous version of first in 2009. I tried to download quicktime and restart far.

    See you soon,.

    -Ewan

    Ewan,

    After you have installed the latest version of Apple's QT player, did reboot the system?

    QT Player should install more common MOV CODEC, but for them to show in the system (where they are installed), usually, we need to restart.

    Good luck

    Hunt

  • I need IE9 to display expensive 1st frame of the video file integrated

    I joined a .mov file in my site. The film itself, the first image is a photo. On safari and firefox on my mac, the video appears with the photo as the first picture (which is what I want). However, when I view the page on the laptop from windows my MOM using IE9, the first image is black. The video plays well, I just need that it displays the first image, and not a black frame.

    The code I used is

    " < embed src = ' http://www.theamateurchef.co.UK/userimages/AppleCrumbleP.mov "autoplay ="false"controller ="true"loop ="false"pluginspage =" " " http://www.apple.com/quicktime/ ' "height ="378"width ="477"> < / embed > "

    Any help would be appreciated.

    Thank you

    Ally

    Works fine for me in IE7, IE8, and IE9 in QuickTime Player.

    MOM has later than QuickTime Player installed on his PC?

    http://www.Apple.com/QuickTime/Download/

    Nancy O.

  • Creative cloud think my purchased programs need to subscriptions and I can't delete the remaining files of CC!

    It's absolutely maddening. I finished my subscription and delete all programs of cc. I also have my previously PURCHASED without a subscription based programs. Once I deleted all the files of CC, a small part of the CC remained, telling me that if I want to run my versions CS6 Photoshop or premiere, I have to subscribe! I even re-downloaded (no rental) programs purchased on adobe.com, but he ALWAYS wants me to pay for a subscription! There is one folder of creative cloud left in my program adobe files and no matter how hard I trying to delte, he tells me that I can't, it's 'open in another program' well I go into task manager and stop damn near every suspicious program which could be executed, it and it may not ALWAYS be deleted. And I don't even know if the removal of this last folder CC stops this. ADOBE. What the devil.

    Hello

    Please visit download / install / uninstall FAQ: how to uninstall cloud creative apps?

    Hope that helps!

    Kind regards

    Sheena

  • We need a solution allowing several people to download the pdf file, fill in the form and add their own password for local storage on their own computer. Is this possible? Thanks in advance-

    We want our customers to be able to download a PDF on a Web site, fill in the form, and then save and apply their own password. Is this possible? Thank you very much in advance.

    Yes, when customers use Adobe Acrobat.

  • Hello. I need to clear this white borders as soon as I enlarged the image files in Photoshop cs5.

    problem.png

    Hello. I need to erase this white borderswhen I enlarge the image files in Photoshop cs5.

    When I took some courses in Photoshop, I remembered how fix and do more smoothly...

    Now, I totally forget.

    The solution could control somethings inside preference... I guess...

    Anyway, here, the photo is the horrible headache I'm asking now.

    Please answer my question.

    Thank you very much.

    I think you are referring to the pixel grid that shows extreme enlargement. If that's what you're talking about, go to view > view and uncheck the grid in pixels

  • Need a script to decompress the files

    Hello friends, I am using old windows Server 2003 and I need to decompress x number of files zipped. I want to also include 'replace' option if the file already exists.

    Please help with script

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)
    *

Maybe you are looking for