File name display

I could have sworn that I have used a setting in idvd that displays the file name along with the picture in a slideshow. Now I cant find this feature. I'm using idvd 6. Help?
Chas

Chas,
I'm not an iPhoto user, and my comment was based on simple bringing some photos into iDVD from my desktop.
I just did some experimenting and found that:
If your images are in an iPhoto album with title and caption information AND IF you bring the images into an iDVD slideshow from the Media>Photos>iPhoto tab, the information IS imported and will show if you have selected to do so by clicking on the Settings button in the slideshow workspace.
Sorry for the confusion.

Similar Messages

  • Image File Name Displayed

    Hi, I’m new to Numbers and would like to know how to automate a text feild so when a JPEG is position ed the text field automaticly displays the JPEGs file name. I need this for my invoices because I have to document my work with a JPEG (Graphic Design). Any help out there?

    (1) If you inserted a picture out of a table, you may get its filename thru Inspector > Metrics > File Info
    (2) If you inserted the picture in a cell, you can't get info from the Inspector.
    In both cases there is no way to automatically insert the file name in a cell.
    Given that, I quickly wrote a script doing the trick.
    --[SCRIPT insertPictureWithName]
    Enregistrer le script en tant que Script : insertPictureWithName.scpt
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    sélectionner la ou les cellules où insérer une image et son titre
    menu Scripts > Numbers > insertPictureWithName
    Choisir un fichier image dans le dialogue Choose File
    Le script ouvre le dossier contenant le fichier sélectionné
    copie celui-ci dans le presse-papiers
    insère le nom dans la table pointée
    colle l'image dans la cellule pointée.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    --=====
    Save the script as a Script: insertPictureWithName.scpt
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select the target cell(s)
    menu Scripts > Numbers > insertPictureWithName
    Select a picture file in the Choose File dialog
    The script opens the folder containing the file
    copy it in the clipboard
    insert its name in the table
    paste the picture in the target cell.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2010/05/23
    --=====
    on run
    GUI scripting must be active
    my activateGUIscripting()
    Get infos about the target cell(s)
    set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    Choose a picture file which may be : Jpeg, Png, Tiff, Pict, Pdf, Bmp, Gif
    set thePict to choose file of type {"public.jpeg", "public.png", "public.tiff", "com.apple.pict", "com.adobe.pdf", "com.microsoft.bmp", "com.compuserve.gif"} without invisibles
    tell application "Finder"
    set PictName to name of thePict -- grab the picture's name
    open (container of thePict) -- open the folder containing the picture
    select thePict -- select the picture
    end tell
    my raccourci("Finder", "c", "c") -- copy to the clipboard
    tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
    Define the coordinates of the cell to store the picture's name
    if (not colNum1 = colNum2) or (not rowNum1 = rowNum2) then
    set rr to rowNum2
    set cc to colNum2
    else
    if colNum1 = (count columns) then add column after last column
    set rr to rowNum1
    set cc to colNum1 + 1
    end if
    Insert the picture's name
    set value of cell rr of column cc to PictName
    set selection range to range (name of cell rowNum1 of column colNum1)
    end tell
    my raccourci("Numbers", "v", "c") (* Paste the picture *)
    end run
    --=====
    set { dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
    on getSelParams()
    local r_Name, t_Name, s_Name, d_Name, col_Num1, row_Num1, col_Num2, row_Num2
    set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
    if r_Name is missing value then
    if my parleAnglais() then
    error "No selected cells"
    else
    error "Il n'y a pas de cellule sélectionnée !"
    end if
    end if
    set two_Names to my decoupe(r_Name, ":")
    set {row_Num1, col_Num1} to my decipher(item 1 of two_Names, d_Name, s_Name, t_Name)
    if item 2 of two_Names = item 1 of two_Names then
    set {row_Num2, col_Num2} to {row_Num1, col_Num1}
    else
    set {row_Num2, col_Num2} to my decipher(item 2 of two_Names, d_Name, s_Name, t_Name)
    end if
    return {d_Name, s_Name, t_Name, r_Name, row_Num1, col_Num1, row_Num2, col_Num2}
    end getSelParams
    --=====
    set {rowNumber, columnNumber} to my decipher(cellRef,docName,sheetName,tableName)
    apply to named row or named column !
    on decipher(n, d, s, t)
    tell application "Numbers" to tell document d to tell sheet s to tell table t to return {address of row of cell n, address of column of cell n}
    end decipher
    --=====
    set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
    on getSelection()
    local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
    tell application "Numbers" to tell document 1
    repeat with i from 1 to the count of sheets
    tell sheet i
    set x to the count of tables
    if x > 0 then
    repeat with y from 1 to x
    try
    (selection range of table y) as text
    on error errMsg number errNum
    set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
    return {theDoc, theSheet, theTable, theRange}
    end try
    end repeat -- y
    end if -- x>0
    end tell -- sheet
    end repeat -- i
    end tell -- document
    return {missing value, missing value, missing value, missing value}
    end getSelection
    --=====
    on parleAnglais()
    local z
    try
    tell application "Numbers" to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    on decoupe(t, d)
    local l
    set AppleScript's text item delimiters to d
    set l to text items of t
    set AppleScript's text item delimiters to ""
    return l
    end decoupe
    --=====
    on activateGUIscripting()
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true (* to be sure than GUI scripting will be active *)
    end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
    local k
    tell application a to activate
    tell application "System Events" to tell application process a
    set frontmost to true
    try
    t * 1
    if d is "" then
    key code t
    else if d is "c" then
    key code t using {command down}
    else if d is "a" then
    key code t using {option down}
    else if d is "k" then
    key code t using {control down}
    else if d is "s" then
    key code t using {shift down}
    else if d is in {"ac", "ca"} then
    key code t using {command down, option down}
    else if d is in {"as", "sa"} then
    key code t using {shift down, option down}
    else if d is in {"sc", "cs"} then
    key code t using {command down, shift down}
    else if d is in {"kc", "ck"} then
    key code t using {command down, control down}
    else if d is in {"ks", "sk"} then
    key code t using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    key code t using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    key code t using {command down, shift down, option down}
    end if
    on error
    repeat with k in t
    if d is "" then
    keystroke (k as text)
    else if d is "c" then
    keystroke (k as text) using {command down}
    else if d is "a" then
    keystroke k using {option down}
    else if d is "k" then
    keystroke (k as text) using {control down}
    else if d is "s" then
    keystroke k using {shift down}
    else if d is in {"ac", "ca"} then
    keystroke (k as text) using {command down, option down}
    else if d is in {"as", "sa"} then
    keystroke (k as text) using {shift down, option down}
    else if d is in {"sc", "cs"} then
    keystroke (k as text) using {command down, shift down}
    else if d is in {"kc", "ck"} then
    keystroke (k as text) using {command down, control down}
    else if d is in {"ks", "sk"} then
    keystroke (k as text) using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    keystroke (k as text) using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    keystroke (k as text) using {command down, shift down, option down}
    end if
    end repeat
    end try
    end tell
    end raccourci
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) dimanche 23 mai 2010 11:29:06

  • File name display in delete dialog box

    In the course of working with photos in Lightroom, I've noticed a small user interface issue that can lead to confusion while deleting photos.
    In Explorer, a highlighted file is directly tied to any action selected via right click. For example, if I have file1 selected and I right click on file2, the focus changes to file2 and it is highlighted.
    In Lightroom, the highlight does not follow when an image is selected via right click. If I'm viewing photo1 and it is highlighted, right clicking on photo2 only changes the filename display above the filmstrip.
    Normally, this change in filename display would be sufficient visual feedback to be comfortable while deleting a file. However, if Lightroom is in the process of "Loading..." an image, there is sometimes a delay in the filename display update and more than once, I've had to pause to make sure I'm deleting the proper image.
    I've noticed this most frequently when switching back from Photoshop. If I've opened a Lightroom image in Photoshop (as a PSD) but decided not to move forward with the work, I'll switch back to Lightroom to delete the newly-created PSD. During this process, I'll hit a "Loading..." delay and and the filename display above the filmstrip will lag as I try to right click and delete what I think is the PSD.
    A simple solution, and one that I'd suspect users would appreciate given the value of RAW images, would be to display the name of the file(s) being deleted in the confirmation dialog box. If it's an important enough decision to warrant a multi-option dialog box, I think there's obvious value in confirming what is being deleted.
    Another item that came to mind -- It would be great if there was a preference setting that locked the user from deleting RAW images. That way, I'd never have to worry about selecting a RAW instead of a PSD and it would address some of the anxiety that comes with placing master images so close to PSDs from later in the workflow.

    Hi
    You can not use  File-Upload UI element inside confirmation dialog ,because there is no provision to add any UI ,except Button.
    Please avoid  my previous reply .
    Best Regards
    Satish Kumar
    Edited by: satish jhariya on Mar 3, 2009 11:29 AM

  • Finder file name display

    None of my files in a finder window are arranged in alphabetical order. How can I re-arrange them into alphabetical order? Thanks in advance.

    Arranging by name doesn't seem to list files alphabetically if your view mode is 'columns' - it works in the other modes - does anyone have the same problem and if so how to fix it? Any advice would be much appreciated

  • File Name of Image Displayed in PSE 8 does not match File Path Name in Windows 7

    I recently got a new computer  .I upgraded on my Windows XP computer from PSE 5.0 to PSE 8.0.  I then moved my files to the new computer running Windows 7 following the instructions I received on an earlier post.  I copied the catalog folder and the picture folders on the C drive from the old to the new computer (catalog folder to location specified in System Info;  images to My Pictures).   Everything appears to have worked beautifully without having to go through a big Reconnect struggle.  The organzer appears to have found all of the images and I can bring them up in Editor as well.  However, when I look at the properties of a given image the full file name displayed is what it was on XP, i.e., C:\Documents and Settings\<username>\My Documents\My Pictures\<folder name>\<file name> rather than the path as it is in Windows 7, i.e., C:\Users\<user name>\My Pictures\<folder name>\<file name>.  I am new to Windows 7 so maybe I am missing something unique to Windows 7 but I would appreciate any information.

    You're observing the special folder aliases that Vista and Windows 7 create to preserve backward compatibility (Microsoft keeps changing how and where users' documents are stored).   On Windows 7:
    C:\Documents and Settings\<username>\My Documents\My Pictures
    is a special kind of alias to the folder:
    C:\Users\<user name>\Pictures
    (And C:\Users<user name>\My Pictures is yet another kind of Windows 7 special alias, a "library", that includes the folder C:\Users<user name>\Pictures.)
    Whenever an application like PSE refers to the old location, C:\Documents and Settings\<username>\My Documents\My Pictures, Windows automatically translates that under the covers to C:\Users\<user name>\Pictures.   But Windows Explorer is configured to prevent you from accessing C:\Documents and Settings\ interactively -- only programs like PSE are able to do that.  Microsoft wants users of Windows Explorer to always use the "new" name,  C:\Users\<user name>\Pictures.
    In your case, your catalog contained the old XP folder paths, and Windows is automatically translating them on the fly to the new paths, unbeknownst to PSE.
    Like most such backward-compatibility hacks, this does not work perfectly.  PSE thinks that the old path and the new path refer to two completely different folders.  I'm not positive, but I think there are opportunities for PSE to get confused by that.   When you import new photos, they will get recorded in the catalog under the new folder paths.
    In my previous recommendation for how to move to the new computer, I had assumed that you would most likely be changing user names and photo locations, and thus you would be forced to do a Reconnect, and you wouldn't have encountered this.  If I had thought you weren't going to need a Reconnect, I would have recommended not using this method but rather using Backup/Restore (my first recommended method)  -- my bad.
    It may well be that your current catalog and PSE will work well enough.   But there is at least a small risk that down the road PSE will get confused by the old and new folder names.  The easiest way to avoid that risk would be to start over and use the Backup/Restore method for moving your catalog, whch is more effort on your part.  But because I don't fully understand the risk, I can't tell you whether you should be worried about it.   Definitely do some testing: editing, importing and editing new photos, use Display > Folder Location view, try renaming and moving old photos to new folders, try the Photo Downloader, etc.

  • Displaying File name

    When my clients meet with me, I use the iPod photo functionality to view their photos and make decisions. However, it would make things easier if I knew which photo they liked, amongst a group of similar-posed photos. Using the file name in Bridge makes things easy, but I can't get the iPod to do the same.
    Is there a way to have the file name display over the photo that I'm viewing?
    Thanks!

    When my clients meet with me, I use the iPod photo functionality to view their photos and make decisions. However, it would make things easier if I knew which photo they liked, amongst a group of similar-posed photos. Using the file name in Bridge makes things easy, but I can't get the iPod to do the same.
    Is there a way to have the file name display over the photo that I'm viewing?
    Thanks!

  • Reading file names in the unix box

    Hello,
    I did the following to read the files from the local directory.
    String s1 = "c:\samplefiles"
    File dir = new File(s1);
    if(dir.isDirectory())
    String listoffiles [] = dir.list();
    for(int i = 0; i <listoffiles.length ; i++)
    System.out.println(listoffiles);
    else
    System.out.println("Its not a directory");
    How can i read and print the file names in the unix box?
    Thank You.
    Kumar

    Thank You for the reply.
    In my custom page, i am trying to include a search page which includes date parameters based on which the pdf files in the unix box should be displayed in the page as a list. (The pdf file names start with the date).
    Once the user clicks the file names displayed in the page, i need to open the pdf. This part i can handle but to search the file names based on the parameter names and display in the page as the list is a bit confusing.
    Thank You.

  • How do I print multiple files in file name order

    I'm using Windows XP SP3.  When I select all the PDF files within a folder and right click and print, the files do not come out of the printer in the order of the file names. I have the file names displayed properly in order on the screen, but they seem to printout in thier own order.  This same thing happens on all 6 computers in the office and they all have their own printer.  Also, one machine is running windows 7 and it only allows you to select 15 files max for multiple file printing. Microsoft referred me to Adobe to get help on these two issues. Can anyone help?
    Thanks

    Do I need to purchase a different PDF program other than Adobe?  Does anyone recommend an alternative to Adobe?

  • How can I show the file name of the photo?

    Shouldn't this meda data show load with the photo. When i'm sharing similar photos with people, I would like them to be able to reference a file name.

    Display of filenames is not a current revel feature. Some users have asked for metadata to be displayed and this is on the wishlist for consideration.

  • How do I lose the file name in a portfolio

    Acrobat pro 9.3.2  -  Building a portfolio.  Like the revolve format.  Don't want the file name displayed.  Quite ugly.  Looked into the obvious but cant get rid of it.  Just want my description at minimun but would like to re-tittle the icon.  Any advice?

    Anyone with info on this ? I have just ran into this problem myself, hard to believe there isn't a way to fix this .

  • Using File Name as Watermark

    Is it possible to export a JPEG version of a photo with the file name displayed on the photo? This would be useful for a big proofing job I have. I haven't been able to find any info on this in Aperture support or even any third party software for this purpose in a general internet search. Any ideas? Thanks!

    The free and rather good plug-in BorderFX will allow you to position metadata on top of the image and export as a JPG file.
    If PDF will do, Aperture includes good tools to create contact sheets with metadata. These can be saved as PDFs from the OS X print dialog (i.e.: not the Aperture dialog, on which you format the page, but the next one, from which you actually send the job to the printer).

  • RH8 - Image File Names

    Greetings,
    In a generated project, created in the RH8, when the user hovers over an image, the file name displays. I checked the image properties and Screen Tip text field is empty.
    How can I prevent the image file name from displaying in the generated project?
    Thanks

    Hi there
    When you examine the generated code what do you see? Is there a Title attribute or an Alt attribute? You didn't say what the output type was. Is it WebHelp? If so, did you enable Section 508 options when you generated? (Part of being Section 508 compliant is giving images corresponding names)
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • View file names under images?

    In iPhoto, the titles of all imported images were set to the file names and it was therefore possible to have the file names displayed under every image.
    In Photos, titles can be viewed by selecting View > Metadata > Titles, but all titles are empty on newly imported images. There seems to be an option to view the file name as a separate field, by selecting View > Metadata > Referenced file. However, this option does nothing. But when I search for a file name, the correct images show up, so Photos obviously keeps track of the file names somehow.
    So, how can I view the file names under every image, or import the file names into the titles?

    OK, thanks.
    I dug around a little and this definitely seems to be a bug in how the iPhoto library is converted to a Photos library. iPhoto didn't just display file names under the images. Rather, on import, iPhoto actually sets the image titles to the file names minus the file extensions (e.g. ".jpg"). But those titles, as well as the titles manually set in iPhoto, are not imported properly into the Photos library.
    I located the Photos library database. It's in the library package > Database > apdb > Library.apdb. The file is in SQLite format and can be browsed and edited with e.g. "sqlitebrowser" (http://sqlitebrowser.org/).* In it, I found that there is a table called RKMaster, that holds information about all original images. RKMaster has an attribute called "name" that contains all the original image titles. This is not the same as the file name, which is a separate "fileName" attribute in the same table, which in my case contains the same information as the "name" attribute, but with file extensions.
    Then there is another table, RKVersion. This table contains information about the different versions of all images and this information is the one actually being displayed when you use the application. RKVersion has attributes for "name" and "fileName" as well. In my Photos library, "name" is empty for all my newly imported images, but "fileName" has all the correct file names with file extensions. If I edit the database and insert something in the "name" attribute for an image, the name is then displayed as an image title in Photos.
    I then opened the library file from my old iPhoto library and it has a similar structure. In its RKVersion table, all the "name" attributes are filled out and they contain all the image titles I want to see. So I can conclude that during the conversion from iPhoto to Photos, the "name" attributes were simply not copied over, and that is why all my images now lack titles.
    I will try to find a way to copy this whole column from the iPhoto library into the Photos library, which should solve the problem.
    * Please be aware that editing this file may cause irreversible damage to the library. Make sure there is a backup of the whole library before digging into these files.

  • Open Dialog Box: full file name is not displayed in edit window under Windows 7

    Only the last 16 characters of a file name are displayed in the edit window of a Common dialog box under Windows 7. What is the fix to this problem? I am coding in C/C++ and my compiler is Visual Studio 2005.

    Hi warengharding624,
    Based on your description, your issue is related about C/C++, since this forum is discussing about Windows Forms Controls, and I will move this thread to C++ forum.
    In addition,Could you share us what the type of your project is?
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Opening a new file in photoshopcc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    opening a new file in photoshop cc and the file name is displayed but no white working canvas. you can see it as a layer in the layers panel and if i draw on the grey area i can see int on the layer but not on the main screen.

    Graphics card is the problem.
    Trying to update drivers now.
    Thanks for your help
    john

Maybe you are looking for

  • On my Iphone 4s is no wifi,

    I can not find the wifi. There is only wlan button and no wifi button Who can help me

  • Why does firefox change fonts when I am trying to download or get help, click and enter keys are disabled why?

    I recently did a clean install of windows7 after returning from Europe and installed Mozilla firefox being fed up with microsoft and google . Fire fox seemed to be working ok but 7 out of 10 downloads were failing, and it seemed that every ebsite ent

  • Error syncing applications with ITunes

    Hi all, I have an IPad WIFI 32Gb with the firm 3.2.2 and the new iTunes 10 on a PC computer with windows 7 32b. I am finding a strange problem with iTunes: when I connect the IPad, ITunes is automatically initiated and the sync + backup is initiated

  • Cluster database control showing instances down

    I have created a two node cluster in windows 2k3 x 64bit and therefore cant use my grid control as there doesnt seem to be an agent for it, therefore am using the DBconsole instead. on the welcome window its showing both instances as down, but i know

  • Confused with float and double

    Hi, I have done the following program which is supposed to deal with temperature and scales. import java.math.BigDecimal; public class Temperature {      private float temp;      private char scale;      public static void main(String args[]) {