RE:  removing spaces in the dock

I used MacTuneup the other day to change the way my dock looked. Now I have a large space in my dock. Does anyone know how I can get rid of the space? Thank for your time. George

My suggestion is to use JTextArea insteadof JLabel and out your text in formatted way in JTextArea by enabling html.
Yoou can try this JLabel jbl = new JLabel("<html><body><p><code>"+"CALCULATED GEOMETRY :<br><br>"+calculatedGeometry.toString()+"</code></P></body></html>");all the bset

Similar Messages

  • How do I remove items from the dock?

    How do I remove items from the dock ?

    Single click and then drag it to the desktop. It will dissapear in a puff of smoke. You also may benefit by bookmarking and using:
    Find Out How Video tutorials

  • How to remove space below the table in smartforms

    how to remove space below the table in smartforms

    maintain a loop counter for item say count
    and in text editer write
    if count > 6
      new-page.
    endif.

  • I can't remove icons from the dock, they don't move at all when I try to drag and drop them off the dock

    I can't remove icons from the dock, they don't move at all when I try to drag and drop them off the dock any help out there?

    Restart and see if that solves your issue.

  • Remove spacer added to dock

    Good day to all of you!
    How can I remove a spacer that was added to my dock through a third part application? I have tried restarting the dock, removing the application (Cocktail) and checking in system preferences. I can not find a remedy for the mistake I made. Any help would be much appreciated! Thanks!
    N8

    Hi Nathan,
    Try deleting or removing your Dock's preferences (which will reset it to the defaults). This file is located at /Users/"Your username"/Library/Preferences/com.apple.Dock.plist.
    Hope that helps!
    —Hazy

  • Can't remove icons from the dock.

    I can't seem to remove the app icons from my dock. Usually i would just click the icon and drag it away or even right click it and have it removed from the dock. Now if I try to drag it out of the dock it doesnt move and when i right click it my only options are to ---Open at login/show in finder or open---. I ran disk utility, relaunched my dock, restarted my computer and shut it down yet the problem still persists. I was hopoing someone out there had an answer to this problem. I will call apple tomorrow morning if it wont go away.
    I dont know if this help but I just installed CS4 on my computer I i noticed the problem after it was installed.

    Click here and run the script at the bottom of the page.
    (38426)

  • Can't remove items from the dock

    Hey,
    i'm having this problem for quite some time, and it's starting to annoy me.
    When i try to remove something from my dock, lets say safari, for example, the dock auto reloads and the safari icon appears again. I tried to remove it dragging it out of the dock, using the "Remove from dock" right-click option and dragging it to the trash. It always reloads the dock automatically.
    I joke around with the dock appearance a while back, but dont know what i did wrong to create this issue.
    Anyone knows what's going on?
    Thanks in advance
    Sergio

    I dont think so, but i'll sure look into that. I'll post back if i find anything. Thanks
    Edit: After looking for some dock locking programs, i noticed that this programs lock the dock, not allowing to insert new items on it. As i can insert new things there i assume its not one. I've also searched for some programs like transparentDock and such, but nothing showed up so i guess thats not the problem.
    Message was edited by: Nearra

  • How can remove one of the dock in my mac pro .

    i did install the office microsoft on my mac pro twice so i need to remove one of them from the dock in the discktop.
    thanks

    "To remove an item from the Dock, just drag its icon onto the desktop.  By moving an icon out of the Dock, you aren't moving, deleting, or copying the item itself — you're just removing its icon from the Dock. The item is unchanged. Think of it like a library catalog card: Just because you remove the card from the card catalog doesn't mean that the book is gone from the library."
    from here: http://www.dummies.com/how-to/content/adding-and-removing-dock-icons-in-mac-os-x .html

  • I have accidently removed outlook from the dock. How can undo  ?

    Hello! i have accidently removed outlook from my dock. I can retrieve outlook?

    if you open the outlook application, it will come back onto the dock
    then hold the control key down while clicking on it's icon and you will get a small popup
    under the options is the choice to "keep in dock" this will make it stay put!

  • How to remove space between the lines

    Hi,
    In my repoprt output I am getting space between the lines. I have changed
    the repeating frame and field -> vertical elasticity and horizontal elasticity to fallowing combinations.
    fixed, fixed.
    variable, fixed,
    expand, variable,
    variable, expand
    Then also I am getting space between the lines of my output.
    Could you help me in this?
    Thanks

    Change the Vertical Elasticity of fields and frames to Variable. If for some fields or frames you don't want to change the vertical elasticity, then remove extra space by adjusting the height of fields/frames.
    Also check repeating frames property 'Vert. Space Between Frames'. Default is 0.
    Hope this helps.

  • I clicked on iphoto app, it wouldn't launch.  Then, I accidentally removed it off the dock.  How can I retrieve it?

    I clicked on my iphoto app, it wouldn't launch.  Then I accidentally removed the app from my dock.  How can I recover iphoto?

    The good news is that even though you've apparently deleted the application itself as well as its icon in the Dock, neither of those deletions will have affected your iPhoto library or the pictures in it. You would have to have deleted that separately for your pictures to be gone now.

  • JOptionpane is removing spaces in the message displayed??

    Hi
    I am trying to display a message having so many spaces in between.
    But the JOptionpane.showMessageDialog() is removing unnecessary spaces from the message.
    I tried using HTML formatting to retain the spaces. Even this did not help.
    Here is my code:
    File outFile = new File(outFileNameWithoutExt+".OUT");
                        read = new FileReader(outFile);
                        buffRead = new BufferedReader(read);
                        //read first line from .OUT file
                        String str = buffRead.readLine().trim();
                        //read and discard .OUT file data until we find "CALCULATED GEOMETRY"
                        while(!str.equalsIgnoreCase("CALCULATED GEOMETRY"))
                            //read the subsequent line from .OUT file
                            str = buffRead.readLine().trim();
                        //read and discard the empty line
                        buffRead.readLine();
                        StringBuffer calculatedGeometry = new StringBuffer();
                        //read first line in calculated geometry info
                        str = buffRead.readLine();
                        //read until we find an empty line
                        while(!str.isEmpty())
                            //append the calculated geometry info and new line character
                            calculatedGeometry.append(str+"<br>");
                            //read next line
                            str = buffRead.readLine();
                        //display the calculated geometry info
                        JLabel jbl = new JLabel("<html><p><code>"+"CALCULATED GEOMETRY :<br><br>"+calculatedGeometry.toString()+"</code></P></html>");
                        JOptionPane.showMessageDialog(null, jbl , "Calculated Geometry Information", JOptionPane.PLAIN_MESSAGE);Is anything wrong in my code??
    Please help.

    My suggestion is to use JTextArea insteadof JLabel and out your text in formatted way in JTextArea by enabling html.
    Yoou can try this JLabel jbl = new JLabel("<html><body><p><code>"+"CALCULATED GEOMETRY :<br><br>"+calculatedGeometry.toString()+"</code></P></body></html>");all the bset

  • I was charging my phone overnight and when I woke up and removed it from the dock, the orage LED was still on and the phone would not unlock

    I've tried holding down the power button, but it's completely unresponsive. The only thing indicating that there's any sort of charge is the LED at the top, but it still shows that it's charging, even when removed from the dock. I also tried plugging in the USB directly, but was faced with the same problem.

        liamarie,
    We want you to be able to power your device back up. Have you tried holding down the power button and the volume down key at the same time? Let us know if this helps.
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • How to delete an app off the desktop, without removing it from the dock

    Yep. I thought you would just drag it to the trash (like Windows) But when I do that, it deletes the whole Application.

    Hello there ...
    When you move files or apps from the desktop to the trash that is what you are doing, trashing them. If you want to keep the application (and keep it's shortcut in the dock, 'cause that what the dock is ... Shortcuts ...), then move the application either into /Applications or your user folder, then the dock shortcut will remain and the app will still work, but just not be on the desktop ...
    Hope that makes sense and helps ...
    Mitch

  • How do i remove mail from the dock?

    i want to use the gmail app instead of "Mail" in the dock. How do i move mail out of the dock?

    You're welcome.
    Trev Greenbank wrote:
    Seem to not be able to do it on the phone at all.
    Well, you're not alone, as I've stated, neither can I. Next time, if you want it done using the phone, find any 12 year old kid. They'll rearrange everything for you in a few seconds.

