How to a make a suggestion about new features i'd like to see in itunes

how to a make a suggestion about new features i'd like to see in itunes?
I can't find any link to do this. I found a page where you can request songs or an album to be added, but i can't find a page to submit my suggestions for itunes i have for new features i'd like to see

As of now there is no good, direct link for feedback on iTunes itself. Writing Apple might be the best option, with the website feedback page perhaps the next best.

Similar Messages

  • New features I'd like to see in Prelude

    Prelude is a very cool program and I can see this becoming a vital part of the workflow.  I have noticed a few things that aren't perfect yet and would like to change.  I will file feature requests, but I am wondering if anyone else agrees with these, has any workarounds, or has other items to add to the list.
    1. Thumbnail view in the project window with hoverscrub.  Pr took a giant leap forward with Hoverscrub so you don't have to load each clip into the source monitor to preview, and PL could use this as well.  (The case could be made that PL needs this even more, since this will be a step in the workflow where you could be searching through clips even more than you would in the bins in Pr)
    2.  More efficient way to create bins and move clips in the project window.  Right now, when you create a new bin, it shows up at the bottom of the list of clips.  I have a project open with 500 clips in it - if there is a clip at the top that I want to throw into the new bin, I have to drag it down and wait for the list to scroll all the way to the bottom - slowly!  Such a big time waster.  It would be more useful if I could highlight a clip - or multiple clips - hit "new bin" and the clips would automaticaly be placed in the new bin.  Or, having the option to have multiple tabs in the project window (like Pr) could also alleviate the issue. 
    3.  The ability to send clips to a specific bin in Pr.  Right now, when you send clips over to Pr, they show up in the main project window.  If I have a bin structure set up there, it would be nice to target certain bins so the clips down't get lost in the higher level bin hierarchy.  For example, if I'm working in a bin that is nested in a B-Roll bin, nested in an interview subject and want to go back to Pl to find more clips, I would like the ability to have the B-Roll bin open, go to Pl, send a clip, and have it show up there in the proper bin.  Now, I have to navigate back to the top level and drag it to the proper place.  Not a huge deal with one clip, but working with lots of clips can get disorganzied pretty quickly.  One last note - some might say that all the Pl work should be done up front and organized there before going tp Pr, but I am finding Pr-Pl to work well together, using Pl as my sorting, metadata and organization tool concurrent with Pr.  Essentially, Pl is acting like a turbocharged version of Pr's Brower, Poject panel and metadata panel in a separate app.
    Any thoughts?

    Thanks for responding Wes.  I've pasted the confusing text from that website referenced in my original post below:
    Ingest movie clips  
    You can ingest entire movie clips or a selected portion of the movie clips (partial ingest). You can also transcode the selected movie clips using more than one encoding option.
         Select File > Ingest. Alternatively, press Ctrl+I (Win) or Cmd+I (Mac OS).
         Navigate to the folder containing media, and click the folder. The contents of the folder are displayed in the center panel.
    Tip: To access folders from which you previously ingested content, use the menu above the panel.
         Do the following based on your requirements:
    To view content as Thumbnails, click the Icon View button.
    To view content as a list, click the List View button.
    To quickly preview the contents of a movie clip, drag the cursor across the thumbnail. You can also click the thumbnail and use the playhead to scrub the movie. Alternatively, use the JKL keys to control playback of the selected thumbnail.
    To change the thumbnail size of movie clips in the panel, use the Zoom slide bar.

  • Creating a conditional index? How to suggest a new feature?

    How can I suggest a new feature in Oracle?
    Imagine a table of service requests to be processed, where a column named STATUS can be: 'N': New, 'C': Canceled or 'P': Processed. This will result in a biased distribution where 'P' will represent more than 99% of rows.
    I know that Oracle accept indexes created using functions and I can create an index on decode(STATUS,'P',null,STATUS) to make index small. But it will not help a query on STATUS = 'N' condition.
    I would like to create a conditional index like:
    create index idx01 on service_requests (status) where status <> 'P';
    In this example, only status 'N' and 'C' will be indexed resulting in a very small index that can resolve filters like STATUS = 'N'.
    Or this:
    create index idx01 on some_tables (column1 including null values); to resolve COLUMN1 is NULL
    Is there a way to suggest new features like this?

    How can I suggest a new feature in Oracle?
    Imagine a table of service requests to be processed, where a column named STATUS can be: 'N': New, 'C': Canceled or 'P': Processed. This will result in a biased distribution where 'P' will represent more than 99% of rows.
    I know that Oracle accept indexes created using functions and I can create an index on decode(STATUS,'P',null,STATUS) to make index small. But it will not help a query on STATUS = 'N' condition.
    I would like to create a conditional index like:
    create index idx01 on service_requests (status) where status <> 'P';
    In this example, only status 'N' and 'C' will be indexed resulting in a very small index that can resolve filters like STATUS = 'N'.
    Or this:
    create index idx01 on some_tables (column1 including null values); to resolve COLUMN1 is NULL
    Is there a way to suggest new features like this?
    A new feature isn't needed. Oracle provides the equivalent of that 'conditional index' by allowing you to create, and index, VIRTUAL columns.
    This code uses a VIRTUAL column and then creates an index on it.
    drop table test_status
    create table test_status (col1 number,
         status varchar2(1),
         special_status generated always as (decode(STATUS,'P',null,STATUS)
    create index idx01 on test_status (special_status)

  • When combining PDF's, the author is picked up from the first PDF opened.  How can I make it use a new author when combining several documents?

    When combining PDF's, the author is picked up from the first PDF opened.  How can I make it use a new author when combining several documents?

    Make sure that fast web view is enabled.

  • Question regarding suggestion of new features

    I'm probably going to touch on a sensitive topic, but please hear me out. In working with some legacy systems and I have the need to deal with unsigned values. Needless to say this is difficult to do in Java. There are some work around solutions, but they are hardly ideal. I would like to suggest this feature be added to the language. The question I have is how do I go about suggesting a new feature and get the ball rolling? Is it as simple as forking and developing it all yourself hoping it gets merged in or does it mean you have to go through the JCP?
    Thoughts?

    TuringPest wrote:
    you still havent shown that you NEED unsigned ints.
    That's kind of an odd statement. Let me see if I'm hearing you right. I don't NEED unsigned ints because I can always cast them up to longs, etc and handle them that way? Does the fact that one is not the other play a role? Say like I were to commit that back to a database (or worse, a binary file). I'd have to always do some conversion and handle an overflow possibility because I'm treating it as a long...
    also, there might be another good reason beyond the fact that they arent really necessary:
    the java opcodes were made to fit into a byte.
    as it is now, a lot of those opcodes are used
    for primitive conversions and every permutation of primitive arithmetic.
    if they added 4 more primitives to the existing 6...Couldn't that statement apply to any language addition? "I'm sorry I shouldn't do it because I've only got a byte and need to save it for more useful stuff."

  • I would suggest a new feature:The possibilty to change the mouse pointer icon when you hover on an a

    I would suggest a new feature:The possibilty  to change the mouse pointer icon when you hover on an active link by any other one icon I select.

    Current Firefox versions have a feature called tear-off tabs.<br />
    You can detach a tab from the current window and open it in a new window by dragging a tab in the browser window.<br />
    You can drag that tab back to the tab bar in the original window to undo that detaching.
    bug489729 (Disable detach and tear off tab):
    * https://addons.mozilla.org/firefox/addon/bug489729-disable-detach-and-t

  • How do I make the color of my video it looks like this

    How do I make the color of my video it looks like this  
    http://www.youtube.com/watch?v=QJLylsa72zM  
    I am creating a video of extreme sports, with the effect of slow motion and I would like if I saw so

    Magic Bullet Looks is valid with final cut studio? I have understood that only serves tofinal cut pro x

  • How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter.

    How Can I Make a Membership Website With Adobe Muse? Like Youtube, Facebook, Twitter. I need help!

    Yeah me too

  • HT1751 I purchased a new computer and would like to have my iTunes on this computer as well as on my laptop.  Can I copy my music on my new computer without deleting it from my old computer.  I want my music on both computers.

    I purchase a new computer and would like to have my iTunes Library that I have on my laptop on this computer as well as my laptop.  I have installed iTunes, but I don't know how to copy the music to my new computer.

    Type "move itunes library" into the google search bar

  • In Options -- General -- I want the option to "Show my windows and tabs from last time" AND "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    In Options --> General --> I want the option to "Show my windows and tabs from last time" '''''AND''''' "Show my homepage", but that choice isn't given. When I open a new tab, I'd like to see my iGoogle page, not a blank screen. Hope you can help. D

    You can middle-click or Ctrl left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/new-tab-homepage/

  • Just got new Apple TV with updated OS but no new features showing?like yahoo etc

    Just got new Apple TV with updated OS but no new features showing?like yahoo etc

    Where are you located? A lot of the features are US only

  • How can i make a suggestion for a new IOS

    Hello everybody y would like to know if i can make any suggestion for a new IOS cause there is some new things y would like it to have.Thanks.

    Apple Feedback

  • I use OSX version 10.8.5 and iphoto on a MAC.  I upgraded to elements 12 and in IPHOTO it keeps going to Elements 9???  Help please - how do I make it reference the new version???

    I have a MAC and use IPHOTO and had used Adobe Elements 9 as the external Editor and IPHOTO as default.  NOW I upgraded to Adobe elements 12 and IPHOTO only recognoizes Adobe Elements 9???  HOW do I make it go to the new external editor??  I appreciate any help you can provide?

    You need to reset the external image editor in iPhoto's Advanced preference pane to the right version. I assume there's an Adobe Photoshop Elements 12 folder in your Applications folder.  This screenshot is for PSE 10 but would be the same for 12:
    Happy Holidays

  • How can I make a complain about a salesman ?

    A week ago (7/23) I were in LA with my family.  I was searching an Apple store in order to buy 2 i phones ( one for me and one to my husband). My younger daughter and I went to Apple store locared in The Grove. Meanwhile, my husband was parking with my other daughter. Inside the shop, I asked a maneger salesman if he could show me an I phone, just to see the product and his functions. He sarcastically asked me if I want to see it or buy it. I answered that I'd like to see it and buy it. At once, he called another salesman called Alan to show us the devices. I told Alan that I'd like to buy a white and a black I-phones. He stared me as if I had no money to pay for the devices, but he went to get the phones. When he came, he asked me how I was going to pay the phones. As I didn't know he was also the cashier I asked "sorry?". He sarcastically looked at me and answered: "if you want it, you have to pay for it". I told him that I knew it, and give him my credit card. He asked me an ID with a photo, and when I give him a copy of my passport, he screamed among the other costumers: " I can't accept this!". Immediately I gave him my drive license and a card from the Federal Council of Medicine in Brazil showing that I am a MD. Then, he angrily passed my VISA once, and I signed my receipt. He tried to pass one more time, but he said that the second phone could not be paid with a credit card, because it was too much valuable. So, I had to pay it cash, but fortunately I had brought enough money to pay for the device. After receiving the amount of money($800), he tried to destroy the notes, passed a device over them to see if my money was true money and angrily gave me the change. A Chinese costumer was looking his behavior, and certainly was not accepting his actions. I left the store almost crying, and met my husband outside. After showing the 2 cells and covers bought, I told him the facts. I entered the shop again and told the first salesman I met all the story and told him that I would certainly would make a complaint to Apple, because  in my opinion, everyone must be treated with respect, no matter the shop, no matter if he goes there to buy or just know the products. So, I ask Apple to make some action about this sad occurrence. My name is Lilia Oliveira and I bought 2 cells (white and black) at Apple store the grove in LA on July the 23dr. Thank you for your attention.

    This is a user to user forum.
    The logical way to lodge a complaint against and employee would be with management at the store or by calling the store/corp office.

  • How to get informed about new features and version...

    Hello,
    I used to get informed on skype when a new version is launched, but now I dont. I noticed it when I delete skype and re-install again from the site for a reason. Also I want to learn about the new features via e-mail. What should I do?
    Regards

    To manually check for new updates, you can click the Check Update option in the Help menu in the Skype software window.  Then if there are new versions released and you want to know what new features are added in that release, you can check the Skype Blog's Garage section - 
    http://blogs.skype.com/category/garage-updates/
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

Maybe you are looking for

  • System hangs when copying large quantity of files from external HD

    A little background: I was having some problems with the original OS (10.4.1), including periodic freezes. I bought the Mac Box Set '09 and installed Snow Leopard (10.6.5), but ran into some problems and in the process had to reformat my internal har

  • C6-00 to pc problem

    i have problem with connecting my c6 to pc. installed cable connectivity driver connected phone to pc with ca-101d cable(came with phone) and windows doesnt continue installing driver software(as cable connectivity driver guide states), everything wo

  • Clock_highres_nonroot in branded zone

    Hello All, We've migrated a physical machine (Solaris 9) to a virtual via p2v in a Solaris 9 branded zone on a Sparc machine. One application is running as non root user, and needs a high resolution timer. On the physical machine the lines: set hires

  • Oracle 9i Trigger Problem

    In release 1 (9.0.1.1.1) for Windows creating any trigger such as for example create or REPLACE TRIGGER BTR_BEFORE_UPDATE BEFORE UPDATE ON BTS.bts_l_task FOR EACH ROW begin :new.btr_last_updated_dttm:=sysdate; end; causes the Oracle connection to be

  • FI posting baseline calculation is wrong.

    HI expart. in userexit_fill_xkomk1how to imlplennt for sap note -112385 for baseline calculation is wrong. What i will do for baseline calulation is coming as creation date. Thanks Dhirendra.