Change Xcode default document name?

Hi guys,
I have a document based Core Data project here and I dislike the fact that that when I go "Save As" it says "Untitled". How can I change this?
Thanks,
Ricky.

Thank you for replying.  However, the reply is about adding a comment to a PDF, not the author of the PDF document itself. 
The Author is seen by opening up the PDF file itself, and then File > Properties.  You can see a screen shot below. 
When this pop-up screen is open, you can manually change the name of that author for that one document.  However, I can't figure out how to change the name that Adobe uses by default (for example, I want the Author to be just my first name, not the entire name I used when I installed the product (which is what I changed it to for this one document)). 
How do I change the default Author name?
Thank you
Jason

Similar Messages

  • "Untitled" as default document name for new documents

    I have one installation of Adobe Illustrator CS2 in a Mac with which I have the following problem:
    Whenever I go to File->New, to create a new document, the default document name is blank, and it should be "untitled".
    Is there a way (without reinstalling) to correct this? (turn the default blank document name to "untitled" default document name, for new documents)
    Thank you.
    Juan Poniachik

    On what Mac? If it's on a new Mac with Snow Leopard, I would guess it is one of those compatibility issues of new OS vs. legacy software. If so, you can't change any of that. Other than that I can only think of trying to edit the document templates...
    Mylenium

  • Bug in list binding editor - change to default iterator name doesn't take

    JDev 10.1.3.2
    Not sure anyone has reported this...
    1. Drop a View Object onto my jspx as an ADF Form
    2. Delete one of the inputs.
    3. Drop the attribute (for the deleted input) as an adf select one choice
    4. Hit the "Add..." button next to the List Data Source
    5. In the Add Data Source dialog, choose the appropriate list source view object.
    6. In the Iterator Name field, change the default iterator name with one of your own choosing. (Mine went from something like "MyViewObjectIterator" to something like "MyViewObjectIteratorForThisField".)
    7. Hit "OK" in the Add Data Source dialog
    8. The new iterator is now in the List Data Source drop down, but it did not get the new name.
    Yes, one can easily work around this by editing the page def file.

    Hi,
    good catch. Though it can be changed in the PropertyInspector after that it means more refactoring needed than if it worked in the binding dialog. Will file it as a bug
    Frank

  • Default document name

    Is there any way to change the default name of a document when you open a blank document. What I am trying to do is have my documents save in as a sequential number without Untitled in front of it. So the third document I save would be "0003" and the 50th would be "0050". Is there a way to do this without buying some sort of document management software? Maybe automator?

    Here is a script for user template.
    --[SCRIPT openAndNameWithAnumber]
    Enregistrer le script en tant que Script, Application ou Progiciel : openAndNameWithAnumber.xxx
    déplacer le fichier créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Pages:
    Il vous faudra peut-être créer le dossier Pages et peut-être même le dossier Applications.
    menu Scripts > Pages > openAndNameWithAnumber
    crée un nouveau document à partir du modèle personnel prédéfini
    et renomme le document avec un nouveau numéro.
    --=====
    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 Script, Application or Application Bundle: openAndNameWithAnumber.xxx
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Pages:
    Maybe you would have to create the folder Pages and even the folder Applications by yourself.
    menu Scripts > Pages > openAndNameWithAnumber
    will create a new document from the defined user template
    and name it with a new number.
    --=====
    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)
    16 juin 2009
    property theApp : "Pages"
    property theExt : ""
    property myTemplate : "ma_facture.template"
    property fichierNum : "le_numéro.txt" (*
    Adapter à vos besoins
    Put your preferred title *)
    --=====
    on run
    if theApp is "Pages" then
    set theExt to "pages"
    else if theApp is "Numbers" then
    set theExt to "numbers"
    else
    if my parleAnglais() then
    error "The application “" & theApp & "” is not supported !"
    else
    error "L’application « " & theApp & " » n’est pas gérée"
    end if
    end if
    set {p2myTemplate, numero} to my prepare()
    set numero to text -5 thru -1 of ("0000" & numero) (* pour numéro de 5 chiffres *)
    set UNTITLED_loc to my getLocalizedFrameWorksName(theApp, "Untitled")
    tell application theApp --"Numbers"
    activate
    try
    close document UNTITLED_loc
    end try
    end tell -- to Numbers
    tell application theApp --"Numbers"
    activate
    open p2myTemplate
    set theDoc to numero & "." & theExt
    set name of document 1 to theDoc
    end tell
    end run
    --=====
    on getLocalizedFrameWorksName(theApp, x)
    local p2bndl
    set p2bndl to (path to application support as text) & "iWork '09:Frameworks:SFApplication.framework:Versions:A:Resources:"
    set x_loc to my getLocalizedName(theApp, x, p2bndl)
    return x_loc
    end getLocalizedFrameWorksName
    --=====
    on getLocalizedFunctionName(theApp, x)
    local p2bndl
    set p2bndl to (path to application support as text) & "iWork '09:Frameworks:SFTabular.framework:Versions:A:Resources:"
    set x_loc to my getLocalizedName(theApp, x, p2bndl)
    return x_loc
    end getLocalizedFunctionName
    --=====
    on getLocalizedName(a, x, f)
    tell application a to return localized string x from table "Localizable" in bundle file f
    end getLocalizedName
    --=====
    on prepare()
    local d1, d2, p2d, templatePathAsAlias, p2n, n
    tell application theApp
    set d1 to localized string "Templates" (* nom local du dossier "Modèles" *)
    set d2 to localized string "My Templates" (* nom local du dossier "Mes Modèles" *)
    end tell -- theApp
    set p2d to (path to application support from user domain) as Unicode text
    set templatePathAsAlias to p2d & "iWork:" & theApp & ":" & d1 & ":" & d2 & ":" & myTemplate & ":"
    set p2n to templatePathAsAlias & fichierNum
    try
    set templatePathAsAlias to templatePathAsAlias as alias
    on error
    if my parleAnglais() then
    error "The template “" & templatePathAsAlias & "” is unavailable! Please make sure the template file “" & myTemplate & "” is installed in Numbers' templates folder, then rerun this script."
    else
    error "Le modèle « " & templatePathAsAlias & " » est introuvable! Veuillez installer le fichier modèle « " & myTemplate & " » dans le dossier « Modèles:Mes modèles » de Numbers avant de relancer ce script."
    end if
    end try
    tell application "System Events"
    if not (exists file p2n) then
    make new file at end of f with properties {name:fichierNum}
    write "100" to file p2n (* mettez le numéro de départ de votre choix *)
    end if -- not…
    end tell -- System Events
    set n to read file p2n
    set n to ((n as integer) + 1) as text
    write n to file p2n starting at 1
    return {templatePathAsAlias, n}
    end prepare
    --=====
    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
    --=====
    --[/SCRIPT]
    Yvan KOENIG (from FRANCE mardi 16 juin 2009 19:53:51)

  • Changing the default file name while saving the PDF interactive form

    Hi All,
    I am generating an Interactive PDF form using webdynpro, but when I try to save the PDF to my local machine the default file name comes as "<b>unknown.pdf</b>" so I have to manually go and enter the name before saving it.
    Is there any way to change this default name so that I don't have to manually edit the file name each time when I want to save the generated PDF interactive form?
    Please reply soon.
    Thanks in advance!

    I am running into the same issue. Setting the desname parameter (e.g. desname=temp.pdf) doesn't have any effect. Has anyone found a solution to this?
    Thanks,
    Brian

  • Changing the default domain name of the server.

    I know this is not the correct title for the topic. but its the best word i could found on my voculabary.
    here's my problem.
    Im using Sun App Server 9. the server is installed in the local machine. for testing purposes client access from the local server is sufficient. I deployed a web service using net beans 5.5. My problem is that the WSDL file is generated (by server) uses a fully qualified domain name rather than localhost. for example it uses http://mlb.stdmlb.sliit.lk:8080. When i try to create a client using netbeans it tries to access the server using this address (the one in the WSDL) but the firewall denies access to port 8080. Therefore i want to use the server to use localhost rather than the long domai name. (at least http://mlb) Can anyone tell me how to configure this?
    Lahiru

    These are the steps for changing domain name & IP address without reinstall
    a) Stop the Gateway and Server .
    b) Export the profile server database to a flat ldif file:
    # /opt/netscape/directory4/slapd-host_name/db2ldif /temp/profile.ldif
    c) Use awk, perl, or vi, to change every instance of the system domainname in the ldif file to that of the new system.
    d) Import the edited ldif file into the profile server on the new machine:
    # /opt/netscape/directory4/slapd-/ldif2db -i /temp/profile.ldif
    e) edit etc/opt/SUNWips/platform.conf and change all the domain name & Ip address
    f) edit /etc/opt/SUNWips/properties.file change the domain name
    g) Start the platform server and gateway on the new machine.

  • I need to change the default network name on my iMac

    I recently changed routers and my iMac keeps trying to join the "default" net work as it did in the past.  That is no longer working and I need to have the default changed to the name of the new network.  It keeps trying for some time (meanwhile I am not connected to the internet) and eventually the computer finds the name of the new network that works and after a long wait it works. 

    Open System Preferences > Network > Wi-Fi (or AirPort) > Advanced, and remove your old network from the list of preferred networks. Your computer won't try to connect to the network anymore, and it will only connect to your new router

  • Changing Pages Default Document

    Whenever I try to save a Pages document in Mountain Lion it always defaults to 'iCloud' I would like to change it to a folder on my local disk. When I make the selection on my hard disk, it always reverts back to iCloud when I try to save the next document.

    The title of your topics lead me to think you were going to ask about changing the settings of a default new document. But you're asking about the default save location. You have a couple of options:
    1. Uncheck Documents & Data in System Preferences > iCloud
    2. Launch Terminal & paste in this line. I have found it stops working after awhile & you need to repeat the process.
    defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false

  • How can we change the default site name to custom title in sharepoint desginer from email

    i have a site name human resource
    i am using sharepoint desginer workflow to send alert on a list
    it is giving from email as site Name "Human Resource"
    i want to change from title of it to the some custom name like HR Customer care
    rather then site name
    MCTS,ITIL

    I don't think this's possible OOB but there is a codeplex freeware tool you can install and change Sender address as you wish. 
    Here it's: Change Address
    Hope this helps!

  • How do I change the default bookmark name for my iWeb site?

    I'm not sure where the label is coming from that automatically appears as the bookmarked name for my iWeb site and I want to change it.

    I found my answer in the archived discussion "Bookmarking my site". It worked - thanks!

  • Change default document size in PDF

    The default document page setting in my PDF is set as 36"x24". I am not able to print the same in A4 even after making it ti fit to A4. ANy solution to change the default document size to A4

    CreatePDF, perhaps?  Try the forum at http://forums.adobe.com/community/createpdf

  • Is there a way to change the export default file name

    I have a request to change the default file name when doing a pdf export of a report. By deault, when pushing the export to pdf button, the name is NONAME.pdf. They want the default name to be the channel name is displayed on the report.
    Is there an easy way to do this, or will I have to load all new code into the export button?

    What you'll probably want to do is create a script that uses the Call Report.Sheets.ExportToPDF function and programatically specify the name.  From here, you could set it as one of the function buttons or even include it on the toolbar if you'd like.
    Jesse S.
    Applications Engineer
    National Instruments

  • Change default short name

    When adding new users to OD ldap creates a default short name that is then used as the default user name for several network services. Other short names can be added and edited, but the default is greyed out. Is there any way of changing the default short names?

    you can edit the shortname in a number of ways. from workgroup manager, enable the details table, and you can edit the records manually.
    you should also be able to edit record attributes via dscl on the command line.

  • Change default image names

    I'm not finding much regarding the new iOS with this question. We have the need to change the default photo name to date and time stamps on the iPhone 4S.. using the lates iOS... is this possible?
    I'm not seeing any way to change image names at all on the phone.
    Thanks.
    Jill

    Click on the image and then do Command+I (Get Information). Where it says 'Open with Preview', change it in the drop-down menu to 'Photoshop' and underneath than click on the button 'Change All'. All images of that type will now open in Photoshop.

  • Change default approver name in ESS leave request

    Hi,
    Please help me..
    I am creating leave request Workflow.
    When i go to ESS and try to create Leave Request, ESS already defaults the Approver, and its in display mode only.
    I see the F4 help in Approver field and when i try to select from F4 help, it does not take new value. It's still the same value as it was default to initially.
    How can i use F4 help and change the default approver name?
    Can anyone please help me...I dont know where the things are missing.
    Thanks in Advance
    Shipra

    Thank you all for your reply..
    When i changed the configuration, now its allowing me to change the approver while submitting the leave request.
    But now it also allows me to enter my user id itself to approve the request
    Is there a way that system allows you to enter only your immediate supervisor or supervisor of the supervisor and so on?
    Please help thanks.
    .shipra

Maybe you are looking for