How can I add to the options automatically appearing in Get Info window?

Can anyone please tell me if there is a way to change the options in the Get Info window to show more of them? For example, as well as Album Name, Artist, Composer, Genre, date I'd like to have Grouping and Comment come up each time. At the moment, for each album I import I have to go to Edit>View Options and then add them. It is getting to be a drag. I tried ticking them in Library>Show Columns but that doesn't seem to bring them up in the Get Info window. And yes, I do regularly want to add the same comment to every track on the album!
Powerbook G4 12   Mac OS X (10.4.6)  

Mike,
Thank you, your info has been very helpful and I think I have followed you (wouldn't it be nice if English were less vague?) - selecting multiple items had me a little stumped - do you mean that I go to, say, Library, and highlight an album and then CMD-I means I that exactly all the things I wanted come up? I did this a few times and it works fine. But I'm not sure if that is actually what you meant. Maybe there is another way of selecting multiple items that I haven't yet cottoned on to? You can tell I'm not very good at this, I really appreciate your help.

Similar Messages

  • How can you add/change the currency rate in spro?

    Hi all,
    you can add a new currency code by going to spro --- general settings --- check currency codes
    for example: PERU ---> PEN
    But, how can we add/change the currency rate PEN in spro?
    for example: Peruvian Nuevo Sol     = 4,3567619
    Is it still in customizing? And if so, where can i find it?
    Many thanks in advance.
    Kind regards,
    Pamela.

    Hi Aman,
    I have entered the field to add the new currency rate.
    But the system doesn't want to valid my new rate.
    I get the following error message:
    "Input should be in the form ._,____ "
    Do you know how to override that command?
    Thanks.
    Regards,
    Pamela

  • How can I turn off the option in my message settings so that others can not tell that I have read there texts? Please HELP

    How can I turn off the option in my message settings so that others can't tell that I have read there message I have an iphone4 updated to the 6ios

    Set Settings->Messages->Send Read Receipts to Off.

  • I need to run Illustrator in Rosetta Mode and the option isn't in Get Info

    Hello everyone,
    I need help. I need to run Illustrator in Rosetta Mode and the option isn't in Get Info.
    I'm using CS3 on a Mac Book Pro 2.16GHz with 2gigs of RAM. When I get info on the Illustrator App, there isn't a rosetta option.
    To be clear, I'm right-clicking on the icon in the dock, choosing 'show in finder', clicking on the Illustrator icon in there and there's no option.
    NOW, my copy of Photoshop HAS the option! It's in the general tab just over the Lock option.
    Any help would be greatly appreciated!!!
    Thanks!

    Trash your preferences for a starter.

  • How can I add file attachment to my form and get the attachment by email?

    I'm using this code and it works fine, but I don't get the attachment file in the email. How can I add this to my code?
    HTML
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
    <script src="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" type="text/javascript"></script>
    <script type="text/javascript">// <![CDATA[
                  $(document).ready(function() {
                    $("#form1").validate({
                      rules: {
                        first: "required",// simple rule, converted to {required:true}
                        email: {// compound rule
                        required: true,
                        email: true
                      last: {
                        last: true
                      comment: {
                        required: true
                      messages: {
                        comment: "Please enter a comment."
    // ]]></script>
    <script type="text/javascript">// <![CDATA[
    function validate ()
              if (document.form1.first.value == "")
              alert("Please enter your First Name");
              document.form1.first.focus();
              document.form1.first.style.border="1px solid red";
              return false;
              else if (document.form1.last.value == "")
              alert("Please enter your Last Name");
              document.form1.last.focus();
              document.form1.last.style.border="1px solid red";
              return false;
              else if (document.form1.emailaddress.value == "")
              alert("Please enter your Email Address");
              document.form1.emailaddress.focus();
              document.form1.emailaddress.style.border="1px solid red";
              return false;
    function has_focus() {
        if(document.form1.first.value == "")
                                  document.form1.first.focus();
                                  document.form1.style.first.border="1px solid green";
    function set_focus(x)
              document.getElementById(x).style.border="1px solid #80CA75";
    function clear_focus(x)
              document.getElementById(x).style.border="1px solid #DBDFE6";
    // ]]></script>
    </head>
    <body>
    <p><span style="color: #666666; text-align: center; font-size: 13px;">Please complete this form if you have any technical issue.</span></p>
    <form id="form1" action="http://www.southsun.com/php/tech_issue.php" enctype="multipart/form-data" method="post">
    <table style="width: 850px; font-size: 15px; padding-left: 20px; text-align: center;" border="0">
    <tbody>
    <tr>
    <td style="text-align: left; padding-bottom: 20px;" colspan="2">
    <h2><span style="color: #666666;">Please complete this form if you have any technical issue.</span></h2>
    </td>
    </tr>
    <tr style="padding-top: 40px;">
    <td style="text-align: left;"><span style="color: #abaf6f;"><strong>First Name</strong>:*</span><input id="first1" name="first" type="text" />  <br /><br /> <span style="color: #abaf6f;"><strong>Last Name</strong>:*</span><input id="last1" name="last" type="text" /><br /><br /> <span style="color: #abaf6f; padding-right: 33px;"><strong>Email</strong>:</span><span style="color: #abaf6f;">*</span><input id="email1" name="email" type="text" /><br /><br /> <span style="color: #abaf6f;"><strong>Shipping Method:</strong><br /></span> <input name="shippingmethod" type="radio" value="prioritymail" /> Priority Mail                                                                 <input name="shippingmethod" type="radio" value="store" /> In Store Pick up <br /> <input name="shippingmethod" type="radio" value="ground" />  Ground                                                                       <input name="shippingmethod" type="radio" value="3day" /> 3 Day Select<br /><br /> <span style="color: #abaf6f;"><strong>Payment Method:</strong><br /></span> <input name="paymentmethod" type="radio" value="paypal" /> Paypal Method                                                       <input name="paymentmethod" type="radio" value="creditcard" /> Credit Card<br /> <strong><br /> <span style="color: #abaf6f;">If getting an error message, please explain the error:</span></strong><span style="color: #abaf6f;"> <br /></span> <textarea id="errormessage" cols="20" rows="2" name="errormessage"></textarea><br /><br /></td>
    <td style="border-left: 1px solid grey; padding-left: 40px; text-align: left;"><span style="color: #abaf6f;"><strong>If using Paypal, Were you redirected successfully?</strong><br /></span> <input name="paypalredirect" type="radio" value="yes" /> Yes                                                                 <input name="paypalredirect" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>If using Credit Card, Did you get an error?</strong><br /></span> <input name="carderror" type="radio" value="yes" /> Yes                                                                  <input name="carderror" type="radio" value="no" /> No<br /><br /> <span style="color: #abaf6f;"><strong>What happened after clicking place order? </strong><br /></span> <textarea id="placeorder1" cols="20" rows="2" name="placeorder"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Comments</strong>: <br /></span> <textarea id="comments1" cols="20" rows="2" name="strcomments"></textarea><br /><br /> <span style="color: #abaf6f;"><strong>Attach PrintScreen</strong>: <br /></span> <input name="strresume" type="file" />
    <div style="height: 50px;"> </div>
    </td>
    </tr>
    <tr>
    <td style="padding-top: 20px;" colspan="2">( * ) indicates required fields</td>
    </tr>
    <tr>
    <td style="text-align: center; padding-top: 20px;" colspan="2"><input class="button" name="submit" type="submit" value="Submit" />                        <input class="button" name="reset" type="reset" value="Reset" /></td>
    </tr>
    </tbody>
    </table>
    </form>
    </body></html>
    PHP
    <?php
    echo $savestring;
    //--------------------------paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'prueba con uploads';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.pch-graphicdesign.com';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    $target_path = "http://www.pch-graphicdesign.com/php/uploads/";
    $target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 20)
    {echo "Name of form element $key cannot be longer than 20 characters";die;}
    $j = 20 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>

    Sending a file as an attachment to an email involves setting the correct MIME type and headers. There's a brief tutorial here: http://webcheatsheet.com/php/send_email_text_html_attachment.php.
    Also, you need to use the same name as in your form. In the script you have shown here, the name of the file field is strresume, but your processing script uses this: $_FILES['uploadedfile']['name']. It should be this: $_FILES['strresume']['name']

  • HT2307 How can you shut off the option command click shortcut that minimizes all windows?

    I can't find a place to turn off the option click shortcut that minimizes the last window and option command click that minimizes all of the other windows. Is there a way to do this? They don't show up (or I can't find them) in the Dock Preferences or the Keyboard Shortcuts.

    I use Photoshop, Illustrator and InDesign and that's the zoom shortcut keys with space. If I use another program on my second monitor and go back to that and want to zoom in it minimizes everything else.
    Why reply if you don't know?

  • On the order of permissions in "Get Info" window

    I know that the three permissions listed are Owner, Group and Others. Is there any significance to the order in which they are listed? or only to the rights assigned each (Unknown is showing up on some of my files, I presume because of a recovery from a failed hard drive...) I can't add a replacement in the middle slot, it always goes to the top, which would effectively give me Group, Owner, others. I don't think it should be an issue, but... I don't know. Anyone?

    That's the default order in any Unix flavor. If you open the terminal and do a:
    *ls -l*
    in any given folder, you will see something like this:
    -rwxrw-r--
    followed by other pieces of information (Owner, Group etc.)
    Those are Read/Write/eXecute permissions on the files, for Owner, Group and Others (in that order).
    So in this example the first dash tells me that this is a file (if it were a directory, you would see a d instead of it), the Owner has full rights, the Group cannot execute the file, while the Others can only read it.
    In order to change the permissions on a file, you can use the chmod command, followed by permission code digits (777 would be full rights granted to ALL users, where 4=read, 2=write, 1=execute, and 764 would match our example) and the file name, like this:
    *chmod 750 file_name*
    and so the owner would have full access (7), the group read/execute (5) and the others none (0).
    Another way to go would be to use letters, such as u(ser) - aka owner -, g(roup) and o(thers), and for permissions - r(ead), w(rite), x(ecute).
    So if I want to change the permissions of the file in the first example and add full rights to the others, I could use:
    *chmod o+wx file_name*
    which would add write/execute rights, beside the already given read access.
    For more information, you can do a
    *man chmod*
    in the terminal.
    What we see in the GUI is based on shell commands and scripts anyway.

  • Hello, how can i modifie in the options, aplications, Adobe acrobat document, open with Adobe acrobat (in Firefox) instead of open with portable document format (default). Thanks

    I can'T open pdf links in another page, because in options, aplications i have in Adobe acrobat documents open with portable document format (default) and i must put open with Adobe Acrobat (in firefox) default.
    Where can i change the default?
    Tnaks

    All you now have to do is use that variable to the value property of your text field... So add this at the end of your code:
    this.getField("Conference_Option").value = ConferenceOpportunity;
    Also, I would use MouseUp, not MouseDown.

  • How can I re-create the Win 8 system after getting a new HD

    Hi,
    I plan to buy a T530(with small HD 320GB) with Win 8 PreInstalled from Levnovo, and then buy a bigger 1TB HD to replace the original 320GB. Is there anyway to still use the original license of Win 8 that comes with my purchase to re-create the system?
    If yes, How? Can anyone tell me what the steps are?
    Thanks a lot.

    Bill's link seems to be in error.  See http://support.lenovo.com/en_US/downloads/detail.page?DocID=HT076024 instead.
    Also keep in mind the product key used for activation is embedded in the system and married to it.  If you lose a drive and need to reinstall Windows 8, you can use matching media and setup will install using the embedded key.
    By matching media I mean if the machine shipped with Windows 8 Pro, you should use the Pro media (DVD or USB stick) for the install.
    Developers with MSDN subscriptions have access to the .ISO files for creating media.

  • How can I add music to an Apple-formatted iPod from a Windows-PC?

    without losing the music that I already downloaded from an iMac?
    When I try connecting the iPod to my Windows PC, it prompts me to restore, which would eliminate all the music that's already on the iPod.
    Any way around that?

    If your iPod is formatted for Mac it won't run natively on a PC because Windows operating systems don't recognize Mac OS-formatted disks (HFS or HFS Plus formats). However there are third party programs that will allow you to use a Mac formatted iPod on Windows. XPlay and MacDrive for instance get good reviews. XPlay is an iPod specific program and can be used as an iTunes alternative, MacDrive is more general and lets you access various types of Mac formatted drives on Windows such as CDs, DVDs, hard drives etc:
    XPlay 2
    MacDriveiPod on Mac and Windows

  • How can I permanently delete the default bookmark toolbar items (getting started, most recent, etc.)?

    I can't seem to permanently delete the default bookmark toolbar items. They show up frequently on start-up, even after manually deleting them in a previous session. I use 3.6 x_32 on Linux (for Flash) and 4.0 RC 1 x_64 (for non-flash) sharing the same profile.
    I use the X-marks extension and I thought that was the cause the problem, but the problem keeps happening even after deleting all of the the default items in each version and then overwriting my x-marks server data with a forced upload both times.
    I'm guessing that x-marks will be most people's prime suspect. I just want to make sure that firefox isn't recreating the items as a default behavior.
    I know it's a minor annoyance, but I keep my bookmarks toolbar pretty full. Thanks.

    Does it still happen if you temporarily disable Xmarks?
    Doesn't it work if you hide the Bookmarks Toolbar?
    You can check:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • How can i add new identity in file option of menu bar

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/869755''
    how can i add new identity option in file option of menu bar

    There are, but not with a DVD written as a movie disk. It must be closed when completed, or it doesn't work.
    Apple's built in Burn utility also automatically closes any data CD, DVD or Blu-ray disk you burn. Doesn't matter how much space is unused, you can't use it. You'd have to use a more advanced disk creation app, such as Toast Titanium. I then have the option of choosing to write the data as a session:
    I can keep doing this until the disk is full. If I've written five sessions to the disk, when I put it in the drive, five CD/DVD icons will appear on the desktop since the OS will treat each session as if they are separate physical disks. At any point you choose Write Disk when writing a group of data, that means you're closing the disk, and again can't add anything after that. So if I had written two sessions, and the third was Write Disk, it's over. I can't put anything else on that disk.

  • Deleted the recently added section from the source area how can i add back

    how can i add back the recently added section from the source without reinstalling itunes thanks in advance....
    insp 8100   Windows XP  

    Ok that is easy.
    1) File > New Smart Playlist.
    2) Make sure match the following rule is checked
    3)The first drop down change to date added.
    4)Set the second drop down setting
    5) Enter the number you want based on step 4
    The rest of the check marks are up to you but make sure "Live Updating" is checked.
    Take some time playing around with the smartlists. I love them!! I have a 2 level smartlist at work, I hardly use the regular playlists.

  • How can i add waveform datasaving functions to 2 channels oscillosco​pe demo

    How can I add waveform datasaving options to my .vi for example Oscar Gomez Fuentes 2channel oscilloscope demo, So that i can later on read the data and print graph.
    Mikko

    Look at the example Export Waveforms to Spreadsheet File Example.vi that ships with LabView 6 or 7. For your purposes, look at the first two file operations, Write Waveforms to File.vi and Read Waveform from File.vi. You can wire the output of Read Waveform from File.vi directly to a waveform graph. For your application, you don't actually need to call Export Waveforms to Spreadsheet File.vi (unless you're planning on using Excel to manipulate the data).

  • HT1296 How can I add my contacts from iTunes to my new iphone 5

    How can I add contactsto the iPhone 5 from a  from a backup on a MacBook

    If you have an iCloud account.  Do the following:  1st, on your iPhone, turn off the Contacts.  2nd, plug in your iPhone to your iMac and open up iTunes.  3rd, click on the Info tab and you can sync all your contacts from your Macbook. Hope this helps.

Maybe you are looking for

  • Error in product costing

    Dear sap gurus I am creating material cost estimation with quantity structure while doing in T CODE CK11N the following error is coming Message no. 213 Cost component structure z9 is not active. But I am not using the particular Cost component struct

  • Why won't the date and time stay in the menu bar?

    I just installed 10.6.2 and even when I use System Preferences to check the box in the Date/Time panel they flicker and disappear from the menu bar. Why won't the Date and Time stay in the Menu Bar? Any suggestions? Thanks. Frank B

  • How to create a new user and group on command line?

    Hi, I am trying to install INN, the news server on OS X.4.8 (non-server), but it requires me to create a user and group, both called 'news'. I know this has something to do with using Netinfo to create them, but I am logged in remotely via ssh and I

  • Can you download Upgrade to Acrobat 9 onto a new computer?

    I have Acrobat 6 on my old desktop PC, and received an email inviting me to upgrade to Acrobat 9 for the discounted upgrade price. I plan to buy a new PC very soon, so I prefer to buy the upgrade and download it on my new (soon to be purchased) PC. C

  • How to hide and show button based on if row is selected in tabular form

    Hi, Im pretty new to apex. I am using version 4.1. I have a tabular form and what i want to do is only have the delete button show if i select a row from the [row selector] column. Can this be done using a dynamic action? I have tried it that way uns