Google Picasa support - feature request

With the export modules in Bridge CS5, I can export to Facebook, Flikr, Photoshop.com and my hard drive.
I request an export module for Picasa Web Albums - or at least release an export module sdk (is there one? - if so, I haven't been able to find it), so someone (like google) can make an export module for Picasa.
With an sdk, the online community or companies could create any export module for most any need - what about twitpic or tumblr or...
it's very possible that I'm missing something here, so please set me straight if need be.
just a suggestion -
j

With CoolEdit I could use the RME Digi96 soundcard together with Digicheck.
But with Au I can not. A pity...

Similar Messages

  • Need security cert support - feature request

    The iOS version of Adobe Reader does support password-based encryption, but not certificate-based encryption.   We need certificate-based encryption for certain business functions.   When I tried reading a pdf file encrypted with a certificate on the iPad, Adobe Reader for iOS said, “The document has features that are not supported in this version of Adobe Reader”.   Please consider this a feature request to add this capability. 

    Hi Josh,
    Thanks for your feedback. But can you let us know which version of MRD client you are using on which device as to clarify and research more regarding your case.
    Thanks for your understanding and Support!
    Regards.
    Dharmesh Solanki
    TechNet Community Support

  • ASIO Multi-Client Support - Feature Request

    When AA 3 opens an ASIO device, it hogs takes possession of the whole device, even though some device drivers are built for multi-client support.  Other audio applications that allow for this functionality have preference screens built in with which you can choose the individual channels that will be used by the software - if a series of channels is not in use by that one application, then another audio application can utilize the unused ports.
    For example, I may choose to activate and use digital output channels 1-8 of an RME FireFace in Sonar as VSTi outputs, do a loopback in the RME TotalMix mixer, and then choose to use those same inputs to record into Reaper.  As long as I have only activated the 8 outputs in Sonar and the 8 inputs in Reaper, everything is copacetic.
    One can also use the pairs of outputs and split these multi-client interfaces into two halves (or any division, really) and have quite a bit of versatility - the only caveat being that there can only be a single word-clock (sample rate) for everything.
    If the developers could see fit to implement this in the next version, it would be nice.  I would like to get down to using just Reaper and AA and this recognition of multi-client capability would certainly help that cause.
    --Dean

    With CoolEdit I could use the RME Digi96 soundcard together with Digicheck.
    But with Au I can not. A pity...

  • Feature request: keyword search like Google Toolbar

    One of the features (well, the ONLY feature) that keeps me from using Safari as my default browser is a feature I get through Google's Toolbar.
    After you type in keywords for a search in Google's toolbar. You can click on the word (in the right area) and it will automatically find the next occurrence of that word on the page. (You can alternatively clock on the "highlighter" icon and it will highlight any words in your search). You can find any individual word.
    Safari's feature to do this, as far as I can tell, is far less useful. After you type in some keywords. You can click on the magnifying glass and at the bottom, it has the ability to search for the keyword OR phrase, depending on how you search.
    Google's Toolbar feature is amazingly productive -- and useful. I can't figure out why none of the browsers have picked up on this feature.
    (If someone knows a way to do this with Safari, I'd appreciate it).
    Thank you.

    Thank you very much for the responses. I spent forever trying to find the feature request area in support, but failed. Perhaps it would have bitten me.... Thanks for the pointer...
    As for this capability, there's no reason why a browser couldn't support this feature -- doesn't matter that Google did it in a toolbar. And, in fact, if you click on the magnifying glass in the search box, it does allow you to search within the current page for what you searched for (though it's limited only to the "phrase"). It's at the bottom... You have to have words in the search box to see this.
    I'll make the suggestion directly to Apple.
    To anyone who hasn't used this capability -- it's really powerful. That said, you need the Google Toolbar which is only supported on Firefox, not Safari (on the Mac platform).

  • SSLSocket to support NIO - feature request voting

    Hello All,
    I know there were many discussions here regarding this subject.
    I've seen the SSLEngine solution for the problem... But I didn't like it since it is too complicated.
    For my understanding SSLSocket inherits Socket so an application that can handle Sockets should be able to handle SSLSocket without writing a specific code besides the factory.
    NIO allows Socket to be none blocking... So why SSLSocket which is a Socket does not?
    If I write a Web server in Java, why should I deal with none SSL and SSL connections in a different way?
    I recently wrote one threaded NIO server and was amazed that I could not use SSL with the same implementation.
    I've opened a feature request for Java, but they told me to gain support for this subject here before they will consider it...
    As I understand I can re-implement SSLSocket to use SSLEngine and support NIO with blocking and none blocking support... But I think Sun should do it.
    One caveat is to make sure that the SSLSocket HandshakeCompletedListener should be called by a daemon thread, so that it will not block other sockets while certificate verification occur.
    Of course when I refer to SSLSocket I also refer to SSLServerSocket.
    Can you please comment regarding this issue... Every comment will be welcomed!
    Best Regards,
    Alon Bar-Lev

    nah, I am very glad they released an engine separate from transport allowing encryption on any transport.
    I am also working on an abstraction of nio that you may be interested in if you don't want to do the security yourself......it is here...
    http://sourceforge.net/projects/channelmanager
    Right now, it only contains the api, but there are 3 implementations behind it right now with 3 to be added.
    1. Basic implementation that does just nio
    2. Secure implementation that implements same api and uses implementation 1
    3. Packettizer implementation which puts things in payloads with headers and footers
    4. (to be added) Threadpool implementation allowing a threadpool to be inserted in the stack somewhere
    5. (to be added) TestProxy implementation allowing exxceptions to be thrown on purpopse to test a system on a bad network....can test failure on bind, connect, read, write, etc....everything.
    6. denial of service layer.
    7. Exception catch layer to protect #1 and #4 mainly from bad clients that throw exceptions back to the channelmanager.
    Each one of these layers (2 - 4) implements the same api and uses the same api so 2 -4 are all proxies. You can reorganize the proxies as you want.
    The secure one is almost done. Any comments on the api will be welcome.
    thanks,
    dean

  • Feature request: more xpath support in XMLElement

    Hey guys,
    Just wanted to submit a feature request. I'm trying to write code to find the number of Invocation service threads that Coherence uses. It would be very nice if I could use XPath syntax such as the following:
    getSafeElement("cluster-config/services/service[@id='3']/init-params/init-param/param-value")
    Since the API doesn't support that, I have to resort to something like the following:
    XmlElement services = com.tangosol.net.CacheFactory.getClusterConfig().findElement(
            "cluster-config/services");
    List servicesList = services.getElementList();
    for (Iterator i=servicesList.iterator(); i.hasNext(); ) {
        XmlElement element = (XmlElement)i.next();
        if (element.getAttribute("id").getInt() == 3) {
            XmlElement value = element.findElement("init-params/init-param/param-value");
            System.out.println("invocation threads: " + value.getInt());
    }I haven't quite gotten that to work yet, but it's probably close. :)
    Thanks,
    Matt

    Matt,
    There is a helper function in com.tangosol.run.xml.XmlHelper class that makes it almost as easy as using the XPath.
    XmlElement xmlCluster    = CacheFactory.getClusterConfig();
    XmlElement xmlInvocation = XmlHelper.findElement(xmlCluster,
            "cluster-config/services/service/service-type", "Invocation");
    XmlElement xmlThreads    = XmlHelper.findElement(xmlInvocation,
            "../init-params/init-param/param-value");
    System.out.println("invocation threads: " + xmlThreads.getInt());Regards,
    Gene

  • Feature request: Slideshow module support for video files

    I'm very excited about your MTS support!
    Feature request: Slide show module  support for video files...
    Say you have 10 takes to choose from. Are you able to almost like SLIDESHOW view the 10 clips full screen so you can decide, like a playlist? Or rate them as they play? It would also be great, like SLIDESHOW to be able to export a MP4 with a title, the 10 clips you are working with, and maybe add an end title and a song, just like SLIDESHOW.
    I have found editing stills like this in slideshow far faster than in any other editing program.
    Basically, I just need a fast means to view or export an MP4 of a set of video clips to review. You are almost there.
    great job!!!
    Max

    I was also disappointed that video is not supported in the slideshow module -I currently have to use another solution when I want stills mixed with videos, would be great to be ablo to keep it all in LR!

  • Feature Request: iTunes support CD drive letters A&B

    Not sure how to submit this feature request to Apple for iTunes for Windows enhancement so I figured I would start at the forum.
    I know in the "dark ages" drive letters A&B where pretty much reserved for floppy drives. Not sure how many computers are actually still in use running Windows XP and up that still have one of those drives.
    Therefore, for some time now these two drive letters have gone unused. C: in general was the first HD letter, and CD-Roms (or now DVD/Blu-Ray) drives started somewhere with D: and above depending on your computer configuration.
    I changed my setup a while ago and named my two DVD drives A & B since Windows supports it just fine, as do a lot of other programs, with the exception of iTunes :-(. For some reason, iTunes will not support reading CDs from drives A or B, even if Windows autorun feature is enabled asking if it should import the CD into iTunes. Apple, what's up with that? Why actual restrict reading music from CD drives assigned letters A & B? Is this an old piece of code still lingering around in iTunes?
    So, simple feature request for an upcoming iTunes release, please enable reading/important CD music from drives labeled A&B so that we can start using these letters again as well.
    Anybody else want to support this simple request that should be fairly easy for Apple to implement?

    We're a user-to-user community, so there's no guarantee that an Apple person will see your request. But you can make enhancement requests directly to the Apple folks if you like. Here's a link to the iTunes product feedback form:
    http://www.apple.com/feedback/itunesapp.html

  • Feature request: Support for more than 2 monitors

    I currently use an external monitor for my critical editing/evaluation as my iMac display doesn't reproduce reds very well. I understand newer iMacs can support 2 external displays, obviously desktop machines can support as many displays as there are open slots for video cards.
    While editing a photo shot in portrait on a monitor set for landscape is not a problem, it would <really> be cool to have two external color-accurate monitors for developing/loupe views, one oriented in portrait, one in landscape, with the third (iMac in this case) showing the develop controls. Even if the two external monitors showed the same image, one would always be fullscreen in the correct orientation.
    MacOS and Windows both give the user control over all the displays connected to a given system, so driving a portrait and a landscape monitor simultaneously shouldn't be a problem from an OS/hardware standpoint.
    Is this something that can be rolled into LR4?
    Respectfully,
    Andre

    I use 3 or 4 monitors too, so that's one I'd like to see too.  We wouldn't want the request to get lost in beta land, so might I suggest adding the request to the Feature Request forum http://feedback.photoshop.com/photoshop_family where it can easily be tracked?  If you post the link to your request here, others can also vote on your request. 

  • Feature Request: support previews for png files

    hello,
    i like to see previews supported for png files.  This is a common file type and should be supported  Especially since it is one of the options supported for export to creative cloud from photoshop touch.  It would make a lot more sense.
    Thanks.

    You would want to go here for feature requests: Photoshop Family Customer Community
    Gene

  • Feature Request: Support for External Synths/Modules (via MIDI)

    Hi,
    I just posted a feature request (via the Apple Feature Request form) but also wanted to post here. I use a combination of hardware instruments (sound modules) and software instruments.
    *My Setup*
    - Keyboard #1: M-Audio Axiom 25 (also includes a USB MIDI interface)
    - Keyboard #2: Roland A-33 Controller Keyboard (via my Axiom-25's MIDI In)
    - Edirol USB MIDI Interface (sound modules plugged into MIDI Outs)
    - Sound Module #1: Roland JV-1080
    - Sound Module #2: Yamaha TX802
    MainStage currently takes care of all my software instrument needs, however, what is missing is the ability to add external physical MIDI devices as either patches or as channel strips. I would like to use a combination of software and hardware instruments in the same song, and control this via Mainstage.
    Example:
    - Patch 1 could potentially contain 2 software instruments, each seperately controlled by a physical keyboard (this is currently possible)
    - Patch 2 could contain 1 software instrument and 1 external sound module each controlled by a physical keyboard (this is currently impossible)
    - Patch 3 could contain 2 external sound modules, mapped to different ports and/or channels, and therefore independantly controlled by my 2 keyboads (this is also currently impossible)
    Would I be correct in assuming that this is a fairly common limitation of MainStage?
    Message was edited by: olafwagner

    I have achieved MIDI out from Mainstage, thank to the information found on this forum..
    what I actually do is send Prg Change from every preset I select to control a hardware vocal harmony pedal. this way i don't have to remember which setting i use on every song or even, section of a song.
    *Step 1:*
    Library>application support>Logic> create a folder named precisely MAINSTAGE CALLBACKS
    inside of it, create an applescript with this code
    on action(parameter)
    set myprogramchange to programchangenumber of parameter
    tell application "MidiPipe"
    MIDISend toPort "MidiPipe AppleScript Input" withData {192, myprogramchange}
    end tell
    end action
    *step 2*
    download MIDIPIPE from http://homepage.mac.com/nicowald/SubtleSoft/
    and install it in your apps folder
    *step 3*
    start midipipe, and define the following modules
    MIDI IN-> use applescript input from menu
    MIDI OUT-> route to your midi interface desired output
    save this to a Midipipe file you can easily access
    Now, when I go to a gig I FIRST (this is important) load midipipe and my preset, and just hide it and let it work in the background
    Start mainstage, and set the program change of every PATCH to what I want to be sent over MIDI OUT when I enter the preset (-1 if needed or modify the previous applescript).
    Ok, this just gives you Prg change... if you want something like CC or others, you can look at some of the example files on midipipe, and write your own applescripts to be used from a control within mainstage (you know, select a screen control, and assign it to an applescript located in library>application suport>logic>Mainstage scripts. you have to tell the applescript to receive incoming data from mainstage and send it (with even some filtering or transforming) to midipipe to go to the outside world.
    One last idea: i used a free plug-in called MIDIIO that, although the plugin analysis on mainstage might say does not pass, you can use it anyway, and lets you insert it as if it was a plugin instrument...then you just route your screen controller to a MIDI parameter on that track, and there you go...but in the past it was not as solid as the midipipe solution.
    I am still investigating...I am pursuing having my hardware controller knobs to follow screen settings everytime I just change a patch, but lack some info on how to get parameter values when entering the patch ¿anyone knows, blueberry, zuelito...? I promise to share the results!
    best

  • Feature request - Support for rewire

    Obviously a lot of musicians use Flash Media Live Encoder so I was wondering if FMLE supports Rewire (from Propellerhead Software). I am aware Adobe does implement rewire into audition but what about FMLE?
    I want to be able to use my audio app plugins and for rewire to appear as an option as the audio source so I can get reverb and effect on my vocals / guitar,
    I would think this would be a popular feature going forward.
    Is it possible? IF not what are the chances of adding support? Where should I make a feature request if this is not the appropriate place?
    Thanks
    Paul

    Hi,
    I've logged an enhancement request on this.
    Thanks,
    David

  • Feature Request: Collection Support

    I already submitted this as part of a long laundry list of feature requests. Its becoming pressing enough that I thought it warranted its own post.
    The purpose of this feature is to allow collections to be built using any programmatic algorithm combining information available ala SDK or XMP. Example function calls:
    - LrCollections.createNewCollection( collectionName, clearIfAlreadyExisting )
    - LrCollections.addToCollection( photo )
    That would do it.

    Dynu.com uses a HTTP-update mechanism. So you can change the updater-settings in your config to match the syntax from dynu. The URL is shown in their SDK: http://downloads.dynu.com/files/basic_sdk.txt
    Sent from Cisco Technical Support iPad App

  • Blackberry Complaint / Feature Request - Please add category support for calendar Items already

    RIM: It's December 2010, and thousands of people have repeatedly asked for category support for calendar items for years now. In BB OS 5 & 6 we can assign categories to Contacts and Task items, but still not Calendar items? This makes no sense to me.
    Many people rely on categories to keep their calendar items organized, and I'm baffled as to why such a simple feature request has continued to be ignored. Obviously BlackBerry's DO support Outlook/Exchange category syncing, since I can see all of my custom categories through the Task and Contact apps. When I add a new category for a contact, it gets synced between Outlook/Exchange and my Blackberry. The support is there. But for a professional/business smartphone OS, I'm taken back as to how this feature could be missing from the calendar in the first place.
    Rim, please give us a response--a glimmer of hope--something to let us know that you are listening to us and plan on incorporating a category feature into the calendar! If the Blackberry OS didn't support categories at all, that would be a different matter and I would understand that maybe bit more development would be necessary to support this. But the capability is obviously already built in!!! 
    PLEASE listen to your customers RIM and give us this commonly requested feature as soon as possible!!!

    You're welcome.
    I'd also suggest you call your carrier blackBerry tech support and make the point there, asking them to give it consideration on the next OS upgrade. RIM does listen to their partners.
    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

  • 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)

Maybe you are looking for

  • Using digital signatures in SRM 7.0

    Hi! Anybody know where I can get any presentation/documentation/book about using digital signatures in SAP SRM 7.0? I found only some places, but these places have no good information: 1. Only one page on help.sap.com ttp://help.sap.com/saphelp_srm70

  • Sony Bravia 32" KDL5000

    Hey, I have read some reviews about this sony, I have also read reviews about the new samsung 32" ln32b360...which should I go with?   Also I have read that the sony has a backlight auto adjusting feature, is this true, can it be turned off?   Solved

  • DirectX 8.1a killed my computer

    2 days ago I downloaded DirectX 8.1a from Microsofts website. the comptuer restarted and everything was running fine. I did not get to play any games with it at that time because my wife wanted me to go to bed. I then came home last night after work

  • Migration of Content Server from win2k3 to win2k8

    Hello, Now we have installed Conteny Server 6.40 on Windows 2008 server. URL check for the Contenet Server is also working. We wanted to migrate from Content Server windows 2003 server to Windows 2008 server. In the process we have successfully taken

  • Toshiba Satellite A305-S6872 Will not start up

    I have the above mentioned computer and it is 2 years old. Last year in January the hard drive crashed and had to have new one installed at Best Buy. Now it will not start up. When I turn it on the Toshiba screen displays with F2 and F12 options. The