Maybe you are looking for

  • Printing Normal Portrait Layout in iCal

    Am I mssing something? How do you print my iCal weekly layout in the "Normal" portrait layout? Would like to print on "normal" 8.5x11 paper and put in 3 ring binder. There MUST be a easy way to do this?

  • Set up & siync New Z22 with old Z22 data

    My old Z22 malfunctioned, so I bought a new one. I would now like to get the data in the Palm software on my computer (not in Outlook) with my new handheld. I cannot fine documentation for how to do this, but it must be somewhere, as I am sure I am n

  • CS3 - Acrobat 8 Pro - stopped converting MS apps Word/Publisher/Excel

    Hello, SUDDENLY after having no trouble with this for 2 years, I get the message in the attached image whenever I try to convert a MS app document from Word, Publisher or Excel. Also cannot print to PDF from a web page or as a work around to the MS p

  • Unable to update QuickTime, won't install update, can't uninstall - HELP!

    Firefox (20.0.1) say need to update QuickTime. Properties show current version 7.6.4. Update button takes to download 7.7.3. It downloads ok, but will not install, says newer version already installed. Didn't find newer update than 7.7.3. Tried to un

  • HP Laser Jet connecting to MBP

    What is recommended method of connecting HP Laser Jet 6/6MP ? Had a problem with MB I exchanged for MBP