NEW TOOLS & FEATURES: Suggestion​s

Below a few low-cost but potentially useful tools and features that you could consider for the next big update in Q2 (feel free to add any other ideas):
(1) Menu Button vs. Recent Apps Button
Mostly in the EMEA we are used to have a dedicated "Recent Apps Button" rather than a "Menu Button", which is also the case with Nexus phones, Sony, etc. I know that you can long-hold "Menu Button" to go to recent apps, but as I multitask quite often I would prefer the functionality to be the other way around. Click for "Recent Apps" and long hold for "Menu Button". Luckily this is onyl a software issues. A button to switch between these two options would take less than a day to program into the UI. Extremely low cost new feature for the VIBE UI and it would make several users happy. (I know that you can swipe up or double tap the screen, thanks for that, but when my screen is full of apps from top to bottom, it is difficult to find any space for a double tap somewhere.).
(2) Magnifying Glass (and a Mirror)
Recently, I was testing the latest Emotion UI. I was surprised to find out that they have under "TOOLS" a "Magnifying Glass" app and a "Mirror" app. As dumb as that sounds, I found them both extremely useful and efficient. You could magnify anything under the phone using the camera app, but this takes a lot of resources and a long time -> you need to open the camera app, switch to rear facing camera, then click on the screen to focus on close objects, then with two fingers zoom to 3x to see your "broken nail" or "small text" magnifcied. In Emotion UI I could just do it in one click via the app. (The Mirror app also seemed handy, as it did not suck all the resources of a selfie camera and you could adjust your hair in one click before that important date.)
(3) Brightness level (or profiles)
Brightness level on Vibe UI is continuous. As I like to use 25% during the night, and 75% during the day, I am always switching it up and down twice a day at least. However, since there is just the continuous bar I don't know what the brightness is. So when I want get 25%, I get one day 16% other day 34% next day 22%, every day at different brightness - hardly a seamless experience. I would personally prefer to see a number next to the brightness bar to set the brightness exactly to any number (and be allowed to switch between few brightness profiles e.g. night mode or day mode or evening mode). There are third party apps for this, but it would be better to have that integrated in Vibe UI. I also liked the "warmer color for the screen" at night in Lenovo Z2, but sadly in Lenovo S90 the options seems missing.
(4) Recent apps screen
As neat as the recent apps screen is, it only uses 1/3 of the entire screen. It packs 3 features "Clear Memory", "Favorite Apps", and "Recent apps" in that small portion of the screen. Maybe some smart re-arranging would allow to use the space even better. Potentially moving the "clear memory" option (and potentially adding some other stats to it)  or the "favorite apps" option towards the upper part of the screen would allow to have a bit more space for recent apps at the bottom. But there are also other way of re-arranging this. One could also imagine having the upper part of the screen switching between "clear memorry & stats" and "favorite apps" by a click at "start" or a "broom" or just text toggels. I think not many users know that the options for favorite apps even exist at the moment (good idea by Lenovo).
(5) Stock Android L Option
This is an obvious one, requested a couple of times, and this fuctionality is already available in K920. K920 has received fantastic reviews for this in my view. Many people who are still a bit sceptical about Vibe UI in ROW would be willing to buy the phone because it runs the Stock Android L. This is also great for powerusers and developers. It does not incure cost, as it is already developed for K920 and has a potential to atract even more buyers. The Lenovo strategy in EMEA and Rest of Asia seems to be to grow the market share quickly and Stock Android L option would help this cause for now. As with the current implementation all Lenovo apps would stay active  in the Stock Android anyway. Btw. with Stock UI running on the phone, those users who really need an app drawer would be satisfied as well, but I still expect most of the Stock Android users to switch to Vibe UI after they get used to it and understand its advantages.
--- to be continued by me or someone else at some point when a good idea comes along ---

