Feature Request: Group episodes of a show in thumbnail view

So I've bought a couple episodes of Battlestar Galactica from the iTunes Music Store, and I've been busily converting episodes of Robotech from DVD to mp4 files in my library. I like to view video files in the shiny "thumbnail" view (or whatever it's called). One complaint I have about this though is that if you have lots of episodes of a show, what you end up with is a very looooong display of the same cover. I think it would be rather cool if iTunes would consolidate all of the episodes of a show into a single icon in the list, by season. So instead of showing 13 episodes of Battlestar Galactica, it would show just 1 icon for Season 1. The icon would ideally look like a stack of DVDs. Clicking on the icon would then filter the window to show all of the episodes for that season (but it would not show other videos in your library). Hopefully I've explained this sufficiently.
Also, I think rating should be displayed in the thumbnail view.
Whaddya think?

Already did that. I posted it here as well in the irrational hope that maybe if others thought it was a good idea, and if somebody from the Apple team happened to come across it, it might stand a better chance of seeing the light of day. One can dream right?
BTW, they should also change that form to "Give Feedback" rather than "Request Music". The link in iTunes to provide feedback goes there, and the page title seems a bit misleading, IMO.

Similar Messages

  • I want Preview to always show the thumbnails view!!!!!

    Latest build of preview, Mountain lion OS X
    When I open a PDF in Preview, it shows the Table of Contents view. I want Preview to always show the thumbnails view! Is there a way to change this to the default setting? (And dont say goto view - thumbnails, that's not a default option)Every time I pick a photo or PDF it starts with the Table of Contents view every time!

    This works but only when opening the same document. Other documents just default to the plain view.
    Big oversight - particularly when merging lots pdfs and each one has to be manually changed to thumbnail view. All becomes very cumbersome

  • Feature request: Group events

    Hi,
    I love using iCal to plan my day. Often I find it would be really useful to be able to lock multiple events within a group (like in keynote etc.) so that I could move multiple events - for example, to change the start time / date for a sequence of sequential events.
    I can't seem to find a way to do this at the moment but I think it'd be really useful. Can anyone correct me? - is there a simple work around?
    Cheers,
    Matt

    I'm a Matt,
    Welcome to the Forums! You should check out the Thread: http://discussions.apple.com/message.jspa?messageID=9157543#9157543
    I bet you will find it useful,
    Weston

  • Showing the thumbnail view of the uploaded image

    Hello Experts,
    I am developing a website in jsp, where i have a module for patron uploading their photo into the server.
    After a lot of gooling and searches in this site, i found code to upload the image and it uploads perfectly into the specified folder at server also. But my need is showing the uploaded image at once, after the image is uploaded. i used
    <img src="images\<%=filepath%>"> and also
    <img src="ImageServlet\file=<%=filepath%>"> both are not working.
    any suggession will be greatly appreciated.
    Regards,
    Sri.

    Thanks for your suggessions, i have placed my code below, i think i am closing the file afrer writing.
    If anything is failed to close, please let me know.
                if (request.getParameter("upload") != null) {
                    String contentType = request.getContentType();
                    if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) {
                        DataInputStream in = new DataInputStream(request.getInputStream());
                        int formDataLength = request.getContentLength();
                        byte dataBytes[] = new byte[formDataLength];
                        int byteRead = 0;
                        int totalBytesRead = 0;
                        while (totalBytesRead < formDataLength) {
                            byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
                            totalBytesRead += byteRead;
                        String file = new String(dataBytes);
                        String saveFile = file.substring(file.indexOf("filename=\"") + 10);
                        saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
                        saveFile = saveFile.substring(saveFile.lastIndexOf("\\") + 1, saveFile.indexOf("\""));
                        String ext = "";
                        if (saveFile.indexOf(".") != -1) {
                            ext = saveFile.substring(saveFile.lastIndexOf("."));
                        int lastIndex = contentType.lastIndexOf("=");
                        String boundary = contentType.substring(lastIndex + 1, contentType.length());
                        int pos;
                        pos = file.indexOf("filename=\"");
                        pos = file.indexOf("\n", pos) + 1;
                        pos = file.indexOf("\n", pos) + 1;
                        pos = file.indexOf("\n", pos) + 1;
                        int boundaryLocation = file.indexOf(boundary, pos) - 4;
                        int startPos = ((file.substring(0, pos)).getBytes()).length;
                        int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
                        if (ext.equalsIgnoreCase(".jpeg") || ext.equalsIgnoreCase(".jpg") || ext.equalsIgnoreCase(".gif") || ext.equalsIgnoreCase(".png") || ext.equalsIgnoreCase(".tiff")) {
                            String strFilePath = "";
                            String strCopyPath = "";
                            Properties props = new Properties();
                            try {
                                File filDBConfig = new File(strFilePath);
                                FileInputStream fiStream = new FileInputStream("C:\\sansri\\config.properties");
                                props.load(fiStream);
                                strFilePath = props.getProperty("db.photopath");
                                strCopyPath = props.getProperty("db.copypath");
                                fiStream.close();
                                filDBConfig = null;
                            } catch (Exception e) {
                                e.printStackTrace();
                                Photo = "Invalid File";
                            System.out.println("strFilePath " + strFilePath);
                            File fff = new File(strFilePath);
                            if (fff.exists() == false) {
                                fff.mkdirs();
                            fff = new File(strCopyPath);
                            if (fff.exists() == false) {
                                fff.mkdirs();
                            //copying into build to show uploaded image at once
                            Photo = request.getParameter("upload").concat(ext);
                            FileOutputStream fileOut = new FileOutputStream(strFilePath + "\\" + Photo);
                            fileOut.write(dataBytes, startPos, (endPos - startPos));
                            fileOut.flush();
                            fileOut.close();
                            //copying into web also to avoid unavailability of image while rebuilding
                            fileOut = new FileOutputStream(strCopyPath + "\\" + Photo);
                            fileOut.write(dataBytes, startPos, (endPos - startPos));
                            fileOut.flush();
                            fileOut.close();
                        } else {
                            Photo = "Invalid File";
                }{code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • 60D images not showing a thumbnail view in Bridge CS5..ideas?

    I am having trouble seeing images in raw format from a 60D Canon in Bridge CS5. I have an iMac using OS X 10.9.4..any ideas why I can only see the white file, but can see all images in raw from 5D, 7D, 40D...etc. No updates show up as available on my computer or on the Adobe site. I just can't figure it out!
    Thanks for your help.
    -Alli

    Make sure your ACR (Adobe camera Raw) plug-in is fully updated.  That camera model has been supported since Adobe Camera Raw 6.2.
    DO NOT rely on the Adobe auto updater to tell you that there are no updates available.  It's totally unreliable in CS5 and earlier versions.  The Adobe updater team overseas did not get their act together even halfway right until CS6.
    Go into the About Plugin > Camera Raw… menu item in Photoshop to see what version of ACR you have.  In CS5, ACR should be at version 6.7, more precisely at 6.7.1.
    If you are already updated to ACR 6.2 or higher, then go to the Tools menu in Bridge and Purge Cache for the offending folder(s).

  • Is there a way to include images in a feature request to apple?

    I often feel that that best way to convey my feature request is with an image showing an example of the request.
    Does anyone know of a way to include images along with your feature request?
    Thanks

    No, but I suppose you could always upload the images elsewhere and link to them.

  • Feature Request: Apply effects to group of clip instances

    I have been trying to supply this feature request into the Adobe feedback form. But it appeared that it was too large to be posted in a single feedback form. So I had to split it into three distinct feedback forms.
    I don't want this feature request to get lost just because those three parts can't be joined back into a single feature request again. So I'd like to post it here, requesting for comments, too...
    This feature request is about applying effects to more than one clip:
    a)
    Currently, when selecting more than one clip, it's not possible to change any effects settings. The Effects Settings windows only shows a "Multiple clips selected" message.
    Thus, I'd like to suggest the following:
    When selecting more than one clip, the Effects Settings window should display any effects that apply to all the selected clips. Moreover, only those effect parameter values should be displayed having the same value across all selected effects. This on the other hand, of course, can only be displayed for effect parameters not having key frames/timing activated.
    Editing any of the displayed effects' parameters should apply the new value to each currently selected clip instance.
    b)
    Then again, when using key frame/timing activated effect parameters, it is currently not possible to apply such effect to more than a clip, too. To apply such animated effects to more than one clip it is currently necessary to nest those clips into a separate sequence.
    Thus, I'd like to suggest the following improvement:
    It should be possible to apply effects not only to clips but also to a group of clips (Menu Clip > Group).
    Activating animation/key framing to any of the effect settings of those effects being assigned to a clip group (in contrast to those effects assigned to any clip instance contained in the the group) will allow to add key frames spanning all clips of the group.
    This way it will be possible to easily create, e.g., a zoom effect spanning several clips.
    If there are clips in-between those belonging to the group, the group's effects won't be applied to those clips not belonging to the group. However, the effects' parameter values are continued to be calculated in the background.
    So this example would be true:
    - Available clips:
    | a | b | c | d | e |
    - Clips grouped into a Clip Group:
    | a |   | c |   | e |
    - Zoom video effect applied to the group, having two key frames added:
    Key frame #1 = beginning of clip | a |
    Key frame #2 = end of clip | e |
    Zoom value of key frame #1 = 100%
    Zoom value of key frame #2 = 400%
    --> So this will be the approximated calculated zoom value when the timeline reaches following points in time:
    Beginning of clip | a |:     100%
    End of clip       | a |:     132%
    Beginning of clip | b |: (100%)
    End of clip       | b |: (100%)
    Beginning of clip | c |:     174%
    End of clip       | c |:     230%
    Beginning of clip | d |: (100%)
    End of clip       | d |: (100%)
    Beginning of clip | e |:     303%
    End of clip       | e |:     400%
    (Unfortunately, this forum doesn't allow me to apply any kind of formatting to the example above. So I can't apply a monospace font or colouring )
    When a group gets ungrouped (Menu Clip > Ungroup), effects that had been applied to the group will be assigned to each individual clip of the group. For effect parameters that had key frames/animation activated, key frames will be created at the beginning and end of each of the clips. The previously calculated values will now be inserted at each automatically created key frame to mimic the grouped effect behaviour. This operation then would finalize the Ungroup operation involving clip group effects.
    Regards,
    Axel Dahmen

    You could combine the Next/Previous Edit commands with either the Apply Video Transition shortcut or with a paste command if you had copied the transition you want.
    OR... much easier if all you want is a bunch of consistent fade ins/fade outs...
    On a single clip, keyframe opacity to create a fade in from the in point of the clip at the duration you like, e.g. 30 frames. Right click Opacity, and select Save Preset; give it a name, e.g. Fade In 30 Frames and set it to Anchor to In Point. Reset the effect and delete the keyframes, and then repeat this to create a fade out. Go to the out point of the clip, set keyframes, and once again, right-click Opacity and Save Preset; this time call it something like Fade Out 30 Frames and set it to Anchor to Out Point.
    Now, you can simply select all of your clips in the sequence, and apply these presets by dragging them to the selection. Even though you created two presets, because you can only have one instance of Opacity on a clip, the keyframes from both presets will be added to that single effect. You have to do this with two presets--if you do it with one and use Scale, the keyframes will stretch out or compress to maintain a relative duration instead of an absolute duration.

  • Feature Request: Shortcut files to web pages should show the website's favicon

    If I'm viewing a website, and I drag it's favicon in the address bar onto the desktop, then a shortcut is created to the website. But, the shortcut always has the generic "@" icon. The feature request is to change the icon to include the favicon which I dragged, so for example, if I drag the Apple favicon, I would end up with a shortcut which looks like a document with the Apple logo on it.

    Where to send product feedback to Apple:
    http://www.apple.com/feedback/

  • Feature Requests for BlackBerry​10 OS

    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    This thread has been closed and is continued in this new thread here: 
    Feature Requests beyond BlackBerry OS10.3.1
    Please click on that link.
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Let's use this thread to list BlackBerry10 OS feature requests. There's nothing official to this thread, but one never knows who might view it and get an idea or two to move foward.
    Please let's keep it to feature requests with simple short statements and comments, in this manner:
    1. Ability to lock the volume keys (since they are so easliy pressed when retrieving from holster)
    2. Personal distribution groups Address Book
    4. Add BBM Group icon to home screen
    **This thread is not for bug reports (i.e., the calendar glitches when I set the date) or for debate or discussion of the worthiness of a feature request.
    So, what would YOU add to BB10?
    What do YOU need to make the OS platform work better for you?
    Here are the collected feature requests as of 04 April 2013. Thanks for Ride_The_Sky for helping collect these from this thread.
    There are listed in no order, just as collected.
    Ability to lock the volume keys (since they are so easily pressed when retrieving from holster)
    Personal distribution groups Address Book
    Add BBM Group icon to home screen
    Way to add line carriage to BBM messages
    Why doesn't the most used name come up first? <- In latest OS, there is another line with most common contacts, but when typing it won't provide most commonly emailed contacts.
    Bring back the option "Send As" or include this option in "Share"
    Enable word wrap when zooming in to emails and messages.
    Import Distribution lists from Outlook on your desktop to your Z10?
    *The option* to always show the hub main screen when opening the hub, so when peeking it always shows the hub even if you leave it in another screen.
    Offer Balance without BES to have two workspaces in device.
    Delete on Server/Device/Both
    Delete on Server but Keep on Device (This is going to be tough since EAS does not work like POP, using POP you can do this by deleting on server after sync)
    Auto power on/off or Auto Do Not Disturb / Scheduled Airplane Mode / Scheduled Silence Mode / Scheduled Custom Profile
    Default Currency Option
    More options to lower data usage in e-mail (Headers Only / Roaming Profiles)
    Snooze a notification/reminder for more than 5 minutes.
    Customized Notifications
    Disable certain accounts to stop receiving email or notifications from them temporarily to avoid data usage.
    Way to delete recent pictures, videos.
    Office Hub customization, sorting, editing, etc., on the fly.
    Select which contact groups to sync, and ability delete all contacts.
    Larger text select tabs
    Add more options to dropbar.
    Improve browser functionality and display, add customization and management of Bookmarks.
    Calendar in Landscape mode
    Option to Disable shutter sounds in camera.
    Auto BCC option
    Multiple appointments in lock screen, not only next one.
    Increase email check frequency, custom minutes (possibly battery concern, most accounts use push nowadays)
    Ability to hide "texting" numbers such as Work, home, etc that aren't able to receive texts
    Ability to have multiple mobile numbers, such as mobile1, mobile2, for people with more than one cellphone
    Ability to have multiple work numbers, home numbers, etc
    Ability to have option for actually creating "custom" names for phone numbers, emails, VOIP,
    Ability to have multiple WORK emails fields for same contact ...
    Ability for a custom note field for each contact, for misc information such as store hours, reference numbers, business account numbers,
    Ability for filter or unselect specific Twitter, LinkedIn, Facebook contacts so they all don't appear
    Ability to "share" contact info with someone else ... like a vcard or the like
    Ability to have custom Individual text and ringtones for each contact set within contacts app
    Vibrate option for Alarm
    Mail Filters for Priority mails.
    Option to block ringtones from music app (i don't see ringtones in my music app, I guess poster refers to custom mp3 files)
    Swipe down to close, up to minimize (but some apps have menus associated with swipe up gesture)
    Swipe half way up the screen to minimize an application to an active tile.
    Swipe it all the way up the screen to close the application.
    Playbook app switching gestures (swipe sideways, I guess this won't work since there are other gestures associated with side-swiping)
    Lock screen with gesture (or maybe they should just add a button on home screen, somewhere on top or bottom)
    Airplane mode on status bar options.
    Option to customize status bar with select Settings/Options.
    Colors for Hub!
    Face recognition for camera, being able to associate contacts with faces or pull info from Facebook, etc.
    Weather info on Lock Screen (if I may add, and constant info on top status bar, simple temp info should be enough)
    We need groups back in contacts please.
    Import text messages in various formats from various systems.
    Sorting and Ordering of the way contacts are displayed depending on account.
    While editing an entry in calendar, notification about a recent call may cause loss of data in that entry.
    Location for Calendar entries and be able to see it on the map with a tap.
    Being able to see multiple pictures from an email by swiping left and right to see next/previous without having to reopen (I must say the same thing is needed for App World, why can't we just scroll through screenshots??)
    Multiple flags or ability to set a flag date, associate with a reminder.
    Move people from TO to CC or BCC easily (If I may add, also ability to backspace to delete a contact without having to tap the X in blue box).
    Option to add favorites to Hub for easy to reach contact management (I think it is same as going to contacts and choosing Favs)
    Being able to answer and make calls when the phone is locked.
    Add more colors to LED notification (I think they are there now, orange, green, red so far, did not see blue, I don't think blue is needed in my opinion)
    Change the way to add date and time for appointment, rollbar is too slow and too sensitive.
    Dismiss and Snooze buttons for Alarm to be different colors, larger, easier to notice.
    Make it easier to order world clocks, instead of the order they are added.
    Alarms based on days/schedule.
    Easier way to get to the bottom of e-mails (I think it scrolls pretty fast, I think poster wants "B" shortcut)
    Easer way to get to the bottom of web pages (same as above, space or B shortcut?)
    Add option to ask if you really want to dial, instead of just dialing right away every time a phone number is clicked/tapped on.
    Ability to resize image before attaching to an e-mail.
    More than 30 days email sync on device, please!
    Make BB boot up slower, so we can actually get to do something else while waiting for it to start!
    SSH client would be nice.
    Another keyboard like Swipe (honestly, I have never typed faster in my life on any other on screen keyboard, Z10 keyboard is awesome!)
    Volume lock/unlock button on demand.
    Auto Run app on device boot up.
    Lock or Pin apps.
    Ability to run background apps (Google Talk is running in the background, or it is tricking me, I don't know but I am getting messages from it when it is shut down on BB10, I hope they do Skype the same way)
    Ability to have multiple documents of same type open at the same time (tabbed docs2go)
    Calendar sharing of BB10 users in the area/company/group.
    PIN Messaging to return.
    Preview e-mails, calendar and other information on lock screen (privacy?)
    Way to clear anything in any "Recent" menu, videos, pictures, etc..
    Ability to hide apps, docs, pics, videos, folders, etc..
    BBM Group Picture notification.
    Support WhatsApp more.
    Another tap for important numbers (Favorites work for this, and on top of speed dial)
    From Call Menu when going into contacts, it should be ready to search with keyboard out.
    Option to customize volume key to act as page up/down, etc depending on app running.
    Red star in app world (means you need to run Updates, just refresh and check by swiping down from top)
    Better headphones with the phone (hey, we didn't even get any!)
    Better night shots in camera (hardware or software improvement?)
    Ability to choose which address book to sync with bluetooth car.
    When app is opened from a folder three or four pages into apps list, we hope the screen can go back to that spot when the app is closed (sadly it uses active frames at the moment)
    Change acceptance of auto corrected key, instead of space key, make it something else (actually, you can just backspace to un-autocorrect it back to what you typed).
    Ability to load certificates (X 509 S/MIME and/or PGP/MIME) from a computer
    Ability to sign and or encrypt emails (POP3)  before sending (As in MS Office Outlook)
    Ability to receive and recognize signed and or encrypted emails (POP3) (As in MS Office Outlook)
    Add a password/certificate manager that doesn't require manual copy/paste
    Ability to encrypt the memories Device and Media of the Q10 like it is done for the BB9900
    Ability to encrypt selected folders (preferably by Private Key)
    Ability to create Self-Decrypting Archive like in PGP
    Ability to delete email-messages by group as an alternate option to one by one
    Opening Video-chat to non-BBM users (Skype for instance)
    For above encryption request, SecuSmart was suggested...
    Renaming the file without extension can break the file or hide it from pictures list.
    Wallpaper scrolling sideways.
    Standalone e-mail app (not sure how different it is than choosing emails-only for hub)
    Different colors or small tabs in different colors for different accounts in Hub.
    Share webpages with smart tag (I think you can just create it by pasting the URL into create QR)
    Application management (being able to see which app takes up how much space, etc..) CPU/Memory/Battery Usage/Data Usage/Storage Usage in more details
    Custom vibration options.
    Move Send button in BBM to avoid accidental submission of message
    Forward As… SMS, MMS, EMAIL from one to another.
    Send SMS to new numbers (I think you can still do this from call log)
    Single key press to change profiles.
    Insert a picture into an e-mail. (I think he means into the body of email)
    Turning off links of contacts (I think poster did not have multiple accounts, actually BB10 goes ahead and adds all new contacts into all address books in all accounts without user permission.. Create a contact in Hotmail? Gets copied to Gmail.. and then linked, terrible implementation in my opinion)
    Presets for browser bookmarks, faster access to bookmarks. (My suggestion was to create a home screen, select 12 icons 3x4 or 16 icons 4x4 as home screen/start page)
    Being able to allow flash based on website/url/server.
    Ability to adjust different sounds/volumes for different BBM users/groups
    Better Voice Dial and Voice Commands (shorter and easier operation)
    Ability close one or all web pages/tabs, add "Close All" button.
    Call Recording
    Faster way to delete e-mails, such as file icons next to e-mails,  or Swipe to Delete! Swipe to File!?
    Customize email signatures with formatting.
    Phone to stay on screen (dial pad always available in panes)
    More Options for Clock.
    In Playbook we can have a single character password, why not on BB10? "too short" well it is my decision, isn't it?
    There is no way to go next/previous while reading an e-mail. Please add these functions.
    Add to the e-mail client, Next Unread / Previous Unread.
    E-mail or Hub should have more buttons at the bottom in landscape mode. Why keep only three (or four in e-mail view) buttons when you have the real estate. It would be extremely handy if you allowed users to edit which buttons should go at the bottom. Next Previous is really needed while reading an e-mail. For example I would love to add "File" button at the bottom as a shortcut instead of forward, I rarely forward, but I file all the time. Maybe allow users to have two row of keys, add next/previous/unread. Or it could be done with a gesture. How about swiping the account name (top blue bar while reading e-mail) left and right?
    When you create a new contact in BlackBerry, it gets synced to all accounts on the Hub. There is no way to limit the new contact to a specific account.
    Sometimes when you file an e-mail to a folder, it stops and waits few seconds with no message. Even when it files immediately, there is a confirmation message that takes time to appear and disappear, and the folder list does not disappear automatically.
    Messages filed automatically by server using server side filter rules are still showing up on Blackberry hub/inbox. In older BB versions the filtered messages did not show up in the list, filed messages still did.
    When you filter your e-mails using Filter / Unread function, new unread e-mails do not show up until you close the filter and re-open. It won't just keep refreshing your screen with unread e-mails. Can BB add a button to the hub "Unread Hub" so when hub shows 8 or 2, you can actually see unread items easily without having to through so many taps.
    Native BB QR scanner (Smart Tags) does not work with barcodes (it only scans with no way to use the information). There is Open In function but it doesn't work properly.
    We need to add more customs search providers, and be able to add custom search strings/wildcards. For example currently there is Google, Bing, Yahoo, Foursquare, etc..
    I hope BB introduces the ability include more standard & custom searches, IMDB, PriceGrabber, Ebay, Youtube, XYZ Forums, ABC Newspaper, 123 Database, Etc.. Most sites nowadays provide search string in their URL Search=?* etc...
    None of the Battery apps can access system settings to add a battery icon to the top. I wish battery percentage was there.
    There is no way to check carrier/mobile signal strength.
    Blackberry, please add the date and carrier / SSID info to the top. Sometimes we just want to glance at the top to see the date without having to swipe.
    Please bring back keyboard shortcuts. Since we can easily swipe up to bring the keyboard, just add keyboard shortcuts in e-mail, phone (true speed dialing, dialing by word?), and browser, etc.. if possible. I could always call 1800SOMETHING# now I have to look up the number or use dial pad.. Please bring it back.
    Camera zoom function needs to be fixed, also please include option of fixed focus by tapping on the screen to focus. The auto focus in video is focusing in and out to various objects all the time. Stabilization feature also causes tearing/ripples, I guess it is good if you are stationary. Or use Volume Keys to Zoom.
    Please allow more than 12 icons in an icon group/folder, I hated Apple for limiting apps per folder, please fix it.
    Auto ON/OFF feature is not there anymore. BB should consider Auto DND (DoNotDisturb) or Auto Silent/Airplane modes instead.
    Please find a way to stop the music app from automatically starting up every time it connects to bluetooth like car audio. This is very annoying.
    No Panaroma mode in Camera app, why not? It is very easy to incorporate. This could be a nice addition to next release, and easy.
    The text selection grips needs to be a little bigger, sometimes I cannot see where I am moving them, they work better in Playbook, nice big tabs.
    Call Functions, before answering a phone add sideways gesture functions, like swiping right will forward the call, swiping left will answer with a test message, etc..
    Or there should be a way to reject the call without sending it to voice mail, phones had this function a decade ago, I don't know what happened to it.
    We used to be able to see the "History" without having to save the contact. Now I don't see any way to "View History" of a certain phone number, it just keeps adding
    them as individual entries to the log. Now I can't see when was the last time they called me, how many times we spoke which day, etc... I loved this feature in BB5.
    Where is BB Traffic? Where is BB Weather, without having to run an active frame? It will eventually disappear if you run too many apps. I liked a little Icon that shows me what the temp is, instead of running a whole app.
    There is no Skype. This day and age with all other platforms having it, please either get skype (Microsoft) to cooperate, or open up BBM to other platforms. If necessary, pay Skype to develop the app, then charge BB users for the app. Most will gladly pay.
    Can we tap and hold on an active frame to pin it, or can we pin two favorite apps between Call and Search & Search and Camera buttons in the bottom bar? How about Close All running Active Frames app to quickly free up ram?
    I hope next generation devices have two speakers or speaker that is facing forward. When playing games or watching videos in landscape mode, I find my palm muting the speaker. I have to hold it gently with fingers to have a gap in between, something I don't want to do when I am on the subway or bus.
    Blackberry Maps should have a Zoom In/Zoom Out buttons, sometimes using it with one hand, it is impossible to zoom in and out. (Zoom in is OK but we can't zoom back out)
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code
    Solved!
    Go to Solution.

    - ability to choose deletion of an email on handset only
    - desktop software working with all older BB's allowing drag and drop type of transferring data, contacts etc. (BB link doesn't recognize my old Storm) 
    - auto power on/off
    - contacts syncing with yahoo & Outlook (almost two weeks trying to work around it and no luck)

  • BUGS and FEATURES REQUESTED. Please add to it.

    I've been using the z10 for the past couple weeks and wanted to start a thread of comprehensive Bugs and Features Requested.
    I've labeled Bugs by letters (A,B,C...) and Features Requested by numbers (1, 2, 3...) so that others can add sequentially.
    BUGS
    (Not listed in any particular order)
    (A.) Contact App adds current date as birthday. When I edit my contact, the current date gets listed as the birthday in local contact.
    (B.) Duplicate telephone numbers listed. Telephone numbers show up twice in my Contacts (e.g.., if I have the contact's cell saved in (000) 123-4567 format and the person has the number listed in Facebook, I get a duplicate entry of +10001234567).
    (C.) Telephone numbers and emails are not actionable in Web pages. In webpages, I can't click on telephone number to call (e.g., I look up a phone number for a restaurant). I should be able to easily call or copy into the Phone App or E-mail App.
    (D.) Auto capitulation for words on the word substitution list is wrong. For example, when the word substitution contains more than one word. I have "ru" change to "are you" but if the first letter is capitalized (R) then both words become capitalized words (Are You). I used to have shortcuts like "mysig" to create email signatures with legal disclaimers but I can't do that now.
    (E.) Backspace delete doesn't work consistently. The Shift+Delete function seems only to work after moving the cursor. This feature is the Alt+Del action to delete words after the cursor.
    (F.) All Emoticons do not list. Emoticons do not all fit on the the two screens (lists) of emoticons. I.e., two columns are missing from view and can be seen when sliding (swiping) between the lists. Also, sometimes when I select an emoticon, it doesn't correspond with the picture of the one I intended. I believe this error is related. As a separate note, there should be a way to see the underlying symbols of the emoticon. (Often times, other people don't have BlackBerrys so I'd like to know what symbols would be sent--my prior 9800 would show the characters as i scrolled through them).
    (G.) BlackBerry keyboard doesn't always work in input fields. E.g., certain Web pages. (I found a work around; two finger swipe up from the bottom makes the keyboard appear)
    (H.) Sent messages stay unread. This seems to be an issue when an app sends an email (e.g., share article). The email with the sent indicator (checkmark) stays bold and I have listed 1 unread email. I can't mark as read/unread but if I delete the sent email, my unread message gets cleared.
    (I.) Contact already added but I get the option to add instead of view contact. For some contacts, I get the option to add to contacts in the action menu cascade when that person is already in my address book. This bug is for emails and text messages.
    (J.) Cannot call from text message. When I hold a text message and select call under the action menu cascade, the OS opens up the phone app but doesn't call.
    (K.) Composing messages by name. When composting messages, the input must be by first, middle and last name. It should be, instead, by string and include nickname. E.g., if the person's name is "Andrew B. Cameron" I must type the name in as such. I can't type in "Andrew Cameron" or "Andy Cameron."
    Features Requested and Suggestions for Improved User Experience
    (In no particular order)
    1)      Option to reply in different ways from the Call List. Be able to select a name in a call list and have options to call, text or email the person. The action menu allows calls to other numbers but I can't choose to text or email the contact instead. Sometimes, I missed a call and want to reply via text because I’m not able to talk. (Long hold on the Torch 9800 trackpad button brought up the action menu allowing me to call, text, view history, add to speed dial, e-mail, delete, etc.)
    2)      Option to reply in different ways from the Hub. Related to above, when selecting an item in the hub, have the option to contact the sender or caller with multiple different ways.
    3)      Only show number once in contacts application. Tap on the number to bring up the "action" cascade menu with options to call or text the number. Why is the same number listed twice (once to call and below again to text it)?
    4)      Timestamps for individual text messages. I can't tell exact time on individual text message if it comes in near the time of another text. All messages are in one "bubble."
    5)      Ability to select MMS or text for a message. Sometimes I write a text longer than 160 characters and I prefer it to be sent in one message (i.e., MMS mode) rather than being broken into one or more standard text messages. I had this ability with my 9800.
    6)      Send button should be moved for text messages!!! Why the heck is it right underneath the delete button?!? Or next to the period button? I often times have accidentally hit send when composing text. It's very annoying and embarrassing. (Also, what happened to the ability to hit enter for a return carriage to next line?)
    7)      Bigger magnifying glass. My finger is often over the area I need to place the cursor. I find it difficult and erratic to place the cursor.
    8)      Select all option. Add the option to select all text in action menu cascade.
    9)      E-mail recipients and message headers. Difficult to tell if you are one of many email recipients. Can we have a way to pull the email down to see the list of recipients rather than have to click to expand the header info? I know this request is a little picky, but that's how it was done in the previous BlackBerry OS which I preferred; it is easier and faster to pull the e-mail down and 'peek' to see which e-mail box received the message, message status, from and to fields. This change would be consistent with BB's flow/peek rather than click.
    10)   Browser navigation. Hold down back arrow to get a list of recently visited websites similar to a desktop browser.
    11)   Dark/Night mode. A night mode (maybe in the drop down menu) to change all the white and bright backgrounds to black or dark which would be helpful when reading/viewing things at night in bed/etc.
    12)   Number of contacts. Ability to see how many contacts I have.
    13)   What happened to groups or categories? I'd like to have back the ability to filter or see categories and also a way to contact everyone in a category. E.g., family or friends or coworkers, etc.
    14)   Shutter sound mute. I was at a wedding and wanted to take pictures during the ceremony but the shutter would was too loud.
    15)   East Asian Language Input. I bought my parents two Samsung Galaxy S3 phones over the weekend because they need Korean input (and the Kakao talk app). (BTW, S3 is a great phone but I prefer the Z10 after having the weekend to use the Android phones).
    16)   Ability to freely place icons on the homesreen. Currently, icons are forced top left-right-to-bottom. I prefer to space my icons out.
    17)   Add a contact to the homescreen. I'd like to place a shortcut (similar to a Webpage) to the homescreen for a contact which will open up the contact. Android allows this feature and so did my previous 9800.
    18)   Search Contacts by nickname. The contacts app doesn't allow me to search by, e.g., Andy, even if I have that as my contact's nickname. The previous OS allowed this type of search which was very helpful.
    Finally, as a note, I've been using the BlackBerry Z10 for the past 2 weeks and it's a great platform. I just bought two Samsung Galaxy S3 phones over the weekend for my parents so they could use the Korean language input and related features so I spent a lot of time with the Android platform, setting it up and teaching them how to use it. The S3 is a great phone too.
    I prefer, however, the way BlackBerry has done their OS 10 and the integrated management of messages.
    It's too bad that BB doesn't have Korean input and apps like Kakao Talk or I would have considered it for them.
    The BlackBerry 10 is a great platform and I look forward to the continual improvements that will only make the experience better.

    This is a great post.
    I couldn't have written it myself better.
    I'm also in dying need of Korean input as I can't communicate with my Korean friends.
    But I second every point.
    I hope the tech teams are reading this.

  • FEATURE REQUEST: Sticky editing of feed info

    I love iTunes 6 on Windows as pod-catching software. It's great. But a minor feature request.... (since I don't see anywhere else on Apple.Com for iTunes feature requests, I'm posting it here).
    Most podcast authors seem to do a lousy job of creating intuitive feed metadata information (Artist, Description). And since podcasts seem to be sorted by default on my iPod by Music > Podcasts > [ARTIST FIELD], I always edit the Artist Field in iTunes before I sync with my iPod. I do this by selecting all items in a feed group, right clicking, choosing Get Info, and editing the Artist field to something short which makes sense to me.
    However, this edit isn't sticky. When new items in a feed are downloaded to iTunes, they have the original Artist field. So I have to edit this a lot.
    What I'd like is to be able to edit the Info of the feed once in iTunes. Then, every time a new item is downloaded to that feed in iTunes, I'd like iTunes to go ahead and edit that item's info to match my sticky feed setting. This way, I only need to edit the info once when I add a new feed, and each item subsequently downloaded will inherit those settings.
    Make sense? A "power user" feauture, I'm sure. But it'd be nice....
    Dell Dimension Windows XP iTunes 6, 20GB iPod
    Dell Dimension   Windows XP  

    Can't be done currently. Interesting idea, though.
    However, I've found that podcast creators tend to be pretty responsive to criticisms along these lines. I've had this same problem with some podcasts, and after I mentioned it to them, they started tagging their podcasts appropriately. Some of them even started adding "album art" after I explained how it would show up on newer iPod's when playing the track, if the iPod user uses iTunes.
    I'd email the podcast author and let them know what's up. This is generally a better long term solution anyway, as it helps everybody.

  • Feature Request: RGB Histograms / Tone Curves

    Hi team,
    It would be really helpful to be able to view the RGB Histograms separately in addition to a composite (rather than the "compact" mode we have now).
    It would also be really helpful to be able to adjust the Tone Curve applied to an individual RGB channel in Develop.
    Finally, it would be most helpful to be able to see the RGB values as well as or instead of the RGB percentages when moving the cursor over an image area.  This would be particularly helpful for fine-tuning skin tones.
    Thanks, and keep up the great work.
    We're delighted you're evolving Lightroom!
    Cheers,
    Matthew

    Your post seems to assume that Lightroom is a tool for travel/landscape photography, and other types of photography (e.g., portrait/fashion) should be supported by a "specialized add-on module". I have to disagree with you on that point. Considering many of the examples on the Lightroom marketing are fashion shoots, I would think that they considers portrait/fashion photographers to be an important part of their target audience. They are not a fringe group of specialists.
    I'm sure that portrait/fashion photographers would feel the same way about a Lightroom capability that primarily benefits the workflow of a travel/landscape photographer, i.e., when I do do some landscape work, I just edit in Photoshop. But you wouldn't agree to that, would you?
    Skin tone measurement can be an incredibly easy tool to implement. It can be something as simple as showing the CMY values alongside the RGB values during a mouseover. Keep in mind, I'm talking about CMY not CMYK, so there should be no need to worry about what ICC profile to use. RGB to CMY is a straightforward transformation. It's embarassingly simple.
    There are other ways Adobe can implement skin tone management that would be more powerful but a little more complicated. Those would be great too.
    Anyway, thanks for the link to the Adobe feature request page! I will use it.
    Regards,
    Mike

  • AMP Feature request thread

    I've just started trying to use the AMP for some home entertainment and I must say it has been a challenge to enjoy this product in its current form. Perhaps I dont have a grasp on what the expressed functions of the player are, and what advantages can it offer me over the myriad of other players and services.
    I can find nowhere else to leave feedback and suggestions or have dialog with adobe developers so I thought, like in many other Adobe product forums, to begin a feature request thread in hopes that if enough users add feedback we may eventually have an improved product. In the same regard users can enlighten others as to what functions they find useful already. Its not meant to be a gripe list but a chance to voice constructive ideas and share experience with the product.
    Preamble complete, I will have first go:
    1) The system options seem very limited to me, for instance I can not find an option to view or change in what directory\folder the video files are downloaded or cached to.
    2) A minimized view or skin would add benefit for me. It seems now the only options are full screen and a small window housed inside the AMP program window. With any other media player I have used one can play a file in a resizable window without all the other program buttons and menus eating up your screen space.
    3) Video controls options during playback, like chroma level, brightness/contrast, gamma. This is standard on other players.
    4) I get annoyed when I am watching a video and I pause and go to the home or favorites tab, AMP automatically disconnects the video I was playing, and the I must search the catalogue to find it, restart it, and re-watch the commercials if any to re-cue it to the last viewing spot.
    5) I dont really appreciate the default favorites or new episodes listed. That is not needed.
    6) There are no right click menus? Odd. At the least I would like to be able to right click a video file to pull up information on it. In fact, I would like any method of looking at files information. This goes hand in hand with the general lack of user options throughout the program.
    7) Last one for now, but a big one. Why in the world would AMP not support more video formats? I, like most computing people, horde all kinds of different media files in my various libraries. If AMP cant play them it has a big disadvantage to all of the other ubiquitous media players out there.
    Thats it for starters. Hopefully I will start get more familiar with the program and then find more benefits. Please, add to this thread if you have any thoughts on the AMP.

    1.  Ability to skip forward (fast forward) through a video or rewind video.
    2.  Point AMP to a set of folders containing personal videos I want to watch in AMP.  Right now, if I have a series of videos that form one full course, I have to eliminate the previous course videos so they do not get mixed in with the new course videos.
    3.  Ability to go back to where I was in the video when the Internet goes down (or flickers) rather than play from beginning.
    4.  By the way, why are the TV shows going away?  This was the No. 1 reason we installed AMP on our multimedia computer!
    That is all for now.
    Thanks,
    edsager

  • Top Five Feature Requests for vs. 1.1

    I love my ATV and it's working pretty well - Clearly there are hundreds features we could use - and want - apparently ANYtime we can expect vs 1.1 (will that be automatic? or do we have to manually stab for it)
    Curious as to YOUR top 5 ATV software - "we need it now" feature requests...
    Mine?
    1. Video playlists
    2. 720p content from the ITS
    3. independant music select for different photo slide shows.
    4. smother fast forward rewind - (if this remote can even deal with that)
    5. Separate main menu section for music videos - (like movies, tv shows, etc) - They seem the odd child mixed in with the audio files)
    Fritz
    (who just sold the farm to order the new 8 core mac pro - should have it next week - woo FREAKIN' Hoo)

    Rental content!
    I'm not one to buy movies/tv-shows. I watch something once, and on very rare occasion twice. If Apple wants more money, they need to figure out how to offer a rental option.
    Let me rent a movie for $2 and have 48 hours to watch it from the time I start to watch it (kind of like the failed DIVX when DVD players were new to the market). This way I can start watching it, rewind, pause until the next day (hey, sometimes you get that unexpected phone call and have to stop your movie).
    People who want to own a movie will see the value in paying $10 for some movie, and Apple will pick up plenty of revenue from people like me paying $1.99 a pop to rent a movie, cause we aren't buying now, nor ever will.
    Renting TV shows could be nice, great way to try out a series you missed. Do something like $0.79+or- to rent an episode of show. Maybe you heard some episode of South Park was hilarious, you missed it, and it won't be repeated until who knows when, but you have no desire to "own" it for $1.99. Cough up 79 cents and you could watch it.
    I think there is pent-up demand for something like this, and Apple/Movie-studios could make quite a bit of money by fulfilling this demand.
    Mac Pro Dual 3.0 GHz   Mac OS X (10.4.9)   2 GB RAM

  • Display xml documents - how to submit a feature request?

    Safari is useless when it comes to render raw xml documents. You have to view the actual source to see the xml.
    Is there an official way to submit a feature request for safari to apple? I would love to see something similar to what firefox does with xml. Safari is such a fast and nice browser, if it only could handle text/xml better...

    As you said Safari simply shows all xml element content concatenated together. But no tags or attribute values. If the ContentType in the http header is set to text/xml Firefox shows an xml tree that you can nicely browse. I think IE5+ and Opera do that too. It is important to set the right content type though. Here is an example that shows nice in FF, but is unreadable in Safari:
    http://ww3.bgbm.org/biocase/pywrapper.cgi?dsa=Herbar
    Sure you can look at the source code, but the xml might not be pretty printed.

Maybe you are looking for