Menu item stroke problems

I am unable to add a right aligned stroke on the word 'Snowdon Super Cup' because the border cuts across the word 'Cup'. (the stroke appears where the word 'Cup' starts)
How to I extend the border area in order for the menu item 'Snowdon Super Cup' to fit within the correct boundaries?

Hello,
Please confirm are you using Manual menu here?
If yes, please select the label "Snowdon Super Cup" by clicking on it twice and stretch the text box.
You can also clock on the tiny white arrow in blue circle at the top right corner, and in widget properties, change the "Item size" drop down to uniform size or uniform spacing.
Hope this helps.
Regards,
Sachin

Similar Messages

  • DW menu item font problems Snow Leopard

    I am having a problem in Dreamweaver with the font used for menu items. Out of PS, Fireworks, and Dreamweaver this is the only Adobe program where this problem is evident. I have tried many resolutions on the computer such as clearing font casche, diabling fonts, changing font charastics within DW, installing the latest PS font patch from apple, etc. If anyone has anything I can try to resolve this problem I would appreaciate it.

    I've been using Lion since it's release, it's fine.  Don't know what's holding you back.
    Did you take a higher res screenshot and run it through what the font?  From a glance I'm guessing at Conceilian outline, White Wolf.  And upgrading won't solve this problem because the font will still reside on the system.  An OS upgrade does not remove your custom fonts. It's going to be a process but you might just have to go through every outline font on your system.

  • C# Menu Item event problems

    Hey All,
    Hopefully my post gets through this time. I am having an issue with my C# application not receiving the menu events from Business One. If I run the sample VB app on my machine it works fine, and my C# code has the same logic. I have seen posts on the forum before with people having this issue but I do not think anyone has posted the reason.
    Any ideas why this is happening specifically with C#? Any SAP people out there had this happen before?

    Yes I have an event filter enabled on my forms. When i turn that off the menu event fires. That is weird isn't it?
    How do i add the menuitem event to my filter? I do not see that type in the help files. Also is there a certain order the filters need to be applied if I add the menuitem event?
    Thanks for the help

  • Abbreviate text menu items

    I'm working in Ai but this question applies to other Adobe programs.
    Is there some way to abrreviate the text menu items ("Stroke", "Opacity", "Character", "Paragraph", "Transform") to "S", "O", "C", "P", and "T", this would save space (working with two windows juxtaposed) and eliminates need to access the drop down menu on the right if working window is smaller.
    Perhaps this is too deep for the Preferences to reach... (but maybe it shouldn't be)
    thx

    It doesn't exist.
    Mylenium

  • Problem when trying to add a link to the left menu item!!!!

    Hi everyone,
    I am trying to put a new menu group on the left menu,with a link in that group for every one.On checking with the customization guide this is what i did
    for one link i did add the following lines in each of the files
    1)xlWebAdmin.properties
    - menuGroup.Misc-Menu=Misc Menu
    - menuItem.Misc-Menu.My-Nomination=My Nomination
    2) xlDefaultAdmin.properties
    - menuItem.Misc-Menu.My-Nomination.link=mynomineefrm?showfrm
    3) repacked the war and the ear
    4) Restarted my server
    When I login into the administration(xelsysadm) page I didnt see any menu item with name "My Nomination" which i am supposed to see.
    secondly it shows the menu item when ever i select some group and click on assign menu item.
    Moreover, when I try to assign this menu item to all users group it gives me this error
    On browser it prints
    Permission Denied to Assign Selected Menu Items
    You do not have the permissions to assign one or more selected menu items.
    on console it prints
    ERROR [SERVER] Class/Method: tcDataObj/eventPreInsert Error :Insert
    permission is denied
    ERROR [APIS] Class/Method: tcGroupOperationsBean/addMenuItems encou
    nter some problems: maoRejections:You do not have permission to insert this obje
    ct.
    ERROR [APIS] Class/Method: tcGroupOperationsBean/addMenuItems encou
    nter some problems: Error occurred while adding menu items.
    ERROR [WEBAPP] Class/Method: UserGroupMenuItemsAction/commitGroupAs
    signMenuItems encounter some problems: {1}
    Thor.API.Exceptions.tcBulkException
    This problem eat my happy sunday :-(, any one has solution for this problem?
    - Also if some one can help on how to link jsp to the new link will be helpful for me!
    Thanks,
    doki

    Design Console > Form Information > add new
    Class Name Organizations.Merge
    Description Move users from one organization to another
    Type menuitem
    Add following to xlWebAdmin.properties, xlWebAdmin_en_US.properties
    Organizations.Merge=mergeOrgs.do?Display
    menuItem.Organizations.Merge.link=mergeOrgs.do?MergeOrganizations
    menuItem.Organizations.Merge=Merge
    mergeOrgs.button.display=Merge Organizations
    Even you have to assign first to System Administrator group
    First go to Manage Group
    Select System Administrator Group
    Select Menu Item
    Click Assign and select newly craeted Menu Item and click Confirm
    These are the steps to see the new menu item. To make this menu item working:
    you'll have to write action class, form bean class and you'll have to create JSPs and make their entry in struts-config as welll as in Tiles-def.xml
    Then your menu item will work.

  • How to add vertical stroke to between top menu items?

    I have a horizontal Spry menu bar. How to add a vertical stroke between menu top items?
    BUT NOT outermost left and outermost right. Only to BETWEEN top menu items.
    In html file I tried this:
      <div id="main_menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Products</a></li>
          <li class=stroke></li>
          <li><a href="#">Services</a></li>
          <li class=stroke></li>
          <li><a href="#">News</a></li>
          <li class=stroke></li>
          <li><a href="#">Contact</a></li>
         </ul>
       </div>
    And in CSS-file I made a style:
    #MenuBar1 .stroke
    display: block;
    width: 1px;
    height: 16px;
    background-image: url(../images/gui/vertical_stroke.png);
    background-repeat: no-repeat;
    In Safari this Spry menu bar work fine. But stop working in Firefox and IE.
    Also DW4 warning me in properties panel that:
    "This menu bar is missing some important tags. Go to Code view and and make sure that each menu item contains an <a> tag."
    What is correct method to do this?

    In that case you will need to use images.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Untitled</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style>
    ul.MenuBarHorizontal a.line {    background: #EEE url(SpryMenuBarLine.gif) no-repeat 95% 50%; }
    ul.MenuBarHorizontal a.MenuBarItemSubmenu.line{    background: #EEE url(SpryMenuBarDownLine.gif) no-repeat 95% 50%; }
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu line" href="#">Item 1</a>
        <ul>
          <li><a href="#">Item 1.1</a></li>
          <li><a href="#">Item 1.2</a></li>
          <li><a href="#">Item 1.3</a></li>
        </ul>
      </li>
      <li><a href="#" class="line">Item 2</a></li>
      <li><a class="MenuBarItemSubmenu line" href="#">Item 3</a>
        <ul>
          <li><a class="MenuBarItemSubmenu" href="#">Item 3.1</a>
            <ul>
              <li><a href="#">Item 3.1.1</a></li>
              <li><a href="#">Item 3.1.2</a></li>
            </ul>
          </li>
          <li><a href="#">Item 3.2</a></li>
          <li><a href="#">Item 3.3</a></li>
        </ul>
      </li>
      <li><a href="#">Item 4</a></li>
    </ul>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    The images look similar to the following
    and
    I hope this helps.
    Ben

  • Repainting problems of the Menu items in Oracle Help Navigator

    All,
    I am facing a strange problem when using Oracle Help for my application which is developed in Java,Swings.
    Whenever, I open Help for any component through my application, the menu items in the Help screen are not visible. They are not getting repainted. Only when user drags the mouse over the items, they are getting repainted and visible to the user. This has been raised as a bug by our testing people. I couldn't get any help in aspects of any errors/exceptions being logged when the action takes place.
    Where can I have the log files for Help window?
    Can anyone help me and guide me to the right solution in this regards.
    My environ is like this:
    Windows NT, JRE1.4, Oracle Help - ohj-jewt-4_1_16.jar,
    Thanks in advance for all.
    regards,
    Kishore.

    iweb2 navbar is rendered by javascript widget, therefore you can change navbar font style with javascript; this is an efficient way to change navbar font style.
    Copy and paste the following into your pages using HTML Snippet:
    <script type = 'text/javascript'>
    function changeNavbar() {
    navCSS = parent.document.getElementById('widget0-navbar');
    navCSS.style.fontSize = '0.75em'; // font size, change to less than 1em to change font smaller;
    navCSSbg = parent.document.getElementById('widget0-bg');
    navCSSbg.style.textAlign = 'center'; // navbar list alignment;
    clearInterval(chkNavbar);
    chkNavbar = setInterval('changeNavbar()', 500);
    note: You won't see the changes in iweb, but you will see the change when view the pages online - after publishing.

  • Spry Menu Bar (horizontal) - Problems with uneveness (height variance) between adjacent items

    Hello:
    Like many I will confess that I am new to the spry experience and attempting to catch up.  I am trying to design a horizontal menu bar that employs a background image (repeating GIF gradient bar repeated along the the x-access) to create a beveled/rounded edge effect.  I have another with a different hue that is used on focus and mouse over, etc.  While this works well with the drop downs, there appears to be a "boxiness" between adjacent top level menu items and they appear to have slightly different height.  This seems to be determined by the text forms the content of any link or menu item.  In effect it creates other differences in appearance as the outer most (top and bottom edges) of the GIF appear to be cut off from one menu item to the next.  This leaves a very undesirable look to the page as it juts up and then falls back as it the top level item moves across the web page.
    The other point I should make is that this problem, although it exists in all browsers to some extent, is most pronounced in IE6 and below.  Unfortunately many of the anticipated visitors to this site are forced by their IT department to use IE6.
    My question is:  can you set a variable that overrides or determines the height of the background of the menu items?  Alternatively is there some other way of addressing the problem so that I can get a uniform look as the menu items transition to each other.
    Thanks in advance for any help that can be offered.
    Steve.

    Announcement: New to Spry, or  the Spry forums?
    Hide Details
    Before you post a topic please verify  that:
    You  are using the latest Spry files
    The latest version of  the Adobe Spry Framework is 1.6.1, this is the same version that ships  with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its  wise to upgrade your files to the latest version. This can easily be  done using the Spry Updater that can be found here.
    Your  question was not asked before
    Using the search  functionality on forums you can easily find out if your question has  been answered before. While you are in search, you can specify the  search locations. The Spry forum can be found under:
    Adobe  Labs > Spry Framework for Ajax
    Your question can not be  found in the existing documentation
    Spry provides you  with allot of documentation this can found on different locations. In  the sidebar of this forum you can find a small summary of resources that  will help you on your way.
    If these options do not apply to your question,  please be so kind to also supply the following information in your topic  together with a clear description of your issue:
    What  browsers does this issue occure:
    example: Internet Explorer 8 on  Window 7 and Firefox 3.0 on Mac OSX
    What version  of Spry are using:
    example: Spry 1.6.1 ( the version number can  be found in license header of the .css and .js files )
    What  is the url of your website or page in issue:
    example: http://www.example.com/page/in/issue.html
    Step  to reproduce the issue:
    example: Scroll down till you find the  header "help", there you will see a Spry Accordion. When you click on it  it will not open or close.
    So users can provide you with a  better answer, without having to ask you for further details.

  • Menu Item to run trusted JavaScript problem

    I am trying to add a menu item that runs a script. I converted the script from a batch process and found that I have to make the addWatermarkFromFile a trusted function. I am having problems though. It errors with an internal error has occured. This is what I have:
    app.addSubMenu({ cName: "Specials", cParent:"Tools"});
    app.addMenuItem({ cName: "Convert to CCR", cParent:"Specials", cExec:" ConvertToCCR()"});
    function ConvertToCCR() {var size = this.getPageBox("Media"); if ((size[0] == 0) & (size[1] == 396) & (size[2] == 612) & (size[3] == 0))
    { this.setPageBoxes({cBox: "Media",rBox: [-90,-108,702,504]}); this.setPageBoxes({cBox: "Crop",rBox: [-90,-108,702,504]});
    trustedAddWatermark ({bOnTop:false, cDIPath:"/Macintosh HD/Users/ben/Desktop/Acrobat Reference PDF's/Copy Change Request Half.pdf"});
    var inch = 72;
    for (var p = 0; p < this.numPages; p++) {
    // position rectangle
    var aRect = this.getPageBox( {nPage: p} );
    aRect[0] += 7.08*inch; // from upper left hand corner of page.
    aRect[2] = aRect[0]+1.18*inch; // Make it 1.38 inch wide
    aRect[1] = 1.05*inch;
    aRect[3] = aRect[1] - 24; // and 25 points high
    // now construct text field
    var f = this.addField("Month 1", "text", p, aRect )
    f.borderStyle = border.s;
    f.alignment = "center";
    f.textSize = 14;
    f.textColor = color.black;
    var cRect = this.getPageBox( {nPage: p} );
    cRect[0] += 7.08*inch; // from upper left hand corner of page.
    cRect[2] = cRect[0]+1.18*inch; // Make it 1.38 inch wide
    cRect[1] = .72*inch;
    cRect[3] = aRect[1] - 46; // and 45 points high
    // now construct text field
    var f = this.addField("Month 1 Exp", "text", p, cRect )
    f.borderStyle = border.s;
    f.alignment = "center";
    f.textSize = 14;
    f.textColor = color.black;
    var f = this.getField("Month 1"); // get the Field Object
    var myRect = f.rect; // and get its rectangle
    // make needed coordinate adjustments for new field
    myRect[0] = f.rect[2]+.32*inch; // the ulx for new = lrx for old
    myRect[2] = myRect[0]+1.18*inch; // move two inches for lry
    f = this.addField("Month 2", "text", p, myRect);
    f.borderStyle = border.s;
    f.alignment = "center";
    f.textSize = 14;
    f.textColor = color.black;
    var f = this.getField("Month 1 Exp"); // get the Field Object
    var myRect = f.rect; // and get its rectangle
    // make needed coordinate adjustments for new field
    myRect[0] = f.rect[2]+.32*inch; // the ulx for new = lrx for old
    myRect[2] = myRect[0]+1.18*inch; // move two inches for lry
    f = this.addField("Month 2 Exp", "text", p, myRect);
    f.borderStyle = border.s;
    f.alignment = "center";
    f.textSize = 14;
    f.textColor = color.black;
    var bRect = this.getPageBox( {nPage: p} );
    bRect[0] += 6.08*inch; // from upper left hand corner of page.
    bRect[2] = bRect[0]+.69*inch; // Make it .68 inch wide
    bRect[1] = .72*inch;
    bRect[3] = cRect[1] - 22; // and 22 points high
    // now construct text field
    var f = this.addField("Rep", "text", p, bRect )
    f.borderStyle = border.s;
    f.alignment = "center";
    f.textSize = 14;
    f.textColor = color.black;}
    Then I also have another file called "trustedAddWatermark"
    trustedAddWatermark = app.trustedFunction( function (bOnTop, cDIPath) {
    app.beginPriv();
    this.addWatermarkFromFile ({bOnTop: false, cDIPath: "/Macintosh HD/Users/ben/Desktop/Acrobat Reference PDF's/Copy Change Request Half.pdf"});
    app.endPriv();
    Then I get the error in the JS console when it is run:
    TypeError: this.addWatermarkFromFile is not a function
    3:Folder-Level:User:trustedAddWatermark.js
    The thing that I don't get is if I put the 1st script in a button using the Form tools it works fine but I can't get it to work as a menu item. Where am I going wrong???

    The first example I found was Ted Padova's goNext function:
    function goNext(oItem, oEvent, cName) {
    try{ // error catcher
    AFNumber_Keystroke(0, 0, 0, 0, "",true);
    if (oEvent.rc && AFMergeChange(oEvent).length == oEvent.target.charLimit)
    oItem.getField(cName).setFocus();
    } catch(eMsg) { // trap error display error message, field in and next field
    app.beep(3); // beep
    console.println("Error: " + eMsg + "\nField: " + oEvent.target.name + "\nNext Field: " + cName);
    } finally { // always run
    return; }
    } //end // goNext
    // call the goNext function in the field's format custom keystroke
    goNext(this, event,"NextField");

  • Javascript menu items problem.

    Hi,
    We have created a cutom iview which logs the user into a PHP web application. The login works fine. If we make the iview to appear in a new window, i can see all the menu items (coded in javscript) along with the other information on the webpage. On the other hand if we make the iview to appear in the content area of the portal, we see everything except the menu items.
    can anyone tell me what could be the problem. we have tried a lot of options but the result is still the same.
    Thanks in advance.
    Regards
    Hassan

    Hi Hassan,
    maybe you should change the iView's Isolation Method to URL
    hope it helps,
    Yoav
    Message was edited by: Yoav Toussia Cohen

  • 30EA2 problem: Menu items not available

    After having used Data Modeler 30EA2 successfully for a while, suddenly several menu items are missing.
    E.g. in my File menu "Open" is not shown (in fact only "Save", "Save as", "Compare With" and "Exit" is shown). This clearly makes the modeler unusable, as I cannot open my models!
    The problem continues even after I download the product (Product Version: 3.0.0.653) from OTN, unzip in a new location and use that.
    Any suggestions?
    -- Peter

    Hi Peter.
    please try removing (or renaming the folder called .oraclesqldeveloperdatamodeler in C:\Documents and Settings\<YOUR_WINDOWS_USER>)
    This is a folder where the datamodeler IDE caches are stored.
    Hope that helps,
    Ivaylo

  • External USB Hard Drive causes menu problem - menu items flash

    Greetings:
    I have a external USB hard drive (250 GB) that is partitioned into 3 hard drives. Two hard drives are formatted in MacOS standard and one is formatted in MacOS extended. I had to reformat the last drive in MacOS extended because the Macbook would not let me edit files on the drive.
    The problem is that when I connect to the drives, the menu malfunctions (I cannot see the date and time and the menu items flash). Dismounting the drives solves the problem.
    Do I need to reformat the hard drives? Or do I need a new USB drive?
    Thank you.
    EA

    Hmm, someone else had a similar problem.  Note the ":: Loading root filesystem module...-e" line.  That "-e" shouldn't be there.  It should be, instead, the module for the filesystem.
    As a workaround for right now, you can add your filesystem module to the MODULES array, and remove the "filesystems" hook.
    In that case, you'll probably want rootdelay=* to allow the drive some time to settle, and rootfstype=* to speed up filesystem detection while in kinit.
    By the way, what filesystem do you have on that machine?  Can you tell me what
    /usr/lib/klibc/bin/fstype < /dev/sda1
    outputs on a running system (you may need to be root, or add yourself to the "disk" group or something similar) - /dev/sda1 should be replaced if the usb drive is not sda1

  • Actobat 9 Execute Menu Item problem

    I have a new PC with Window 7 and have successfully loaded Acrobat 9 pro - but a lot of the Acrobat functionality is now missing (it all worked under the XP platform). For example, when creating a form, using a buttom with an 'Execute menu item' command is not possible - it's blank actually. As this is the most useful tool within Acrobat forms it's really annoying. I have upgraded to 9.4.1 which is supposed to be Window 7 compatible but no luck. I've unistalled and reinstalled and called Adobe support (4 hours!) and still no solution.
    Can anyone help me?

    After selecting this action you're supposed to go to the actual menus and
    select the menu item that should be executed. This is instead of choosing it
    from a list. Did you try that?

  • Option / Menu items render smaller 12 points in Chinese font problem

    Doesn't anyone experience when JVM SWING render Chinese Font smaller than
    12 points (say 9 points) very ugly in label, ...etc. Just not similar to Windows' one.
    How to config it to work properly?
    I find that menu items / option items both are rendered ugly in Star office
    application / OpenOffice.

    Hi,
    unfortunatly you cannot change the properties of Action object as you would do with JavaBeans. Instead you have to use the 'put' method.
    eg.:
    myAction.put(Action.SMALL_ICON, new ImageIcon(...));IMHO this was a bad decision, because it's not like the JavaBeans standard and you loose static type information. :-/
    -Puce
    Message was edited by:
    Puce

  • Problems regarding "Building TWAIN Menu Items" upon startup

    I had Photoshop CS2 and CS3 previously installed, just installed "Adobe Creative Suite 4" but photoshop won't work.
    I start the program and as it is loading it gets to "Building TWAIN Menu Items" and then it stops and the "Send error report" window appears.
    Any help please?
    It's urgent.
    Kindest Regards
    Liam

    Remove or repair the broken scanner driver that you installed.

Maybe you are looking for

  • Bank keys selection on F110

    Hi All, In the Customer master data ->payment transaction, There are two bank keys (of same country) with different Partner Bank Type 'A' , 'B' are assigned In F110 For the documents of type Direct bank collect, for some documents selected the first

  • Drawing with an effect other than Alpha Transparency and XOR

    Hello, I'm looking for a way to draw images (Or anything else for that matter) with simple effects other than the Alpha and XOR effects, such as Multiply, Subtract and Bitwise AND. I've realized it has something to do with the setComposite function,

  • Urgent!!! How to run report generated by RBuilder on Oracle9iAS

    Hi, I have created report(JSP format) using RBuilder and want to run the same using Oracle9iAS. Where shall I keep this JSP file under Oracle9iAS? I have Oracle Reports and Oracle9iAS installed on differnt OracleHome. Please Help!!! Regards Archana

  • BT Infinity for Cabinet 29, Ackworth Moor Top (WF7...

    A new fibre cabinet was installed a couple of months ago (March) .... which BT seem to have no knowledge of. I spoke to the engineers working on the cabinet on Saturday (17th May) who said there had been a 'mistake' on the original job sheet and only

  • BCS Functions

    Hi, For regional consolidation we need to execute the BCS functions once in 6 months, since the consolidated reports are required only once in 6 months. In this case we have only few consolidation frequency. The first execution of consolidation will