Renaming extracted Single windows IDcs5 documents using a windows CSV-file

I'm not a scripter and I'm in need of a script that will rename extracted single pages using a column from a windows CSV-file to name each InDesign file accordingly. I have search the forums but all I can find is a Renaming extracted single pdf pages as in this post http://forums.adobe.com/message/4633533#4633533#4633533 I've been told that I could adjust such scripting but I don't know how. I will like to acomplish the same but Exporting single InDesing pages. Does anyone has a script that can be share on how to do such thing? Either through ID or using Bridge?

The link highlighted in your post splits a large PDF into single page PDFs based on a csv/txt file within Acrobat - it isn't an InDesign Script.
There is an indesign script you can try and it is written by Loic Aigon: go to http://www.loicaigon.com/en/pdf-exports-properly-named/ read the article and see if it is appropriate for you.
There is another indesign script you can try but it is in german. See the adobe forum post http://forums.adobe.com/thread/1014766 for more information.
Hope this helps
Colin

Similar Messages

  • Use servlet read .csv file by ie, but why two more " ?

    Hi , friends
    following is the key method in my servlet used to read .csv file to ie , but , after I read file to client side , I found that in the both sides of every line " was added, so the csv file can have only one column (many columns was merged into one column), that was not what i want, who guys can find some idea? thanks for your enthusiasm!
    void serveRemoteFile(String sFileName, String sContentType, HttpServletRequest req, HttpServletResponse res, StringBuffer sbLog, Runtime rt){
    FileInputStream in = null;
    ServletOutputStream out = null;
    byte bBuf[] = null;
    int nLen;
    if (isBlank(sContentType) || isBlank(sFileName))
    return;
    res.setStatus(res.SC_OK);
    res.setContentType(sContentType);
    res.setHeader("Content-Disposition", "inline;filename= temp.csv");
    try {
    in = new FileInputStream(sFileName);
    out = res.getOutputStream();
    bBuf = new byte[1024];
    while ( (nLen = in.read(bBuf,0,1024)) != -1) {
    out.write(bBuf, 0, nLen);
    out.flush();
    out.close();
    }catch (FileNotFoundException e){
    errorPage(req,res,sbLog);
    }catch (IOException e){
    errorPage(req,res,sbLog);

    Excel uses a weird CSV file format. You can find more information about it and a Java library to read data from it here:
    http://ostermiller.org/utils/ExcelCSV.html

  • Remove-Mailboxes using Powershell from CSV file

    hello all ,
    I encountered in problem with my exchange Server 2010
    I have a mission to delete closed 150 Mailboxes in my organization
    I tried a lot times to use the command "Remove-mailbox " and i anytime got error
    I would appreciate the help of one of you maybe guide me because is very important for me to resolve this problem
    so meantime i did export of mailbox from exchange server with content "Userpricplename" to CSV file after than export does success i did filtering and tried to perform this commad :" import-csv c:\Mailboxes.csv | foreach {Remove-Mailbox -userprincipalname
    $_.Emailadress }
    please see the errors below :
    excel content :
    website: www.PelegIT.co.il

    Hi ,
    If we set -Confirm:$false EMS will not prompt for yes or no option while executing commands in shell.
    If we set -Confirm:$true EMS will prompt for yes or no option while executing commands in shell.
    Thanks & Regards S.Nithyanandham

  • Can I use Office 2007 csv file for data load?

    Hi all,
    I see some special characters while looking at data after load.
    I am using the latest version of microsoft office.
    Does SAP BW support the csv files saved in 2007 version?
    Thanks and Regards,
    Ravi.

    Hi Ravi,
    This is another error.
    Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Extractor .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.
    Error Message:
    Error 1 when loading external data
    Error when opening the data file
    Errors in source system.
    Step By step analysis:
    Data Request sent off?
    Data Selection sucessfully started?
    Data se;ection sucessfully finished?
    Processing error in source system reported?
    Processing error in warehouse reported?
    Could you please guide me houw to overcome these. Thanks.

  • Extracting attributes from XML document using plsql

    Hello,
    I have successfully written a plsql procedure that has been
    using Xpath to extract the element values from an XML doument:
    i.e.
    l_xpath := '/Form_Data/Person_Details/Initials';
    l_DomNodeList := xslprocessor.SelectNodes(l_RootNode, l_xpath);
    l_DomNode := xmldom.item(l_DomNodeList,0); -- first Element
    l_DomNode := xmldom.getfirstchild(l_DomNode);
    l_id_number := xmldom.getNodeValue(l_DomNode);
    However the data (Initials) I wish to extract is now stored as
    attributes within the Person_Details element and I was wondering
    how I would go about explicitly extracting the attributes values!
    I have not been able to find any examples, although I have been
    pointed in the direction of xmldom.getattribute without any
    success!
    Any help, or code examples greatly appreciated,
    - Mark...

    example:-
    xpath.VALUEOF(i_doc,v_PricingPath||'@LockIndicator');

  • Extract Members List of "Selected AD Groups" :: Input: CSV File :: OUTPUT: CSV File (URGENT REQUIREMENT)

    Hello Everyone,
    I am looking for a script which extracts AD Group Members (sourced from CSV/TXT file) and Output to CSV/TXT file.
    Can someone help me finding customized script to solve the purpose.
    Quick response is much much appreciated.
    Thanks & Regards,
    Amit Kumar

    Create a CSV with your headers and use this
    Import-Module Activedirectory
    $Groups=Import-Csv -Path "C:\Users\seimi\Documents\ADGroups.csv"
    foreach ($Entry in $Groups) {
    $Path="C:\Users\seimi\Documents\"+ $Entry.groupname +".csv"
    $Users=(Get-ADGroupMember -Identity $entry.groupname | select -ExpandProperty Name) -join ","
    Add-Content -Path "C:\Users\seimi\Documents\PipeGroup.csv" -Value ($Entry.groupname +";" + $Users)
    Seidl Michael | http://www.techguy.at |
    twitter.com/techguyat | facebook.com/techguyat

  • How to filter a get-adcomputer command using a text/csv file and output to a CSV

    OK, so I'm in the process of trying to get a Windows 7 refresh completed for a large client... I had the bright idea to use AD to find what computers are listed as XP, and determine our progress using that.  Well, I run get-adcomputer, and it returns
    the results... a whole lot of results that really aren't active anymore.  I obtained a list of systems that have been disposed of, holding for disposal, etc... now my problem is I can't quite figure out how to get that list to be used to exclude those
    computers from the results... I execute my script, it runs, but it seems to get stuck in a loop... I'm sure I'm missing something VERY basic, but I can't figure it out.  This is the first time I've ever attempted to use the get-content commandlet, so
    again, I'm sure I'm doing something stupid. 
    Any help will be greatly appreciated!
    import-module ActiveDirectory
    $exclude = get-content c:\scripts\excludes.csv
    ForEach ($entry in $Exclude)
    $Excl = "*$entry*"
    get-adcomputer -filter {Name -notlike $excl} | select Name,operatingsystem
    } Export-CSV c:\scripts\xpfil.csv

    OK, this one with a little tweaking on my excludes.txt worked... I'd really like to know what the
    ?{$a -notcontains $_.name}
    is doing... Step through it if you can... that way next time I'm not beating my head against this same rather solid wall!
    ? is an alias for Where-Object. I avoid using aliases in posts, as they usually confuse people.
    The concept is that you're reading your exclude list into a variable and then verifying that the variable doesn't contain the computer name that you're currently processing in the pipeline. In my case, I'm running each object through a ForEach-Object loop.
    Make sense?
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • Using conditions on CSV files in Receiver Determination

    Hi,
    We're reading EDI files from a directory and turning them into IDocs. We've got an ABAP class that converts the EDI to XML for us, we're calling that as the first step in the Operation Mapping.
    However, several different EDI files are dropped in the same directory, regardless the type and version. Luckily this can be found in the UNB segment in the EDI message. Now we want to make the split in the Interface Determination, but to do he'll need to read the EDI file's first line, determine what exactly it is, and then send it to the correct operation mapping.
    Is there a way to read a non-XML file using XPath in the Condition part of the Interface Determination?
    What I basically want to do is something like this:
    File content :
    UNB+93A:ORDERS:etc.
    UNH+347843243:etc.
    What I want to have my condition on is on the 93a and on ORDERS. So I'll need a double condition with AND (I know how to do that part) but on substrings of the data, which I don't know what to do. I only know that the UNB line will always be the first line.
    So IF pos 5-7 EQ '93a' AND pos 9-14 EQ 'ORDERS' THEN Operation Mapping, etc.
    Any ideas if this is possible, and how?
    Kind regards,
    Frederik-Jan.

    hi,
    >>>Is there a way to read a non-XML file using XPath in the Condition part of the Interface Determination?
    yes this is possible
    but it would be much easier if you'd just create an adapter module (especially if you have more complex conditions)
    that would check the content of the file (parsing it in java) and fill out any of the adapter specific attributes
    on the basis of which you could easily do the receiver determination
    I used this approach for VDA (also non XML files) and it worked very nicely
    Regards,
    Michal Krawczyk

  • To show the result of 2 grids in a single csv file

    Hi,
    i want to show 2 grids(seperately) in a csv file.i created a aggregate query that is giving me result of 2 grid seperately  but when i use a igrid template with aggregate query it is giving me result in a single row.i.e instead of giving 2 grids it is giving result with all the columns in a single row .I am using Applet.saveas CSV File();is there any way to have 2 seperate grid in a single Excel file.
    thanks in advance.

    Karthik
    Aggregate Query is mostly used to combine multiple queries which have at least one common column among those.
    For ur requirement, u can use direct BLS with the help of Action Block <b>WriteFile</b>.
    <b>Scenario :</b> u hv 2 queries - one with 4 columns A, B, C & D; another with 2 columns E & F
    U want to display those tables separately in one single Excel Sheet.
    <b>Solution :</b> Forget AggregateQuery and Take the following steps
    Step 1: Take those two Queries in one sequence
    Step 2: Define two Local variables - Text1 & Text2 with String Data Type
    Step 3: Use Repeater to loop one query's result and Assign the Looping results to the Local.Text1 using action <b>Assignment</b> as following expression in the Link Editor 
    <b>Local.Text1 &
    Repeater_0.Output{/Row/A} & tab &
    Repeater_0.Output{/Row/B} & tab &
    Repeater_0.Output{/Row/C} & tab &
    Repeater_0.Output{/Row/D} & crlf
    </b>
    Step 4: Use another Repeater outside the first Repeater to loop 2nd query's result and Assign the looping results to the Local.Text2 in similarly way as follows in the Link Editor
    <b>
    Local.Text2 &
    Repeater_1.Output{/Row/E} & tab &
    Repeater_1.Output{/Row/F} & crlf
    </b>
    Step 5: Use action <b>WriteFile</b> outside those above Repeaters and take the mode <b>APPEND</b> and FilePath <b>C:
    test
    TwoTables.xls</b> and Text as follows
    <b>
    "A" & tab & "B" & tab & "C" & tab & "D" & crlf & Local.Text1 & crlf & crlf &
    "E" & tab & "F" & crlf & Local.Text2
    </b>
    in the Link Editor
    Step 6: Hit F5/F6 and see the Excel File with two tables showing separately in the mentioned path above.
    Regards
    Som

  • Extracting an image data merge field using only an indesign file and not document.dataMergeProperties.dataMergeFields

    Hi,
    I have kind of a weird requirement but I hope you guys can help out.
    I need to extract all the custom fields used in an indesign file without referencing the dataMergeProperties of a document. Sorry if this is a weird request it is just what I've been told (our system needs to not crash when people upload a variety of in design documents to generate high resolution jpg preview documents).
    I can already get all the text custom fields by looking for "<<" and ">>" in the text frames of a document but I'm having a really hard time finding the image custom fields.
    I tried looking at the rectangles for a given page but that didn't seem to help (but maybe i'm missing some there). I also tried looking at the graphics and images collection of a document but this seemed to return only graphics that are hard coded on the in design document and not the custom image fields.
    Any help would be appreciated!

    Uggg....
    Found the answer after I realized I was looking at the wrong SDK (5.0 instead of 6.0)
    I'm using the doc.hyperlinkPageItemSources property to get these images. It also looks like you can get the image data merge fields from DataMergeImagePlaceholder (but rememeber I couldn't access this).

  • Can I convert PDFs to Word documents using Creative Suite?

    Our office has CS6 -- Is there a way to convert easily convert a .pdf to a word document using Creative Suite?

    FIle --> Save as --> Microsoft Word in Acrobat.
    Mylenium

  • Validation of XML within InDesign CS5 document using schema (xsd)

    Hi,
    Can any one suggest me how to validate the XML within the InDesign document using xml schema (.xsd) file.
    Can this validation be done within the Indesign like DTD validation.
    Thanks,
    Gopal

    I personally don't work with XML in InDesign too much.
    This link should help you :- http://help.adobe.com/en_US/indesign/cs/using/WS372C59DB-BD13-4806-A399-794E754FF37Aa.html
    look under About DTD file section.

  • Cannot extract dimension .csv files from HFM to be able to use maploader

    Hi All!
    We are in the middle of implementing FDM at a financial consolidation project. During this build we would like to use FDM to load HFM with data.
    To help the users we would like to offer them the Maploader.xml which is provided in the mapping templates.zip
    To prepare this maploader file we need to extract the dimension data from HFM into csv files and load these into the maploader.
    Can anyone help me with extracting the .csv files? The script we use creates the csv files but does not load them with the metadata.
    Maybe it is possible to get the right script? Or is this already available in FDM (can't find it)?
    Thank you in advance for your support!!

    Anyone got any tips or directions to solve this?

  • How to use csv files in OWB

    Hi Experts
    I have one UNIX server and i my user is putting the csv files on windows machine. I want
    1. If User put some new csv file in windows machine it should automatically reflect in UNIX machine.
    2. If user enter some data in windows csv files then it should be reflect in UNIX csv files automatically
    3. Now I want to connect my OWB with these UNIX csv fils. my csv files are in /home/oracle.source directory.
    Regards
    Frnd

    Let me give an insight of how it works for me:
    1. A CSV file is created in unix at a specified location.
    2. Using ULTRAEDIT software(installed on windows client) FTP is configured to access the unix server.
    3. Open the file stored in unix through ULTRAEDIT from windows.
    4. MAKE changes to the file from ultraedit in windows.
    5. SAVE it and close ULTRAEDIT.
    The changes will be automatically reflected in unix without having the need to FTP it.
    OWB accesses the CSV file from unix and does further processing.
    Not sure if OPs can do this but this is probably the easiest way of achieving what he wants and this approach works very well for me.

  • Extract Single Tone Information using Flat Top Windowing

    Beginner here - Does anyone have any ideas on what would be the easiest way to create a function that would essentially perform the same function as the built in "Extract Single Tone Information.vi" only that instead of using Hanning windowing (as I noticed that this Vi does) I would be able to use Flat Top (or selectable windowing)? I basicly need to set something up that will accept an incoming Sine wave and apply FFT using Flat Top windowing then output the measured frequency and the amplitude of that frequency. I need to still be able to input the "advanced search" criteria into the VI and give it a frequency and tolerence to look for as I don't want to just look for the peak signal but at specific frequencies. 

    I am running Labview 7.1.1 (that's what my company uses and they refuse to upgrade). I can't open files built under anything newer than LV7.1.1.
    I really don't want to just do a peak search of the entire spectrum and would rather enter a specific frequency to look for and the tolerance window (find peak at say +/- 2% tolerance away from known recorded frequency. This test is targeted as a production test we will be shipping to several parteners around the world to use in production. This will be a test fixture to perform testing on electret boom microphones. The fact that it will be used in a production environment there is potential for high levels of background noise (radios, floresent lights, people talking, etc) and therefore I need as much filtering as possible to only the frequency i am trying to measure. I will be outputting a specific frequency from a speaker and recording it back through the microphone under test via a NI USB-6211 DAQ.
    Can anyone tell me if "Extract Single Tone Information fron Hann Spectrum.vi" has anything in it which would limit me to only inputting a Hann windowed FFT into the signal input of that VI? This is the VI which is password protected in my 7.1.1. copy of Labview. If it doesn't and I could feed it a Flat Top windowed FFT signal into it without problem I am golden. I can modify the other sub-vi ("FFT with Hanning") and the main "Extract Single Tone Information 1CH.vi".
    Thanks for you continued input. 
    P.S. I am fairly new to Labview (<2yrs)

Maybe you are looking for

  • Thinkvanta​ge Toolbox icon on the Windows Task Bar

    I have tried removing the Thinkvantage icon from the task bar; but it returns when I reboot.  Am I missing something?

  • XI Errors

    Hello, We have a requirement to map the XI error to response. for eg XI Error: <SAP:Error><SAP:Category>Application</SAP:Category><SAP:Code>MAPPING.EXCEPTION_DURING_EXECUTE</SAP:Code><SAP:P1>com/sap/xi/tf/_</SAP:P1><SAP:P2>com.sap.aii.utilxi.misc.api

  • Progress Indicator usage, examples....

    Hello All, I was messing around with the progress indicator UI. It seems as if I can't get it to behave how I want. In my example, I am loading some records into the context. (The backend call has already been made and everything is sitting in the ca

  • How can I mount a Raid set (partition in an external drive)?

    Hi, I have 3 partitions in my external drive. I tried to create a concatenated Raid from 2 of the partitions. However, I end up with an offline Raid Slice (one of the partitions is under this slice) which is grayed out in Disk Utility. When I try to

  • Illustrator 10 rectangle tool

    G4 10.4.11 I am not able to find the rectangle tool. I have reinstalled Illustrator twice. In the tool palette, there are 3 blank squares. I have attempted to use Grab to take a screen shot of the tool palette but it disappears when I launch Grab. Wo