Print document titles in folder

I have a folder full of recipes, 500 of them, and I want to just print the titles out. How?

Are you talking about the filenames of those documents?
Click on the folder and select all the documents (Command + A ) and copy (Command + C).
Then open TextEdit and from the Edit menu select Paste with Style.
This is almost the same as opening a TextEdit window and then choosing, Format: Make Plain Text and then pasting (Command + V) into that plain text document.
Whichever way, this will give you the list of names to print.

Similar Messages

  • How to I remove the prepending on printed Word document titles?

    I want to print out Robohelp projects to Word. In so doing I have chosen Individual Documents so that every corresponding HTML topic (which I've added in the Print Document Content) produces a separate .docx file. While this works well enough, the titles of the documents are prepended with "Chapter_##_". I just want topic ABC to produce an ABC.docx file, not Chapter_01_ABC.docx.
    How do I remove the Chapter_## prepending?  
    Thank you.

    After generating, use F2 to rename the output.
    Sorry but I don't think you can avoid it.
    Please follow this link and submit a feature request.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How do i print out a menu list; I want to print the titles in my iTunes folder

    I want to print the titles in my iTunes folder, can you say how to do it?
    Grab only takes a screen grab.
    Copy and paste won't keep the albums together.
    iTunes album list is too many pages.
    Thanks

    I have found an answer in the finder and dock section which has allowed me to copy and paste into Word or Excel. It has not copied the format of the window, but with some work will let me print the lists:-
    Print a list of files and folders
        184 Views   2 Replies Latest reply: May 28, 2012 10:54 AM by BDAqua                             
            Level 1 (0 points)    jdrescher
    jdrescher May 28, 2012 9:18 AM  
    Dose anyone know an easy way of listing files and folders from a disk? I need an inventory of the names on some ZIP disks.
              Level 10 (171,925 points)     Niel
    Re: Print a list of files and folders     May 28, 2012 10:15 AM    (in response to jdrescher) 
    Find and open the Script Editor or AppleScript Editor in the Applications folder and run the following:
    do shell script "ls -R " & quoted form of POSIX path of (choose folder)
    Copy and paste the resulting text.                                                            (66765)
    BDAqua
    Re: Print a list of files and folders     May 28, 2012 10:54 AM    (in response to jdrescher) 
    You can also get TextWrangler...
    Drag any Folder, even a Whole drive to a new text window & get a list like this...

  • JS scripted needed to add custom text plus filename to file info in document title

    Would greatly appreciate any help with this one...
    JS script to add custom text plus filename to file info in document title
    many thanks

    Super :O)
    I have a folder of say 50 images and I want to run a JS script batch
    example in the document title :  image Nr 81205
    custom text is "image Nr" +  file name "81205"
    activeDocument.info.title =" image Nr" + decodeURI(activeDocument.name);
    would this be correct without seening the file ext
    many thanks

  • Print PDF file from folder using SSIS

    Is there a way in SSIS to print pdf file from folder?
    ANy help much appreciated.

    One method is calling Adobe Acrobat Reader exe from Execute Process Task within SSIS passing the document path as the argument
    The command and arguments will look like this
    http://geekswithblogs.net/JeremyRamos/archive/2013/10/22/print-ssrs-report--pdf-from-sql-server-agent-or.aspx
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Problem Printing Documents - No Doc Flavors Supported

    Hello everybody. I've been trying to implement a print feature in my applications and I've had absolutely zero luck. Basically, I'm trying to print the contents of an html file. However, there are no PrintServices that show up on my machine that support DocFlavors text/html, or even text/plain.
    I searched all over the Internet, but the only tutorials I found involved printing GUI components. I tried putting everything in a JEditorPane and then printing it, but the table is so large horizontally, it runs off the side, so I don't think that route will work.
    I checked IRC, scanned through all of Sun's tutorials and print service API documentation, and even searched around for open source Java word processors so I could check how their print features are implemented, but I can't find anything to help me figure this out. I know there has to be a way, though... or stuff like EIOffice and ThinkFree.com wouldn't be able to work. Can somebody please point me in the right direction?
    Here's the current code I have:
              //display print dialog
              DocFlavor df=new DocFlavor("text/html; charset="+DocFlavor.hostEncoding,"java.io.InputStream");
              PrintRequestAttributeSet attributes=new HashPrintRequestAttributeSet();
              attributes.add(new javax.print.attribute.standard.JobName("NutraSmart Menu",null));
              PrintService[] services=PrintServiceLookup.lookupPrintServices(df,attributes);
              PrintService service=null;
              if(services.length>0)
                   service=ServiceUI.printDialog(this.getGraphicsConfiguration(), this.getX()+50, this.getY()+50, services, services[0], null, attributes);
              else
                   JOptionPane.showMessageDialog(getContentPane(),"No print services could be found to print this menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                   nutrasmart.debug(nutrasmart.ERROR,"Could not find any services to print menu");
              //print menu
              if(service!=null)
                   try
                        //create temporary HTML file to print from
                        File tmpfile=File.createTempFile("nsmenu",".html");
                        tmpfile.deleteOnExit();
                        String tmpfilestr=tmpfile.getPath();
                        export_HTML(tmpfilestr);
                        FileInputStream tmpfilestream;
                        try
                             tmpfilestream=new FileInputStream(tmpfilestr);
                        catch(FileNotFoundException e)
                             JOptionPane.showMessageDialog(getContentPane(),"A problem was encountered while preparing the menu to print.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                             return;
                        //print document
                        DocPrintJob pj=service.createPrintJob();
                        Doc doc=new SimpleDoc(tmpfilestream,df,new HashDocAttributeSet());
                        pj.print(doc,attributes);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(getContentPane(),"There was a problem with printing the menu.","Error printing menu",JOptionPane.ERROR_MESSAGE);
                        nutrasmart.debug(nutrasmart.ERROR,"Error printing file",e.getMessage());
              }

    Really we have a crazy font management.
    We have more than 9000 fonts in the /Library/Fonts
    To avoid conficts between the the installed system fonts and the Document font folder, we don't use the document font folder, so that we use always the /Library/Fonts/ fonts installed. Anyway some time ago we also used the Document Font folder and we got the same problem.
    I think that your idea about closing the document before the printing process has been finished is very interesting. What I do is :
    doc.print(print_preset);
    doc.close();
    But I don't how can I test if the document is being closed before finishing the printing process.
    Regards

  • How can i use only black cartridge for printing documents

    i have today installed hp 1510 all in one printer, it uses ink from the both cartridges i just want to use black ink for printing documents, how can i do that
    This question was solved.
    View Solution.

    Hi @sandeepv 
    I can help you with your print settings, so the printer will print black and white only.
    If you have a Mac operating system, use the instructions below.
    Printing with the Black Print Cartridge Only option
    Click File and then click Print.
    Make sure your printer is selected.
    Verify that the Preset option is set to Standard.
    In the Copies & Pages menu, select Select Paper Type / Quality.
    NOTE:If this option is not available, click ColorSync. Then click the down arrow beside Quartz Filter and change the setting from None to Black & White.
    Select the Paper tab.
    From the Color option menu, select Grayscale.
    Select the Color Options tab.
    Select the Black Print Cartridge Only option.
    If that option is not listed, then it is not available. The printer will print using only the black cartridge, however, printing with one cartridge will be slower than printing with both cartridges.
    NOTE:To save the setting, click the arrow next to Preset and select Save As. Save the Preset option as Black Cartridge Only and then click OK. Then, the next time you want to print with just the black cartridge, select the Black Cartridge Only Preset.    -Source
    If you are using a Windows operating system, use the instructions in the following link. Although this document is titled Changing Print Settings in Windows 8 it can be used for other Windows operating systems. The navigation from Windows 8 to older Windows operating systems would vary, please let me know if you are using a different operating system and/or if you require additional assistance.
    I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Printer Queue - How can I hide print job title and username?

    Hi,
    Does anyone know if it is possible to hide print job title and username in the printerqueue?
    Because of our privacy agreement we would like to hide this information, 
    Workstation OS: Windows 7 x64 
    Printserver : MS 2008 R2
    Thanks in advance
    Mark

    Not the user name but the job name is changed to Print Document when the print jobs are sent to Server 2012 and 2012R2.
    There is no Windows feature like this in 2008R2.  There are third party products that include job rename features for 2008R2
    Alan Morris formerly with Windows Printing Team

  • Word styles not appearing in Print Document Appearance dialog

    My custom list styles in Style Mapping.dot are not appearing in the Print Document Appearance dialog when I try to map CSS styles to Word styles.
    The styles do appear in the template when I open it in Word. They appear in the styles task pane whether I select "In current document" or "In use" in the Style Pane Options dialog in Word. The styles have the same name (such as "Bullet" or "Number") in Word as the CSS styles in RoboHelp.
    I tried saving Style Mapping.dot as .dotx, thinking that RoboHelp 8 might work better with the current template type, but no help. I tried adding the template to the same folder as the Normal.dotm template is in and opening it there. No improvement.
    Oddly, the built-in Word styles List, List 2, & etc and List Continue and its series appear in the Robo dialog, but the styles List Bullet and others in that series do not appear.
    I suppose I could modify the list styles that do appear in Robo and map them to my CSS list styles, but that feels a bit like a desperate kluge.
    Does anyone know what might be wrong, either with my Word template or with Robo, that might be causing what seem to be perfectly good Word styles to not present themselves for mapping?
    Thanks again,
    John

    Peter,
    I think your discussion of this problem could explain the situation and propose a workaround more simply than it does.
    Based on your article, I assumed that Robo displays only the built in Word list styles such as List and List Continue (since those were the only styles showing up in the style mapping dialog and since your example shows matching a Robo style named List Mapping to a Word built in style named List). I assumed I would have to match my Bullet style to a style named List in Word, and match the indented bullet style to List 2, and so on. The actual situation is that Robo, for some godforsaken reason that only idiots would understand, will not show a Word style if any numbering (bullets or numbers) is applied to it. That is, one does not have to avoid a class of styles called “List styles”, one only has to avoid applying numbering to the styles until later.
    Thus the workaround is to create the word styles (with names that match the Robo styles!) that contain every attribute you need EXCEPT the numbering. That is, I can link Bullet to Bullet and Number to Number and Indented Number to Indented Number, and so on and on, as long as I have all the Word styles in the template with their numbering set to None.
    Then after I generate the document, I can modify the styles to add the appropriate numbering, and voila!
    Currently scrolling the doc & modifying styles. Might be a glimpse of daylight.
    John
    From: Peter Grainge [email protected]
    Sent: Thursday, October 13, 2011 8:47 AM
    To: John Dawson
    Subject: Word styles not appearing in Print Document Appearance dialog
    Re: Word styles not appearing in Print Document Appearance dialog
    created by Peter Grainge<http://forums.adobe.com/people/Peter+Grainge> in RoboHelp - View the full discussion<http://forums.adobe.com/message/3969382#3969382

  • Setting chapter font in printed document

    When I create printed documentation, the font used for the
    chapter title is the same as the font used for the titles of the
    topics in that chapter. I'd like the chapter title to be in a
    larger font, but I can't find a way to set it. How do you set the
    font of the chapter titles in the printed documentation?
    I'm using RoboHTML 6.0.

    When RH generates the printed document it will apply Heading
    1 to the chapters, nothing you can do about that.
    It will also apply headings in your topics as you have set
    them out so the topic title will also be Heading 1. You can clear
    the Maintain HTML level check box in which case all headings in the
    source will be bumped down 1. So Heading 1 in source will be
    Heading 2 in Word. Knowing that, you can adjust your styles
    accordingly.
    Take a look at the topic on Printed Documentation on my site.

  • Prompt For Document Title as well as file name

    Is there script or setting which requires the entry of document title as well as file name upon the saving a document? I understand that I can open document properties prior to saving, but I would prefer to enter the save command and be prompted to enter a doucment's title as well it file name. Thanks.

    You can use the Prefix field to include things like "Dr.", and this will appear on the label.
    I do not see any automatic way to include Job Title, but if you don't have too many to print you can do a kluge by putting the job title in the first line of the addres, then return, then the real first line.  This will print nicely.  But is work putting it in.

  • Document Title field is empty in Dreamweaver

    Suddenly ANY page (even old ones) i open in DW CS4 has an empty field in Document Title. Putting any text inside of it doesn't affect anything, however in Source Code and Page Properties there's a correct doc.title, and in the browser it shows as well.
    i've made a screenshot .

    Murray *ACP* wrote:
    Since there are several strange symptoms, I'm thinking a reinstall is a good idea.
    Reinstalling might be the solution, but before doing so, read the following: http://forums.adobe.com/thread/530874.
    In fact, just deleting the Dreamweaver personal Configuration folder might do the trick.

  • Robohelp-issue in generatings printed document

    Hi,
    I have installed the trial version of Robohelp9. It was working well till friday.I have included some topics today and tried to generate the printed output. But I got the below error and system crashed. Then again i have to open the robohelp project. but when i generate the webhelp file, its working fine.
    but in 'Single Source Layout', when i select the 'Printed Document' option ->right click-> select view it gave the following message.
    Please guide me on this.

    hi,
    Sorry its not possible to share the word document.I generated the new project with the same contents but still the same. I just checked the !SSL folder but it contains the ie files. (please refer the below image)
    Thanks.

  • Not convert pagetitles to Heading 1 in Print Document

    I am still very new to Adobe RoboHelp 7. I converted my
    webhelp to Word.
    In all my topics, I start a page with h1, h2, or h3 headings.
    I do not need to export the page titles to the print document. How
    can I prevent this needless conversion?

    The problem I had with "duplicate" headings arose because I
    am learning RoboHelp 7 by trial and error. I noticed that when I
    promoted a topic to the so-called book level, I could no longer
    open the topic in the editor from TOC. So I inserted another copy
    of the topic in the TOC just below the book. Therefore, I got extra
    headings when I exported the webhelp to MS Word. I am eliminating
    this problem now on my own.
    I notice that the page titles occur in the header part of the
    HTML topics, not in the body part. Therefore, when a page is
    produced in webhelp, only the text beginning with the first heading
    appears. So I have a non-problem.
    Sorry to bother you. Have a restful weekend.
    By the way, when I opened your webpage, I did not see where I
    could leave email.

  • Changing Document Titles in PHP

    I am having trouble editing document titles. I'm using PHP,
    and the template was designed by a developer so I'm hesitant to
    change it. The template doesn't even have a title, so I'm unsure as
    to why I'm not able to edit the individual pages. The title
    changes, but when I click to save, it reverts to the original
    title. Help!
    www.lightworkseminars.com

    >I'm changing the document title in the page properties.
    >Just to clarify, I'm not talking about the title tag.
    That part is fine.
    >Print this message
    You are changing the document title but you're not talking
    about the title tag? What are you talking about then?
    You need to view the page source as rendered in the browser.
    It has extra title and other tags in the body, and fails
    validation. We can't see the php code so we don't know how the page
    is assembled. I guessing it's using some php includes to pages that
    are not constructed properly. If you paid someone to do this for
    you then you should go back to them and have them fix it, since it
    is very screwed up. You also mention templates but I don't see any
    DW templates used on that page.

Maybe you are looking for