JMenu and the small space before...

You all have seen a JMenuBar? So you also see the small space from the left border to the position where the text beginns? How can i kill this space? I hate this space :)
Problem is, i want to put an icon at the beginning, but the icon starts where the text starts. Do you know what i mean?
Matthias

I believe the problem is with the JMenuItem, not the JMenuBar.
Yes, other people have questioned this in the forum, but not solution has been posted.
Please search the forum before posting questions. Thats what the search facility is for.

Similar Messages

  • I was cleaning up the desk top on an old power mac G4 when I restarted an got a circle with slash and the small spinning wheel under it nothing else

    I received an old Power Mac G4 Quick Silver and was cleaning the desk top.  When I restarted all I got was a circle with a slash and the small spinning wheel under it...nothing else

    I suppose 3.6V PRAM battery is run out , so you'd better replace it.
    Or resetting PRAM could solve the problem.
    http://support.apple.com/kb/HT1379?viewlocale=en_US

  • My MacBook Air was stolen and the id changed before I could erase it via "Find iPhone" app - can Apple erase my machine if I provide my serial number?

    My MacBook Air was stolen and the id changed before I could erase it via "Find iPhone" app - can Apple erase my machine if I provide my serial number?

    My MacBook Air was stolen and the id changed before I could erase it via "Find iPhone" app - can Apple erase my machine if I provide my serial number?

  • I used to have a itunes account and made a new one which is this one but i noticed that i have 1.00 on my account now and the one from before. is their a way i can merge both my balances to buy the new angry birds game!??

    I used to have a itunes account and made a new one which is this one but i noticed that i have 1.00 on my account now and the one from before. is their a way i can merge both my balances to buy the new angry birds game!??

    Hi Jacob...
    A $1.00 credit or an authorization hold ...
    The $1.00 charge is just an "authorization hold" > iTunes Store & Mac App Store: About credit-card authorization holds that will be credited back to your account usually within 24 to 48 hours.
    is their a way i can merge both my balances to buy the new angry birds game!??
    If it's a $1 credit from a redeemed iTunes gift card, sorry, but Apple's policy states that Apple ID accounts cannot be merged > Frequently Asked Questions About Apple ID

  • How to add new text and an empty space before a file name with Automator

    I can create a new service to add to multiple files some text before the file name but I need to add even an empty space; e.g. file name original  becomes: new text(space)file name original. The aim is to add this text and space to multiple files.
    I hope to be understood. Please can somebody help me?
    Thanks

    This is an old Apple-supplied AppleScript that will do the job.
    IMPORTANT: note the conditions of use: it will choose the frontmost Finder window to operate on. Therefore, open the folder you want to change the names of and make it the front finder window BEFORE running the script.
    Add to File Names
    This script is designed to add a prefix or suffix to files in the front window of the desktop.
    If no folder windows are open, the script will affect items on the desktop.
    Copyright © 2001–2007 Apple Inc.
    You may incorporate this Apple sample code into your program(s) without
    restriction.  This Apple sample code has been provided "AS IS" and the
    responsibility for its operation is yours.  You are not permitted to
    redistribute this Apple sample code as "Apple sample code" after having
    made changes.  If you're going to redistribute the code, we require
    that you make it clear that the code was descended from Apple sample
    code, but that you've made changes.
    --March 2014: Changes by Phil Stokes to make the script work on 10.9
    --these changes are simply reversing the order of parameters in the lines that have "copy" in them
    -- The following line is disabled due to a Menu Manager bug
    --set the source_folder to (choose folder with prompt "Pick the folder containing the files to rename:")
    try
              tell application "Finder" to set the source_folder to (folder of the front window) as alias
    on error -- no open folder windows
              set the source_folder to path to desktop folder as alias
    end try
    set the prefix_or_suffix to ""
    repeat
              display dialog "Enter the prefix or suffix to use:" default answer the prefix_or_suffix buttons {"Cancel", "Prefix", "Suffix"}
              copy the result as list to {button_pressed, prefix_or_suffix}
              if the prefix_or_suffix is not "" then exit repeat
    end repeat
    set the item_list to list folder source_folder without invisibles
    set source_folder to source_folder as string
    repeat with i from 1 to number of items in the item_list
              set this_item to item i of the item_list
              set this_item to (source_folder & this_item) as alias
              set this_info to info for this_item
              set the current_name to the name of this_info
              if folder of this_info is false and ¬
                        alias of this_info is false then
                        if the button_pressed is "Prefix" then
                                  set the new_file_name to the (the prefix_or_suffix & the current_name) as string
                        else
                                  set the new_file_name to the (the current_name & the prefix_or_suffix) as string
                        end if
                        my set_item_name(this_item, the new_file_name)
              end if
    end repeat
    beep 2
    on set_item_name(this_item, new_item_name)
              tell application "Finder"
      --activate
                        set the parent_container_path to (the container of this_item) as text
                        if not (exists item (the parent_container_path & new_item_name)) then
                                  try
                                            set the name of this_item to new_item_name
                                  on error the error_message number the error_number
                                            if the error_number is -59 then
                                                      set the error_message to "This name contains improper characters, such as a colon (:)."
                                            else --the suggested name is too long
                                                      set the error_message to error_message -- "The name is more than 31 characters long."
                                            end if
      --beep
                                            tell me to display dialog the error_message default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                            copy the result as list to {button_pressed, new_item_name}
                                            if the button_pressed is "Skip" then return 0
                                            my set_item_name(this_item, new_item_name)
                                  end try
                        else --the name already exists
      --beep
                                  tell me to display dialog "This name is already taken, please rename." default answer new_item_name buttons {"Cancel", "Skip", "OK"} default button 3
                                  copy the result as list to {button_pressed, new_item_name}
                                  if the button_pressed is "Skip" then return 0
                                  my set_item_name(this_item, new_item_name)
                        end if
              end tell
    end set_item_name

  • OEM12c - Added tablespace to database and the Available Space Used (%) Alerts is not checked

    Hello -  I'm new to OEM 12c and I'm still getting my head around the monitoring aspects of it.  I just added two temporary tablespaces to a database.  When I look at the tablespaces via OEM12c, I notice that the Avaliable Space Used (%) Alerts column has a check mark for all the tablespaces except the two I just created.  The original TEMP tablespace does have check in the column.  Will these two new tablespaces be monitored for used space?
    Thanks!
    Shawn

    I'm assuming you're on DB 11.2 or higher...    Temp and Undo are typically excluded from monitoring due to their cyclical nature.   Thresholds must explicitly be set from 11.2 and higher.  Please see this note for more details.   Another explanation might be timing... if you just added them, and the tablespace collection hasn't run, you won't see that check because the metric hasn't validated them yet.   If you go back after the collection runs, you should see (if they were a normal tablespace and the temp/undo monitoring wasn't in play)...
    How to - Exclude UNDO and TEMP Tablespaces From The Tablespace Used (%) Metric (Doc ID 816920.1)

  • How do I fix error code 401 - "unauthorized" I am taking an online class and the videos worked before, and now whenever I launch QuickTime, I get that error code.

    I recently began taking an online class. We are required to watch multiple videos. I was able to watch the QuickTime videos before, but now whenever I launch the videos in QuickTime I get the Error code 401. My teacher does not know whats wrong, because I do have authorization to watch the videos, I am just not sure how to go about it.

    You may try updating the same as a standalone download.
    S.Sengupta, Windows Entertainment and Connected Home MVP

  • HT204291 I had airplay with my ipad 2 and the apple tv before for a while. For some reason after a sync, i can no longer find the airplay icon on my ipad. Any idea why?

    I had been using airplay on my ipad2 mirror to my apple tv. Worked fine for a while.
    I sync and backed up my ipad yesterday and i could no longer see the airplay icon.
    Anybody know why and the solution please?

    Is your Apple TV "awake"?  Sometimes the AirPlay icon won't show for me if the Apple TV is sleeping - pressing a key on the Apple remote ususally resolves it.

  • HT201401 Camera stopped functioning,"iris" is not responsive and the small camera icon remains dim. Lens is clean. How do I restore?.

    Having trouble with my camera. The camera iris does not open and the camera icon remains dim. Tried restart, cleaning the lens, but it is still non-responsive. Everything else on the phone works. What am I missing?

    Follow http://support.apple.com/kb/HT1414

  • My ipod 4th generation cannot take pictures. i open the app and the small sliding  button is stuck on the video. please help

     

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • HT1199 my Word document is locked and the small colored disk keeps spinning

    Hi
    I have been working on a Word document all day and my last entry was a copy from a web site.
    First my computer locked up completly and then I received an error message from Microsoft. I responed by sending the message to Microsoft, however no corrections yet.
    What should I do to fix this document?
    Thanks
    [email protected]

    right click the file >  get info
    click on the padlock bottom right and enter password
    unclick Locked in the general area at the top

  • How do I set Catalogue to new larger internal hard drive and then delete the files from the smaller

    I have just had a new 1TB internal hard drive installed in my PC and then the original smaller internal 500GB hard drive cloned onto it. The new 1TB is now Local Dick C and the smaller 500GB has been changed from C and is now Local Disk F. PSE11 is running from the new C and all my pictures are on both C and F but the catalogue is pointing to F. I want to delete all of the old files on F to free up space since they are all cloned to the new 1TB C, so I want the PSE11 catalogue to point only to the pictures on C. I have tried creating a new Catalogue and importing my pictures from C. The images come in and look connected to C but, when I close PSE11 and then reopen that new catalogue, the image path reads F, as does the original catalogue. So, now I have two catalogues apparently point to F but I want to: 1) have only one catalogue pointing to C; 2) the delete catalogues pointing to F; 3) then reformat F: so I have a clean 500GB old hard drive for future expansion. Can some please help?

    Grant, all I can say is that another user was having almost identical issues a month or so ago. Unfortunately I cannot find the discussion thread now but my feeling is that it never resolved satisfactorily while both drives were connected.
    To save you a lot of work formatting, copying, erasing and so forth why not just unplug the SATA cable from the old drive and see if the Organizer then starts behaving nicely with the new drive. If it does then you can go the destructive route on the old drive.
    Hopefully the poster who had the similar problem might read this and update us on his/her situation - if it got resolved and how.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • How to remove the white space the in Excel  output

    Hi All,
    I was working with Oracle Apps r12.
    We have developed a custom report using xml and the report output type is Excel. when ran the report it completed with normal and the excel output is generated,We have a column called Amount and its having a white space before the amount.
    So that we cannot able to do any aggregate function with that data.
    For example the column called Amount
    28523.20
    32569.00
    25369.25
    in excel the output is coming like this, So when we select this three column and try to do any aggregate function it not giving any value.
    I have tried Trim but its dos'nt works, because the values are already trimed.
    Can any one could help on this.
    Thanks & regards
    Srikkanth

    Hi All,
    solved.
    Using this link i have removed the white space in my rtf and the white space in excel has removed
    http://office.microsoft.com/en-in/word-help/show-or-hide-formatting-marks-HP005189641.aspx
    Regards
    Srikkanth

  • How to I get rid of the small gap between overlapping objects

    Hi
    I can't seem to get rid of a small gap/line between 2 objects I've used the shape builder tool on.
    I do as follows:
    1. I have 2 objects overlapping
    2. I remove the red sektion, so I'm left with a pink circle and a red obejct inside, using the Shape Builder tool
    3. If I place an object below the 2 objects, in the same color as the red object, I get a small line between the 2 red colors. It almost seems like the pink circle and the small red object is not aligned, but they are.
    I've tried to turn off Anti aliasing and align to Pixel grid, but nothing seems to work.
    Is there no way to have 2 objects on top of each other, without having the bottom one making a small line/gap?
    Hope you can help me.
    Thanks in advance!

    Although I've seen a result like that before, I can't seem to reproduce it here now. It's one of the reasons I never use the Shape Builder tool to do anything that can be done without it.
    Is there no way to have 2 objects on top of each other, without having the bottom one making a small line/gap?
    There is, of course. There is also always more than one way to do something. It might be better if you cut the dark ellipse out of the light one completely using the more mechanical Pathfinder > Minus Front feature rather than inducing an "interpretation" with the Shape Builder.

  • After upgrading to Mavericks, the free space on my SSD keeps going down for no apparent reason

    I downloaded Mavericks and installed it on my macbookpro ( with Crucial M4 SSD) and the free space on my ssd keeps going down for no reason. I reinstalled it from a bootable flashdrive, and the free space went from 20G to 60. Since then it keeps going down and I am now on 48G. I cannot find the source of the drain. Anyone else with the same problem?

    http://reviews.cnet.com/8301-13727_7-20025542-263.html
    I have not tested the solution suggested in the article linked above.
    But hope it helps.

