Inserting a Filename in the Footer

I'd like to add the filename of the Page document that I have created without having to do it manually.
In Word, I can insert automatically a Filename at the bottom of the page.
How can this be done automatically with Pages version 5.0.1?

The Doobie Brothers foretold what becomes of long-term MS Word users.
“What Were Once Vices Are Now Habits”.

Similar Messages

  • Is there a way to automatically insert the filename in the footer of a spreadsheet using iWork's numbers 3.2?

    Is there a way to automatically insert the filename of a spreadsheet into the footer when using iworks numbers 3.2?  iworks 09 had this feature and I can't find this feature in the new version of numbers.

    Hi rhyolite,
    In Numbers 3.x, The Print View and Layout View have gone (for now at least). Page Headers and Footers can only be reached under Menu > File > Print... to open Print Preview. Hover the cursor to reveal the Page Header and Footer fields.
    The only inserts that I can get to work in Print Preview are Page Number, Page Count and Date & Time. Filename is no longer in the Insert menu.
    Regards,
    Ian.

  • How to auto add in pdf filename (shown in footer) by using Java Script?

    In order to have nice tracking a document, I want to print the file name as a header or footer when printing the documents. 
    How can this be done?  
    Found a perfectly nice post related to same issue
     http://forums.adobe.com/thread/302996 
     (Many thanks on every contribuitors inside that posts)  
     In the above post,  found that ##Reinhard had shared some well nice scripts for "enable to put in filename in the footer for every document, just by 1 simple click in each documents"  
    For the time being, 
    if i would like to generate a script that allowing 
    1) Only adding / showning the pdf filename in the footer
    2) Auto Run/Execute on this script for all documents, which means without any click but it will auto showing the "filename at footer" when any document opening.  
    Hope any experts can give a help on this.   
    PS: Currently using Adobe Acrobat 10 & Reader 11 // OS = Windows 7 
    Many thanks ^^

    My code for above method is Floor #2
    var FileNM = this.documentFileName;
    for (var p = 0; p < this.numPages; p++)
    var fd = this.addField("xftDate", "text", p, [30,15, 290,30]);
    fd.textSize=5; fd.value = " (" + FileNM +")";
    It works for me & my PC, however I unable to applied same things into a JavaScript.js file
    Hope any experts could help and advice.
    Many thanks.

  • Inserting a logo into the header and footer

    Hey Team
     I have a workbook with 5 worksheets. On sheet1 I have a button programed to open a new Word document; pull information from fields on 3 other sheets and creates a letter from that data. I have two company logos pasted into sheet5,
    Pic1 and Pic2.
    I want to copy Pic1 and paste it into the header  and copy Pic2 and paste it into the footer of the newly created word document and have them both centered and on all pages.
    As of now I can copy the Pics and paste them into the document body but have had no luck with the header or footer.  Any help is greatly appreciated.   
    Thanks!

    First, when you create a Word doc you should always create it based on a predefined template.  The template has all your corporate styles set etc...VBA code should only be used to insert text.  I almost never use it manipulate anything that can't
    be set in templates.  The templates should already have the logos inserted.
    Set rptDoc = Documents.Add("C:\templates\example.dotx")
    rptDoc.SaveAs fileName:="C:\....................docx", _
    FileFormat:=wdFormatDocumentDefault, AddToRecentFiles:=True
    If you add a picture I recommend adding at it a predefined bookmark in the template.  I do this when adding signatures.  The bookmarks can be in the header.
    Sub SetBkMarkPic(xDoc As Document, xBkName As String, xFile As String)
    ' Set bookmark in document. Add file to bookmark
    If xDoc.Bookmarks.Exists(xBkName) Then
    xDoc.Bookmarks(xBkName).Select
    xDoc.Bookmarks(xBkName).Range.Text = ""
    Selection.InlineShapes.AddPicture fileName:=xFile
    End If
    End Sub

  • Javascript Question - How to Insert a Dynamic/Current Date into the Footer of a Scanned Document

    Hi!
    I am looking for help in finding a Javascript that would allow the insertion of a dynamic/current date into the footer of a scanned document at the time the document is printed.
    I am currently using Adobe Acrobat Professional 8.0 at my work and there has arisen a need to have a dynamic/current date in the footer on scanned documents when they are printed out on different days by different people.
    I am new to the Forum and I am also very new to Javascript and what this entails.
    Thank you in advance for your help and input!
    Tracy

    this.addWatermarkFromText({
    cText: util.printd("mmmm dd, yyyy", new Date()),
    nTextAlign: app.constants.align.right,
    nHorizAlign: app.constants.align.right,
    nVertAlign: app.constants.align.bottom,
    nHorizValue: -72, nVertValue: 72
    Will insert the current Monday/Day/Year as a text watermark at the bottom of every page of a document, 1 inch up and 1 inch in from the right corner.

  • Inserting Filename into Header/Footer

    Hi everyone,
    I'm looking for a way to enter the filename (without the file extension) into the header of my document.  From the research I've been doing it seems the only way to do this would be to write some sort of javascript, or pay for a 3rd party plug-in with a ton of features I'll never need or use.  You would think Adobe would have made this pretty simple to do, it seems I've seen a lot of people asking for it for various reasons.
    Is there a simple way to do it?  Or am I totally out of luck.  I was hoping to be able to do it for batch processing, but I think my options are limited, as it seems the only way might be to write a javascript and insert that into the batch processing process.
    Thanks.

    Yeah I'm looking for a way to do it in batch automaticaly.  I could do it manually but I have potentialy thousands of documents.
    I don't know how to write javascript so would there be an easy way of creating a script?

  • Insert unique sheet names in the 'footer' section

    I have a spreadsheet with 9 separate sheets. Each sheet has 4-6 tables. I have inserted a footer for each sheet. However, I am trying to figure out how to insert the unique sheet name (ie; I have a sheet call TOC, Center 1, Center 2 etc).
    Is there a way to insert the sheet 'name' in the footer, just like I insert page # or page count?
    Thank you.
    Peter

    Hello David,
    Thank you for the directions. You saved my day and hours of feared rewriting. Funny thing was, when I went back and opened up some of the other pages in the site, the meta tags were indeed in the correct spot, exactly where you suggested to put them. Today as I was working, all the pages I opened up added the tags to the top of the code, which was the problem.
    Turns out, I found out why... and this should be taken as a note for everyone that uses design view. If you are working in design view you have no direct access to the head (in only design view), and even though you go to the top menu to add head tags (per DW's instructions), if the actual cursor (in code view) isn't in the correct place it will inserted at the top, line 1. Maybe it was because it was a template, I'm not sure.
    My work flow today was to open a previously created page, and immediately add the tags (using DW's menu). That is all I was doing. So by default, as I watched the process in the split-code view, on the opening of my html page, the cursor was put at the top of the code, and that is where it incorrectly added the tags.
    A bug? Maybe a case where you need to know what is happening behind the scenes when using design view.
    Either way, there was a logical reason and I have learned something new! Thanks for the help, as I keep learning html.

  • File name in the footer

    I'm using RH8 and when I first started the conversion from 5 to 8 I found I could link the footer text so that it was always the same as the topic's file name. I thought to myself 'I'll have to remember how I did that.', needless to say I can't now remember. And can't find the one file I did do it in. I've looked in the help but it doesn't live up to its name.
    Some one jog my memory please.

    Hi,
    It's a variable. Right click, Insert variable. You can set filename, date and time, topic title and your own defined variables.
    Greet,
    Willam
    This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

  • Remove filename header and footer

    Hello! When you open a HTML file in Acrobat it puts the path to the filename in the header and footer automatically. How can I remove this?
    I went to Header/Footer and tried to update or remove, but it says there is no option. How do I do this?
    In another issue, Is there any plugin that will let me "press enter" to move the body of text downwards in the PDF, similar to Microsoft Word? I imported a bunch of company listings from a HTML document and I am trying to space them out 3 to a page and I need to shift the body of text down to the next page break. Is this possible with Acrobat or an affordable program/plugin?
    Kind Regards,
    Kevin

    Have you tried using the Touch Up Text tool for both of your issues?  Touch Up Text will not work in an automated way, but you can use it to manually edit existing text on the page.  Not sure about any plugins that remove headers/footers, although there might be a way in Acrobat's help files that outline how to prevent it from automatically embedding on converted HTML pages from web browsers.

  • How can I insert a table in the header?

    The question is easy: How can I insert a table of one row in the header.
    Thanks in advance.
    Jesús.

    There are multiple versions of Pages in circulation on Mavericks and Yosemite. Telling us which one helps with a more accurate answer.
    If you are referring to Pages v5, then you cannot insert a table into the header or footer, because implicitly, these are table cells too. The discontinued Pages ’09 v4.3 would allow table insertion in the document header/footer fields.

  • HOW DO I ADD A DATE IN THE FOOTER?

    I can not find the INSERT DATE function to add a DATE to the footer of a NUMBER spreadsheet.  How do I do that? 

    Bob,
    Further to Jerry's pointer, see this thread for a description of how you can set up an 'insert date' pick in your menu.
    If you want (thanks to Badunit for showing that this was possible) instead of going through the steps described there you can just grab a copy of the service via this link (automatic download from Dropbox).  When you doubleclick it, you'll be asked if you want to install it. You may have to go to System Preferences > Security & Privacy to click 'open anyway' if you get a warning message.
    That's it. After it's installed it will be a menu pick similar to the screenshot above.
    If you want to rename it, then in Finder hold down the option key choose Go in the menu, navigate to Library > Services and rename it there as you would any other file.
    If you don't like going to the Services menu then assign a keyboard to it at System Preferences > Keyboard > Shortcuts.
    SG

  • Table in the footer

    Hello, I am new to BI Publisher, in fact I am working on my first report. I have the following problem:
    I use MS Word 2007 to build the rtf template. As you know Word doesn't allow fields to be inserted in the header and footer section of the page. So I manually inseted the following code:
    <?for-each:ROWSET3_ROW?> <?FIELD_1?> <?end for-each?>
    There are about 15 rows in the rowset. The above code inserts all of them in 1 column and widens the footer much more than what I would like it to be. How can I modify the code to have the values in 3 or more columns of 5 something like
    value 1 value 6 value 11
    value 2 value 7 value 12
    value 5 value 10 value 15
    George

    Sorry, wrong forum, I will post in BI Publisher forum.

  • Combine csv files and insert source filename

    Newbie powershell question - Need help combining multiple csv files (100+) and inserting a column containing the name of the source file
    ex: 
    Apples.csv
    A,B,C,D
    1,2,3,4
    Oranges.csv
    A,B,C,D
    1,2,3,4
    Desired output would look like this:
    combined.csv
    A,B,C,D,Filename
    1,2,3,4,Apples.csv
    1,2,43,4,Oranges.csv

    I did see a post with something similar to what I wanted to accomplish but it wouldn't work for me since my file names will change and I am not going to create a variable for each file
    $CSV1 = Import-CSV c:\csv1.csv
    $CSV2 = Import-CSV c:\csv2.csv
    $Result = New-Object PSObject -Properties @{
    Field1 = $CSV1.Field1
    Field2 = $CSV1.Field2
    Source1 = "CSV1"
    Field3 = $CSV2.Field1
    Field4 = $CSV2.Field2
    Source2 = "CSV2"
    $Result | Export-CSV c:\Result.csv -NoTypeInformation

  • Applescript to open various files and add info from filename to the file

    Hi guys,
    first time using this forum...
    and first time trying to do a script for apple...
    I figured out how to do simple things... like open files and stuff to text files...  but don't know where to begin:
    I have a directory datalogs...
    within the directory i have multiple text files that have the following format:
    dataXXYYY_Waf2_7_19_11.csv
    dataXXYYY_Waf3_7_19_13.csv
    dataXXYYY_Waf25_7_19_16.csv
    typically 25 files, but sometimes less
    I would like to be able to take each file within the datalogs folder ...
    Scan the file name and look for the number afer Waf
    The number can be anywhere from (single digit) 1 to 25
    I would like to take that value after Waf  and then append a line in the txt file
    the line I would have to add will be 5 rows down and it shoulld say:
    wafer,1 
    the 1 above is the value that was in the file name....
    i.e.
    for the file
    dataXXYYY_Waf25_7_19_16.csv
    before append the file contains random data ... i.e.
    dummyline1
    dummyline2
    dummyline3
    dummyline4
    dummyline5
    dummyline6
    Then after the script...
    the file will be saved with same name:
    dataXXYYY_Waf25_7_19_16.csv
    and the data should look like:
    dummyline1
    dummyline2
    dummyline3
    dummyline4
    wafer,25
    dummyline5
    dummyline6
    any help will be appreciated
    -thanks

    Copy your source folder - named 'datalogs' to your home directory and run this script by copying into a new AppleScript Editor document and pressing Run. 
    I think I've followed your specification, and there will be other ways to do this, but ask if you have questions.  (I have put comments in the code which should explain some of it!)
    There is no error checking, but I have made copies of the original files in the source directory.  (You can comment out the line "duplicate theFile" by prefixing with "--" when you are sure it's working.
    As always, ensure your data is backed-up before proceeding.
    --starts here
    --sets path to datalogs folder
    set theDirectory to (path to home folder as text) & "datalogs"
    set fileNames to {}
    tell application "Finder"
      --gets all the files in the source directory
              set fileList to files of folder theDirectory
      --iterates through the files
              repeat with theFile in fileList
      --makes a duplicate
      duplicate theFile
      --puts the fileName and fileLocation into records in a list of lists
                        set end of fileNames to {fileName:name of theFile, fileLoc:theFile as alias}
              end repeat
      --iterates thru the files
              repeat with theFile in fileNames
      --gets offset of the string "Waf"
                        set WafOffset to offset of "Waf" in (fileName of theFile)
      --trims the name so that it now starts with the character after "Waf"
                        set fileName to text (WafOffset + 3) thru end of fileName of theFile
      --gets offset of the next underscore
                        set UScoreOffset to offset of "_" in fileName
      --stores the desired number by trimming off the end of the file name
                        set fileNumber to text 1 thru (UScoreOffset - 1) of fileName
      --sets up the text to insert by prefixing with "Wafer," and suffixing with return
                        set insertText to "Wafer," & fileNumber & character id 10
      --opens the file with write permission
                        set FileRef to open for access (fileLoc of theFile) with write permission
      --initialise container
                        set fileContents to ""
      --puts first five lines into container
                        repeat 5 times
                                  set fileContents to fileContents & (read FileRef until character id 10)
                        end repeat
      --adds the new text to the container
                        set fileContents to fileContents & insertText
      --adds the rest of the file to the container
                        set fileContents to fileContents & (read FileRef)
      --effectively empties the file
      set eof FileRef to 0
      --writes contents of the container to the file
      write fileContents to FileRef
      --closes the file
      close access FileRef
              end repeat
    end tell
    --ends here

  • Logo in the Footer of the RTF doesn't show in PPT output

    Hello
    I try generate a Powerpoint slide deck with a logo at the bottom of each slide. Therefore I have inserted the picture into the footer of the RTF template.
    When generating the ppt output there is not picture at the bottom of the slides. I played around in Word with different layout options for the picture with the result that now blank pages are being inserted before each slide.
    Which layout options do I have to use to achieve the desired output?
    Does the picture need to have a specific file format (bmp, jpg, gif, png) to get it working?
    Thanks for your help
    Robert

    I'm going from memory since this is done from work, but I believe you have to use semi-complete addresses (IE., 'Chicago' by itself won't work, you need to use 'Chicago, Il.' or 'Chicago, Illinois'. IF the address is for a 'Place' iPhoto knows (and it knows hundreds if not thousands of places) it will pop up and allow you to choose that location. If nothing happens, that probably means iPhoto doesn't know that 'Place' and you need to provide a more complete or more accurate name for it. Like I say, try getting in the habit of using at least a City and State... you can also choose the 'Locate on Map' feature and it will actually show a map of the place and you can Move the Pin to exactly where you want it, choose from Satellite View, Terrain View, Map view, zoom in, out, or enlarge or reduce the area covered by the Pin (the Blue Circle around the pin. Hope this helps...

Maybe you are looking for

  • Backup is turning off my itunes

    when i try updating my iphone when it starts to sync or back up then itunes stops working and the program closes.... help needed cos im a iphone mong. i have the ios4 update and itunes 10

  • Using Crystal Reports with Visual Studio 2008

    I have bin using visual studio 2008 for a while. I have just started using Crystal Report (which came with Visual studio) . I have an Access database connected with 3 tables, the first two table has two test fields and one index field, the third tabl

  • Custom Tag won't display the attributes

    Quick summary: I can't refer to the attributes passed in to by custom tag. I have a .jsf page that is passing two strings. One is from the backingBean and the other is hardcoded. <%@page contentType="text/html"%> <%@page pageEncoding="UTF-8"%> <%@tag

  • Adobe reader 11 installation problem

    Cannot instal Adobe reader 11. Downloader starts, installation files are downloaded, message appears "installation successful", looking at the system control, installed software, surprise surprise no Adobe 11 installed!!! Tried it with Firefox, IE, t

  • Problem of Creating Multiple Communication channels for multiple files

    Hi Everybody I have a very basic doubt but this struck me... For a file-XI-file scenario,if multiple files are coming from same FTP server but with different names then we have to create multiple communication channels for all the files of different