6. Landscape mode for Desktop
At least on this S90, the home screen and all the other desktop screens with apps do not rotate to landscape. I just saw that iOS rotates home screen on phones and the apps to the landscape mode, but I am not sure how easy or difficult this would be in android that also includes widgets. But again it would be a pretty neat feature that one could enable or disable in the Features or in the Desktop Settings if apps could rotate to landscape. For instance, I sometimes use the phone on a tri-pad for skype calls, camera, or just generally as a phone holder, so in that case it would make sense for me if at least the apps would rotate to landscape (generally speaking the widgets don't need to do that, as I think that might pose some implementation challenges).

Similar Messages

  • New CS4 features

    At Dave's suggestion, I'm starting a thread for discussing new scripting
    features is CS4. I'd divide new features into three categories: 1)
    improvements/additions to the InDesign DOM, 2) improvements to the ESTK,
    and 3) improvements/additions to ScriptUI.
    I'll start off this thread with one improvement on each of these fronts.
    (There are lots...)
    Category 1:
    There's a new isValid property for all InDesign objects. This is
    something that's been in the SDK for ever, but only made its way into
    the scripting DOM of CS4. This means that instead of try/catch every
    time you're trying to figure out if an object is valid, you can just write:
    if(myObject.isValid){DoMyStuff()}
    or,
    if(! myObject.isValid){return}
    This is a small thing but in my book it's huge!
    Category 2:
    There's a new function panel in the ESTK which shows all the functions
    in the current script and makes navigating to the functions very easy.
    Category 3:
    There are now keyboard and mouse events, so you can now create widgets
    which do everything the built in dialog scripting widgets do (and a
    whole lot more!!!)
    Harbs
    http://www.in-tools.com

    Noel, nothing wrong with Roy's posts for me (using the default web interface). It may just be you :-)
    Talking about interfaces, please don't comment on this one. It does the job, innit? (I'm sure someone else could do better with ScriptUI. Go ahead.)
    var myStyleList = new Array;
    for(c = 1; c < app.activeDocument.paragraphStyles.length; c++)
    if (app.activeDocument.paragraphStyles.item(c).otfStylisticAlternate == true)
      name = "[+] ";
    else
      name = "[-] ";
    name += app.activeDocument.paragraphStyles.item(c).name;
    myStyleList.push(name);
    var myCharsList = new Array;
    for(c = 1; c < app.activeDocument.characterStyles.length; c++)
    if (app.activeDocument.characterStyles.item(c).otfStylisticAlternate == true)
      name = "[+] ";
    else
      name = "[-] ";
    name += app.activeDocument.characterStyles.item(c).name;
    myCharsList.push (name);
    var parDialog = app.dialogs.add({name:"Salt your Styles",canCancel:true});
    with(parDialog)
    with(dialogColumns.add())
      with(dialogRows.add())
       parCheck = checkboxControls.add({staticLabel:"Paragraph style"});
       parDropdown = dropdowns.add({stringList:myStyleList, selectedIndex:0});
      with(dialogRows.add())
       charCheck = checkboxControls.add({staticLabel:"Character style"});
       charDropdown = dropdowns.add({stringList:myCharsList, selectedIndex:0});
    var result = parDialog.show();
    if (result)
      if (parCheck.checkedState)
       app.activeDocument.paragraphStyles.item(parDropdown.selectedIndex+1).otfStylisticAlternate =
        !app.activeDocument.paragraphStyles.item(parDropdown.selectedIndex+1).otfStylisticAlternate;
      if (charCheck.checkedState)
       app.activeDocument.characterStyles.item(charDropdown.selectedIndex+1).otfStylisticAlternate =
        !app.activeDocument.characterStyles.item(charDropdown.selectedIndex+1).otfStylisticAlternate;
    parDialog.destroy();

  • To fix a wonky horizon... New tool?

    Hey guys,
    Photoshop as it stands is an excellent tool for design, retouching etc, but may I suggest a new tool that could help us people who love to create panoramas?
    A wonky horizon tool is what we need!
    Not all horizons from panoramas end up straight, curved or just up down wonky. But a tool that is a mix between the Pen Tool and Crop Ruler, would do the trick. i.e. you use the Pen Tool to draw along the wonky horizon, click 'straighten' and voila! Horizon is now straight.
    Would this be possible in the realms of Photoshop? Would save many hours of headaches when PS doesn't Photomerge correctly.

    I use CC and LR5 (full CC suite) and no, those ONLY straghten the straights and is more one dimensionsal (apart from profile corrections).
    What I'm after is a tool that will straghten 'squiggly'lines.
    EDIT: the closest thing to this is the Adaptive Wide Angle Filter, but that just ruins it. Can also use Puppet Warp, but again, quite restrictive.
    Like in this image, no tool that I can find will fix this with ease, just a heap of warping will get it done, but degrades the final image:

  • New Movies feature in Garageband 11- how to export?

    I work at a school and would like to be able to import editable videos from Discovery Education United Streaming into the new Movies feature in Garageband. The thought is to have them remove the audio and then create their own on top of the video.  Some students have pre-made songs that they have done previously that we want to add video to. This seems like it would be much easier for students to do in Garageband than importing into iMovie and splitting the audio and then finding their Garageband recordings to insert.
    The problem I ran into is that I can import the videos, but Garageband will not allow me to export them.  I have tried on multiple machines, and with multiple videos.  I called Apple support and they suggested that it is a codec issue with the .mov file from Discovery Ed.  They could not tell me what codecs are supported by Garageband.
    I was able to get around this problem by importing the downloaded video into iMovie, then exporting it right back out as a .mov file.  When I imported that one into Garageband I was able to export the movie with the new audio file from students without any issues.  If I do this, I might as well just have students use iMovie instead. 
    Does anyone have any suggestions of what I can do in Garageband to make this work as easily as it should.  Thank you.

    Do you have a link to one of the movies?

  • Keyword Bugs and Some Keywording Improvement / Feature Suggestions

    Tagging Bugs and Some Improvement / Feature Suggestions
    Please excuse where I should use the word Tag or Keyword or vice versa!
    1.       BUG?    If a tag synonym is added or changed then all affected photos should be marked for re-publish.  I do not think this currently happens.   Should this possibly be considered a bug?
    2.       BUG?    When viewing a smart collection in a Flickr publish service and a new tag is added to a photo it is correctly moved to the “requires re-publish” section.   However … the thumb selection in the grid moves to the next photo, the loop view remains on the photo just tagged and the key wording still reflects the just tagged photo.    The selection shown in the grid appears to be wrong.      When working quickly this can result in tagging errors as the user looking on the grid believes he is working on the next highlighted photo in the grid.      This is surely a bug?
    3.       BUG?      A minor point and I realise this is probably not the correct way to do things … but a double word synonym entered with quotes for example “Ice Climbing” will create two tags “Ice” and “Climbing” at the flicker end of things.    Removal of this synonym and forcing a re-publish does not delete these two tags at the flicker end of things.    I may have miss-understood, but perhaps it is best for LR not to allow quoted tags? 
    4.       SUGGESTION      An easier and more powerful way to review tagging of current photos should be provided whereby it is possible to clearly see the current tagging of a photo and have immediate access to the keyword list at the same time to make corrections.    Having both the Keywording and Keyword List panels open in Library mode results in a lot of up and down scrolling for me and is a slightly inelegant UI in my opinion.   I would suggest it should at very least be possible to have the tags viewable in Loop info as an option - so long as no truncation is made and all tags visible.    Ideally a better way should be sought.
    5.       SUGGESTION      It would be very useful when reviewing tagging to select to show all photos in the currently selected folder or set which do not contain the selected tag.    Note, I don’t think this can be easily achieved by using a keyword filter and selecting all keywords and unselecting the tag of interest as the pictures may have many tags.    The same might be performed by textual based searches but this is inelegant and its slowness precludes a browsing approach.     For example – for me it would be useful to look at all my mountain shots in a trip which have not been tagged with “Glacier” and it will be immediately visually apparent where I need to make tagging corrections.    I would suggest a “Not” checkbox is made available on the top of each column in the library filter – this may also provide a great deal of power for other situations.
    6.       SUGGESTION      It would be useful to allow a means of showing all pictures with a certain tag but which have not been tagged yet with any children of said tag.   For example all pictures tagged with Glacier which I have not yet named the glacier by introducing a relevant child tag or selecting an existing child tag.    A similar situation occurs for wildlife and potentially many other scenarios … I would like to use a tag “Butterfly” which I can quickly use on my first pass… and then do the identification and child tagging on a second pass using appropriate filtering.   This allows for a step wise or “top down” approach to tag classifying things in a workflow.    I appreciate this can be achieved (as I do now) by using a child tag called “Unnamed butterfly” or “Unnamed Glacier” but it seems more powerful, elegant and generically applicable to be able to filter on a “not tagged with a child” basis.
    I apologise if I have missed the point on some existing functionality on any of these points and welcome any suggestions.

    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.

  • Camera raw 8.6 does not have new preview features

    Hi, I have just discovered that my version of Camera raw does not have the new preview features (the "Y" split) down the right corner.
    I have seen in some tutorial video that the new preview tool look like this,
    but my CR 8.6 still has the old preview tool like this,
    I am not sure why that is, I am running CR 8.6 on a mac with Photoshop CS6, is the new preview feature only available for CC?
    Thank.

    Yes, that is correct that photoshop cs6 and camera raw do not get the new features, just updated camera support.
    http://blogs.adobe.com/lightroomjournal/2013/05/adobe-camera-raw-8-support-for-photoshop-c c-and-photoshop-cs6.html

  • Photoshop Help | New video features in CS6

    This question was posted in response to the following article: http://helpx.adobe.com/photoshop/using/new-video-features-photoshop-cs6.html

    The heading says "import." But the actual technique to bring an audio file into a video project in PS CS6  is to use the "Add Audio" command accessed via the drop-down triangle in an Audio track. That opens the Add Audio Clips dialog box. But WAV is not a file type available to be added to an audio track. If you choose the Open menu command, you'll find that WAV files also are not available to be added via that route as well.
    If you do as JJ Mack suggests and drag a WAV file to the document window, it will show up in the Layers panel and it will be added to the Timeline as if it were a video clip. And, even though WAV files are not supported, the audio will play. So, JJMack's method is a work-around for the failure of PS to support WAV files via the Add Audio technique.
    Jeff

  • Does Designer9i support new DB features from 9iR2

    Hi,
    I am using Designer6i and was wondering if Designer9i supports new Database features of Oracle 9iR2.
    So it is possible to define the following new DB features:
    - Table Compression
    - List Partitioning
    - Composit Range List Partitioning
    - Bitmap Join Indexes
    - External Tables
    Thanks for any feedback
    Maurice

    Maurice,
    Designer does not support these features of the 9i database. We have no plans to add this functionality to Designer.
    Please refer to the Tools Statement of Direction, the Designer maintenance release document and the related FAQ on OTN (http://otn.oracle.com/products/designer/index.html)
    Regards
    Sue Harper
    Designer Product Management

  • An interesting new tool

    I've found an interesting new tool to configure the Logitec VX  style of fancy mouses with multi-purpose buttons and weeels.
    Here is a link to the article describing it: http://www.linux.com/feature/126295
    R.

    has the phone experienced what water/sweat etc is?
    webosnation.com is another option for help.

  • MochaImport+ (new tool & tutorials)

    mamoworld.com has today released MochaImport+, the successor of the popular After Effects tool MochaImport. The new version allows to launch Mocha directly from inside After Effects. You can send clips from After Effects to Mocha in a single click - even masks, in- and outpoints are transferred.
    A second big change is the new stabilization component. It enriches MochaImport+ by an easy, quick and yet powerful solution to stabilized shaky footage. The stabilization can be tweaked using sliders. For a hand-held pan, for example, you can obtain a smooth motion from left to right, while any movement up/down and any rotation is eliminated.
    More infos at http://aescripts.com/mochaimport
    Here are some tutorials about MochaImport+
    Getting Started With MochaImport+ gives a detailed overview over all features of MochaImport+.
     In the tutorial Graffiti becomes Alive you learn how to turn a graffiti painting on a wall into a living person. We use MochaImport+ to set up several tracks simultaneously and to create stabilized precomps.

    [email protected] wrote:
    > [email protected] wrote:
    >> Can I create a new tool, or modify an existing tool, using the sdk?
    >
    > AFAIK, you can't create new tools.
    as plugins....
    >
    > -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Modifying tool features like character size

    If I have multiple files open, only for the latest one I have opened, the tool features like character size can be modified. For the files i had opened previously opened and which are still open, suddenly the opportunity to modify the tool features, right after the moment I have open a new pdf-File with Acrobat.
    Can that problem be overcome ?
    System: Adobe Acrobat 9, Microsoft Windows 7, 64-bit

    It is up to Juno to enable Midas, the Rich Text Editor which is built into Firefox, with one little line of code on every web page that has RTE for IE. There's nothing that you can do to turn that feature on your self, it has to be coded on each web page that has Rich Text Editing.
    http://www.mozilla.org/editor/midas-spec.html <br />
    http://kb.mozillazine.org/Midas
    Their ignorance probably lies with their staff programmers only knowing how to do it for IE ''(their training and certificates are probably from the Microsoft cabal)'', and not realizing that Gecko and WebKit apps each have their own Rich Text Editor's, which require their own small line of code to enable those Editor's.

  • I have an iPhone 4S and have not been able to access the new phone features after upgrading to ios6. There is no option to decline

    I have an iPhone 4S and upgraded to ios6 but do not have access to new phone features! Any suggestions?

    Check Settings > Phone > Reply with Message >
         I'll call you later
         I'm on my way
         What's up?
    When you get a call, swipe the telephone icon (on the right side of Answer button)  to reply.

  • I am using Firefox 3.6 on my PC , and now, when I select File New Tab (Ctrl+T), no new Tab shows up. Nor does it show up when I click the new Tab symbol next to my other tabs. How can I get the New Tab feature to work again?

    In the past 48 hrs, all of a sudden, the New Tab feature on my PC< using Firefox 3.56, simply stopped working. I did not change settings, or download a new version of Firefox. it just stopped working. There are other scenarios where it does still work (for example, if I want to open a link on a web page, I can right click and open the link in a new tab), but if I simply want to have multiple websites open at once on my PC, I am forced to have multiple versions of Firefox open, as my New Tab option seems to be disabled or something. Can you help?

    Leliforever, cheek you list of installed add-ons, the Ask toolbar can be installed without the users knowledge.
    For checking other extensions that may cause this, follow the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Can I use iWork '09 on Lion without using new Lion features?

    I do not wish to use the new features in Lion, primarily autosave, with iWork, at least initially.  In other words have iWork act as it would in S.L.   However, I need to purchase iWork in order to continue using a bunch of Appleworks spreadsheets.  I am using a new MBP with OS 10.7.1.  My plan is to purchase the hard copy iWork '09 from the Apple Store (the AppStore download versions have already been updated).  This CD should be some version of 9.0 as they have not put 9.1 on the CD.  My idea is to just not let the modules (Numbers, Pages, etc.) get updated until I am ready.  My question is -- will Numbers and Pages work properly on Lion without using the final update to the new Lion Features, and which updates to Numbers and Pages should I avoid?
    Any help is appreciated. 

    Sjazbec wrote:
    Resume can be disabled systemwide in Systemsettings, general section.
    Alas, it's reactivated when we shutdown if we don't take care to uncheck the dedicated box.
    More, if we ask to restart on an other device, we have no checkbox available to disable Resume.
    Happily, it seems that pressing option during the shutdown process disable the beast.
    Yvan KOENIG (VALLAURIS, France) vendredi 16 septembre 2011 18:49:31
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    I transferred itunes library from old PC to new PC. The content all shows when I launch iTunes on the new PC now. The previous content does not show in iTunes but folder still looks like it is on hard drive on new PC. Suggestions on how to properly merge?

    Before you connect any device to a new library go to the Devices tab of the the preferences panel via Edit > Preferences (Windows) or iTunes > Preferences (Mac) and ensure the box next to Prevent iPods, iPhones, and iPads from syncing automatically is ticked. You can now safely connect the device to your computer without the danger of media being automatically deleted or overwritten.
    To get all your content off your connect your iPad to your new computer.
    Then use a 3rd party piece of software to transfer your content
    I have found Senuti useful but there are others listed in the article I linked to in a previous post.
    https://discussions.apple.com/docs/DOC-3991
    That will let you transfer your non purchased content
    For Purchased content log in to iTunes on the new computer
    In Itunes Store click on Purchased under the Quick Links section on the right.
    Download any music by clicking on the cloud button

Maybe you are looking for