Maybe you are looking for

  • Importing Component Video to MacBook Pro

    Hi All, I have a satellite receiver with a Y Pb Pr output and an HDMI output. I've recorded a few programs that I would like to transfer to my MacBook Pro. I'm confused by the available cables. Can someone tell me what cable I need and the procedure

  • 24" iMac purring

    Hi, I've been having this none stop purring sound coming out of my core 2 duo iMac. It even purrs is sleep mode. This started the day after I wall mounted the iMac. I was very careful when mounting the imac following every instruction in the manual.

  • Problems transfering with itunes/explorer

    hi i just got a new ipod shuffle from apple after my old one died, im having trouble transfering songs to the ipod with itunes, as soon as i drag a song or playlist and drop it onto the shuffle it begins the transfer stage, then it disconnects itself

  • SAP Router Status is Cancel!! ???? Plz Help!! Urgent!!

    Hi, I am trying to open a connection for one of my systems, but the status of router is showing cancel... for that, my other opened connections are showing in gray color. what should I do 1st step? Thanks, I will post Points for sure!! Thanks,

  • Find out related Progrom

    Dear All experts ,        Hallo, anyone here know any tables or tcode we can find  out any of the program name are linked or related. Exaple Program ZABC have a include program called ZINCLUDE.  Now i want to  find program ZINCLUDE is used by ZABC pr