How do I make the Applications preference tab be useful again?

Once upon a time, there was a simple list of MIME types and options of how to handle each. Sometime ago, that morphed into an example of terrible UI design and functionality is critically compromised.
For an example, see http://i.imgur.com/EViHJ.png
Here are the problems:
1) The columns can't be resized, thus it is impossible to see the actual MIME types on the left side, which is kinda important as that's what I'm mapping to apps/actions through these settings.
2) There's a horizontal scrollbar with a couple pixels of movement. That's just plain sloppy. Both the window size and the column sizes are fixed, so its impossible to resize anything. When all elements are fixed size, there should not be a scrollbar horizontally, especially not one that barely moves anything. Its amateur night on the UI team.
3) MIME types aren't even shown in some cases. The 'friendly' names are listed first, knowing the MIME types almost completely out of view. That's bad enough. Worse, some don't show the type at all! Its sorta important to see that to know just what the hell I'm setting here.
4) Plugins/apps that don't directly list the MIME type are not selectable from the dropdown. Sometimes the best thing for handling a format doesn't officially claim to do so, but I should still be able to select it. Unfortunately, I can't.
Use case where this brokenness causes a bad problem:
I want to be able to view PDf files with a plugin, not download them. Firefix 4 broke the Quartz PDF plugin that was small and efficient. At least Schubert's fat plugin got updated in response so it sorta works. Those "Preview Documents" are actually PDF and PosctScript files (funny, I never knew those formats to be Preview documents, especially since Preview.app has no native file type and makes no documents). I know the first two must be application/pdf and application/ps, but waht is the third? I thought it would be application/x-pdf, but patching the plist for the plugin to add that doesn't help. What MIME type is that really that's listed there? No way to find out, so I can't fix this problem.
In summary, terrible UI design leads to unrepairable brokenness of the configuration, which only needs to be fiddle with because Firefox broke other stuff.
Please, quit trying to make ***** ripoffs of Chrome anti-features and put some damn effort into making Firefox suck less. If we wanted Chrome, we'd use it. Stop following the idiots at Google! Tabs on top, no status bar, fast version bumps, attempts to make part's of the URL non-visible, etc are all BAD IDEAS.
P.S. The submit a question process takes a half dozen screens of clicking through crap before I can type. The questions are dumb, the suggested 'existing answers' are even dumber.
P.P.S. Your forums ***** suck. Half the line returns I used are gone when I submit. When I edit, everything displays just as i entered it. Go back to viewing it and again some line breaks are missing while others are there as typed. How the hell do you break something so simple?
''Edited by a moderator due to language. See the [http://support.mozilla.com/kb/Forum+and+chat+rules+and+guidelines Rules & Guidelines] .''

I don't seem to get any tooltips. Even if those worked, it doesn't excuse the overall awful design of the UI here.
The plugin for PDF (and postscript) lists two MIME types in its plist. I tried adding what I think the third should be and restarted Firefox, but it still doesn't list that plugin as an option. There's really no excuse for not letting me choose the plugin if I know it'll work. What's the point of the interface if not to let me do just that?

Similar Messages

  • HT6154 i tunes cannot read the contents ofmy iphone.Asking me to go to the summary tab in iphone preferences and click restore to factory settings? I do not know how to get to the phone preferences tab, and won't this take out all of my contact info, musi

    I tunes does not read the contents of my iphone when plugged into my IMAC. It is asking me to go to the iphone preferences and hit restore? Does
    anyone know how I should do this? Will I lose all of my contacts, e-mails, etc. I did a backup on the phone to icloud as of now, but not sure
    what I should do just to sync with ITunes.

    That's right, there is an easier way, just check out my other answer to you:
    iMacange wrote:
    Otherwise, you can also do this if you're using a PC:
    1. Go to control panel where you can uninstall a program.
    2. Click on iTunes from the list of programs. There should be a button on top of the page that says “Repair”. Just click it.

  • How do I make the Application Window smaller?

    I installed an Adobe Elements application, but when I open it, it fills the whole screen. I would like it to be the size of a normal open window in my desktop, so I can see other things on my desktop at the same time. Can this be achieved in some way?
    Any help will be appreciated.
    Sheila K

    I don't think there is anything in preferences to change the window size, but what you can do is change a setting in the Window menu bar item so that the program does not create its "I take the world" interface, but instead you can see the Desktop in the areas that are not filled with your picture or the palettes you have open.
    So go to the Window menu item and UNcheck the
    the "Application Frame" item. I also nuke the "Application Bar" but you may find it of some use. You will see that you can then access your Desktop and the corner of any picture you have open can be used to drag and change the size of the picture.
    Francine

  • How do I make the "Open new tab" button positioned at the end of the tab strip, on the right, next to the last open tab, just as the standard Firefox should be.

    My "Open a new tab" button (the +) does not appear at the end of the tab strip, it does not look like it is given in all photos here in the support page. It did not look like this before either. Now I have it at the most left end i.e. before the tabs begin. I can move it to the most right, but it sticks there. I want it to be attached to the last open tab, as it used to be, and as is shown in example Firefox photos.
    Could be useful if I sent you a print screen, but I don't see an attachment option here.
    Thanks!

    See https://bugzilla.mozilla.org/show_bug.cgi?id=574833 - Installing Persona theme completely covers the caption buttons

  • How do you make the Filter so we can use the FIM cmdlets to list Users who have no Manager attribute

    I can easily create a Set of Users who are "unusual"
    The SET criteria is
    EmployeeID starts with %
    and Any of
        EmployeeStatus not starts with %
        EmployeeType not starts with %
        Manager not in All FIM users
    This criteria works and gives me all the users when I push the View Members button.
    But when I look at the Set's Filter it seems to refer to a uuid of that All FIM users Set. To be honest I dont fully understand the set's XPATH filter.
    What I hope to do is to some how build a filter so that the FIM cmdlets can be used to identify and fix up these users, especially those who do not have a valid Manager. There are hundreds of these non-standard users and although possible, its not practical
    to do this by hand via the "All Non Standard Users" set.
    Any hints welcomed.

    All users without a manager: Xpath Filters
    /Person[not(Manager=/Person)]
    or,
    /Person[Manager!=/Set[DisplayName='All People']/ComputedMember]
    <# Please do not anything in the production environment unless and until you are very much sure #>
    # Powershell Cmdlet to find all users in portal not having manager
    # Load FIMAutomation module
     if(@(Get-PSSnapin | ? { $_.Name -eq "FIMAutomation" } ).Count -eq 0)
         Add-PSSnapin FIMAutomation;
    $users = Export-FIMConfig -customConfig "/Person[not(Manager=/Person)]" -Uri "http://localhost:5725"  -OnlyBaseResources
    foreach ($user in $users)
    $x = (($user.ResourceManagementObject.ResourceManagementAttributes | Where-Object {$_.AttributeName -eq "DisplayName"}).Value) 
    Write-Host "$x"
    Thanks and regards,
    Anirban Singha(Bangalore)

  • How can i make the select-option selection screen use screen layout?

    I want to make the selection screen like follows.
    no:  xxxxxx   ~   xxxxxx.
    in the screen painter.
    can any expert tell me.
    thank you very much.

    Hi,
    In layout screen for description use text box and for input fields
    use two i/o box.Try follow like as bello code
    For ex: you are going to give date as a select-option:
    textbox      input/out field box   textbox   input/out field box  
    date      :    fkdat-low                to           fkdat-high
    in data declaretion:
    ranges:  fkdat  for vbrk-fkdat.
    in select query where statement:
         where date ge fkdat-low
         and date le fkdat-high.
    Regards,
    Ramya.

  • How can i make the pictures apear in different window again?

    hi!
    i been usin the iweb the last year, but when i update to the new iweb08 the pictures now aper in the same window ant if you hace text it mix with the slideshow.. so... i want the pictures to apear again like iweb06 in the diferent window when you make click in them... how can i change that option??

    I cannot even sign in. Can someone help please?

  • How to make the application offline

    I have X7 phone and each day the amount of my pulse is decreasing. the internet is working but I didnt use it. How can I make the application become offline and not receiving updates. I already set my widgets to offline mode but it still like that. need your help

    go to settings menu...then connectivity...then settings...set "Data use in home country " to always ask....so next time whenever any app would try to connect to internet then it would ask you to either cancel it or other options like  "connect automatically" or "connect this time only" 
    If you want that your phone should only use your home wifi only then set "Data use in home country" to WLAN only

  • How do you set the application directory to be constant in a project?

    Hello,
        How do you make the application directory to be same all the time? Every time I create a executable I want to be able to have the executable in the same directory all the time.
    Regards,
      Kaspar
    Regards,
    Kaspar

    Do you mean the path that the application builder puts your executable?
    Please mention the version of LV you're using or post a screenshot of your attempt, screenshots differ for LV versions.
    André
    Regards,
    André
    Using whatever version of LV the customer requires. (LV5.1-LV2012) (www.carya.nl)

  • How do I make an application the default?

      I installed Microsoft Office 2011.  I do not want to use Outlook for mail.  I want to use Apple Mac Mail.  Sometimes Outlook opens instead of Mail.  For instance if I click on an email link in Safari.  How do I stop this? 
      How do I make an application the default?  This would be the same as make a file type open with a default application in Windows.
      I hope someone can help.  I have looked in all the help files and not found the answer.
    Joe from Ohio

    Re setting a default app for email -
    Start up Mail. Open Mail's Preferences (Preferences in the Mail menu). Go to the General tab if it does not open with that chosen. First item in that screen, "Default email reader" - use the pulldown menu to select the app you wish to use. Then close the Preferences window and quit Mail.
    Re setting a default app for a given file type -
    Select a file of that type by clicking it once, then press Command-I (Get Info in File menu). Look down in the Get Info window to the section "Open with:" - use the pulldown menu there to select the app you wish to use for that file type, then click the "Change All..." button. From then on, double-clicking any file of that type should open it using the app you set.

  • HT2490 How do I make the top tab bar stay on the screen all the time

    How do I make the top bar stay on the screen all the time?

    "Top tab bar"?
    The top of the screen is where the applications menus appear on the left and system icons (time, volume. etc) appear on the right side.
    This entire area is "covered over" when you enter into "Full Screen" mode. You can expose it while still in full screen by moving your cursor over the area.

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

  • HT1364 I have moved my library to an external hard drive and changed the location of the iTunes media folder in Preferences, but every time I close and re-open iTunes, I have to do it all over again.  How can I make the iTunes media folder change permanen

    I have moved my library to an external hard drive and changed the location of the iTunes media folder in Preferences, but every time I close and re-open iTunes, I have to do it all over again.  How can I make the iTunes media folder change permanent?  I have an older machine with Windows XP.

    I don't believe mounting the hard drive should be necessary, unless you have several external drives and want your computer to recognise them as folders, rather than drives. I've never had to mount a hard drive, ever. If you don't know how to do it, then it shouldn't be necessary now.
    Try this:
    Prepare iTunes so that it can see the external drive.
    Make a note of which drive-letter the external drive has been allocated. (Look in Windows Exploer)
    Look at the file location for a song. Make sure it plays (and therefore that iTunes has found it). Highlight it and select File/Get Info/Summary>Where: and make a note of the drive letter for that song.
    Close and shut down the computer.
    The next time you turn the computer on again, connect the external drive
    Before you start iTunes - check the external drive in Windows Explorer. Is it ready, does it have the same drive-letter that it had last time? Can you go into the drive and see the files on it?
    Once you can, start iTunes. (If the drive lettter has changed, you need to work out why before going any further.)
    If iTunes fails to find your external drive, you need to check where iTunes is looking for your Library.
    Select the same song you checked before (presumably iTunes can no longer find it). Follow the procedure for locating it. You should be able to see where iTunes thinks the file is. It's the drive that counts. Which drive letter is iTunes looking at? Is it the same one that it was previously (which should also be the same one that the drive has now).
    What happens, which step do you have problems with?
    Message was edited by: the fiend

  • When I have many tabs open, & I am viewing the 1st one in the row of tabs, how can I make ctrl+T open tab next to it instead of down at the end of all the tabs?

    If, for example, I have 50 tabs open, and I happen to be working on the very first tab out of the long row of tabs (tab #1 out of 50 total tabs)....if I suddenly need a new tab next to the one I'm on so that I can do something else related to what I am doing on my current tab's website, pushing ctrl+t opens up the new tab clear down at the very end of the long row of tabs (i.e., the new tab would be tab #51). How can I make the new tab open up right beside the one I'm working on at the moment?

    You would need an extension to achieve this
    You can look at this extension:
    *Tab Utilities Lite: https://addons.mozilla.org/firefox/addon/tab-utilities-lite/

  • How do I make the Nook application my default reader on my IPad?

    How do I make the Nook application my default reader on the IPad?

    I have the same question and I don't see an answer.  I have downloaded the Nook for iPad.  I purchased a book and when I tried to download it, it asked me to download it into iBooks.  When I contacted B&N their suggestion was to make sure that iBooks was not set as my default for books.  When I went into the user guide I found nothing to help me change this option.  I have sinced received my download from B&N (two days later it just appeared in my nook app on my iPad) but since then I've purchased and tried to download 3 more books from B&N and the same things happens.  Should I just get rid of the iBooks app?

Maybe you are looking for