Unable to Adjust Sub Menu

Hi,
I am unable to 'permanently' adjust my sub menu on any of the x,y,z axis to align it to my preference.
After moving it to my liking, when I click away from the menu it snaps back to original position?!
Another guy back in april 2012 had this issue http://forums.adobe.com/message/4369269,
surely this must have been fixed?
Hopefully Im just being foolish.........Please point me to the solution.
Best Regards,
Ross

Thank you for the screen recording.
There is still one issue I need help with please. To produce "vertically
spaced", "rounded" buttons I try to use an "invisible" 1px border on the
menu item. This is a a very hit and miss process, sometimes the border
jumps back to solid black, sometimes the border resets to 0px...
Could you please check to see if it is a bug, or is there a specific order
of application that I need to know?
Thanks,
Peter
Peter Claridge
Member of The Directors Guild
w: www.peter-claridge.com
e: [email protected]
t: +49 89 613 98 240
f: +49 89 613 98 241
m: +49 171 2685600
skype: claridge_p
IMDB Résumé:  www.imdb.me/peter-claridge

Similar Messages

  • How to create a sub menu for the transaction se38

    Hi All,
    I have created menu item in se38 using menu exit.
    By using the enhancement SEU00002 .
    That menu item is displayed under utilities menu bar.
    But i am unable to create sub menu for that.
    My requirement is to create sub menu to the custom menu item.
    How can we create a sub menu to the transaction se38.

    Hi,
    it looks like that user exit SEU00002 offers only one extra function +CUS. This function then calls FM EXIT_SAPMS38E_010. Hence I do not think that it is possible to create sub menu with this user exit.
    Anyway you can try to modify SAP standard. You need to modify menu for SE38 and then add your code for handling new function codes. You can easily find where you will have to add your code for handling functions from your sub menu. You just need to look for usages of the FM EXIT_SAPMS38E_010.
    Cheers

  • Unable to Delete a Menu.

    Hi,
    I am having problems removing a menu (NNTP Newsgroup Actions).
    I can successfully delete all the menu items below this menu but then when
    I then try to delete the menu itself, using the Delete method of the
    GWMenu object, no error is raised but the menu remains visible in the
    client.
    An overview of how my C3PO works:
    - Read a text file containing the menu items to be removed. This is
    performed during the Init function of the CommandFactory. A menu item is
    specified by the full 'path' e.g. Actions|NNTP Newsgroup Actions|New
    Discussion. The menu items are stored in a (globally declared) Scripting
    dictionary object.
    - In the CustomiseMenu function I call a procedure to iterate through the
    menu items to be removed. Beginning with the top level menu object, the
    code drills down the menu path identifying each menu level. If the menu
    item is found, the menu type is determined (i.e. GWMenu or GWMenuAction)
    and an appropriate object is instantiated and the Delete method called. I
    have pasted the functions below.
    - The CustomizeMenu function returns False so that the changes are not
    volatile and applied the first time an instance of a context is created.
    (Assume that the menus are removed regardless of the context.)
    Can anyone suggest what I am doing wrong?
    Many thanks in advance,
    Andy
    My environment:
    GroupWise client version: 7.0.2 (6/4/2007)
    Dev Language VB6 SP6
    OS: Windows XP
    Public Function CustomizeMenu(sGWContext As String, objGWMenu As Object)
    As Boolean
    'The changes are not volatile.
    CustomizeMenu = False
    'Remove the menu items listed in the global dictionary object:
    gdicMenuItems.
    Call UpdateLogFile("")
    Call UpdateLogFile("")
    Call
    UpdateLogFile("*********************************** *************************************")
    Call UpdateLogFile("*")
    Call UpdateLogFile("* CustomizeMenu Called for Context: " & sGWContext)
    Call UpdateLogFile("*")
    Call
    UpdateLogFile("*********************************** *************************************")
    Call UpdateLogFile("")
    Call RemoveMenus(objGWMenu)
    End Function
    Private Sub RemoveMenus(ByRef objTopMenu As Object)
    'This procedure goes through the list of menu items stored in the global
    dictionary object: gdicMenuItems
    'and if they exist, the item is deleted.
    'A typical entry in the dictionary object is "File|New|Document Version"
    'The last component in the menu item path is the menu item that is deleted.
    Dim objMenu As Object
    Dim objGWMenuAction As C3POTypeLibrary.IGWMenuAction
    Dim objGWMenu As C3POTypeLibrary.IGWMenu
    Dim varFullMenuPath As Variant ' Menu path found in dictionary
    object. e.g. "File|New|Document Version"
    Dim strFullMenuPath As String ' The full menu path as a string.
    Dim arrFullMenuPath() As String ' Menu path as an array, split by the
    '|' character.
    Dim strMenuItemName As String ' Menu path element e.g. File or New
    or Document Version.
    Dim lngMenuItemIdx As Long ' Loop index for drilling down the
    menu path.
    Dim blnMenuFound As Boolean ' Flag indicating whether the menu was
    found.
    Dim strMsgTxt As String ' Message box text.
    On Error Resume Next
    Call UpdateLogFile("RemoveMenus Procedure Started.")
    Call UpdateLogFile("")
    'Go through all the menus to be removed.
    For Each varFullMenuPath In gdicMenuItems
    'Convert the variant object representing the full menu path into a
    string.
    strFullMenuPath = CStr(varFullMenuPath)
    Call UpdateLogFile("Strip the menu item: " & strFullMenuPath & ".")
    'Split the menu into its component parts.
    arrFullMenuPath = Split(CStr(varFullMenuPath), "|")
    'Set the Menu object to represent the top level menu.
    Set objMenu = objTopMenu
    'Assume the menu can not be found.
    blnMenuFound = False
    'Drill down the menu path.
    For lngMenuItemIdx = LBound(arrFullMenuPath) To UBound(arrFullMenuPath)
    strMenuItemName = arrFullMenuPath(lngMenuItemIdx)
    'Set the Menu item object to be the desired child menu item.
    Set objMenu = objMenu.MenuItems.Item(strMenuItemName)
    Select Case Err.Number
    Case 0
    ' The child menu item was found.
    Call UpdateLogFile(String(lngMenuItemIdx, vbTab) & "Found
    menu item: '" & strMenuItemName & "'.")
    blnMenuFound = True
    Case 91
    ' The menu does not exist - therefore it does not have to
    be removed.
    Err.Clear
    Call UpdateLogFile(" * Unable to find the menu item: '" &
    strMenuItemName & "' as part of: " & strFullMenuPath & " in this context.")
    blnMenuFound = False
    Exit For
    Case Else
    strMsgTxt = "* An unexpected error was raised in the
    'RemoveMenus' procedure when attempting to " & _
    "instantiate an object representing a menu." &
    vbCrLf & vbCrLf & _
    "The full menu path was: " & strFullMenuPath & vbCrLf
    & vbCrLf & _
    "The menu item name was '" & strMenuItemName & "'." &
    vbCrLf & vbCrLf & _
    "The error number was " & Err.Number & " with the
    description:" & _
    vbCrLf & vbCrLf & Err.Description & vbCrLf & vbCrLf &
    cstrHelp
    Call UpdateLogFile(strMsgTxt)
    MsgBox strMsgTxt, vbExclamation, cstrAppTitle
    Err.Clear
    blnMenuFound = False
    Exit For
    End Select
    Next lngMenuItemIdx
    'If the menu item was found, try to delete it.
    If blnMenuFound = True Then
    Call UpdateLogFile("Menu Identified: " & strFullMenuPath & ".
    Caption: " & objMenu.Caption)
    ' If the menu has previously been stripped, the objMenu object may
    be 'Nothing'.
    ' In this case, do not attempt to remove it.
    Call UpdateLogFile("The menu type: " & TypeName(objMenu))
    If TypeName(objMenu) = "Nothing" Then
    Call UpdateLogFile("* The menu type is 'Nothing' therefore the
    menu no longer exists in this context.")
    Else
    Call UpdateLogFile("Stripping the menu ...")
    Select Case objMenu.ObjType
    Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENUACTION
    Set objGWMenuAction = objMenu
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to set a GW Menu
    Action type object to this menu. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    objGWMenuAction.Delete
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to delete a GW
    Menu Action type object. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    Call UpdateLogFile("Stripped the action menu
    item: " & strFullMenuPath & ".")
    End If
    End If
    Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENU
    Set objGWMenu = objMenu
    Call UpdateLogFile("The GW Menu has " &
    objGWMenu.MenuItems.Count & " sub menu items.")
    Call UpdateLogFile("The GW Menu Parent: " &
    objGWMenu.Parent.Caption)
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to set a GW Menu type
    object to this menu. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    objGWMenu.Delete
    If Err.Number <> 0 Then
    Call UpdateLogFile("* Failed to delete a GW
    Menu type object. Err Number: " & Err.Number)
    Call UpdateLogFile(Err.Description)
    Err.Clear
    Else
    Call UpdateLogFile("Stripped the menu item: "
    & strFullMenuPath & ".")
    End If
    End If
    End Select
    End If
    End If
    Next ' Next (full) menu path.
    Set objMenu = Nothing
    Set objGWMenuAction = Nothing
    Set objGWMenu = Nothing
    End Sub

    Hi,
    Novell informs me that the behaviour described below is normal. It is not
    possible to delete any standard menu object (i.e. any client menu provided
    by Novell). However, you can delete custom-made menus.
    I think the documentation is misleading in that it states that we can not
    delete 'root' menus. I understood this to be only the top level menus,
    but this is not the case. We can not delete any standard client menu
    which has child menu items regardless of their position in the menu
    structure.
    Thanks,
    Andy
    Andy Cooper wrote:
    > Hi,
    > I am having problems removing a menu (NNTP Newsgroup Actions).
    > I can successfully delete all the menu items below this menu but then when
    > I then try to delete the menu itself, using the Delete method of the
    > GWMenu object, no error is raised but the menu remains visible in the
    > client.
    > An overview of how my C3PO works:
    > - Read a text file containing the menu items to be removed. This is
    > performed during the Init function of the CommandFactory. A menu item is
    > specified by the full 'path' e.g. Actions|NNTP Newsgroup Actions|New
    > Discussion. The menu items are stored in a (globally declared) Scripting
    > dictionary object.
    > - In the CustomiseMenu function I call a procedure to iterate through the
    > menu items to be removed. Beginning with the top level menu object, the
    > code drills down the menu path identifying each menu level. If the menu
    > item is found, the menu type is determined (i.e. GWMenu or GWMenuAction)
    > and an appropriate object is instantiated and the Delete method called. I
    > have pasted the functions below.
    > - The CustomizeMenu function returns False so that the changes are not
    > volatile and applied the first time an instance of a context is created.
    > (Assume that the menus are removed regardless of the context.)
    > Can anyone suggest what I am doing wrong?
    > Many thanks in advance,
    > Andy
    > My environment:
    > GroupWise client version: 7.0.2 (6/4/2007)
    > Dev Language VB6 SP6
    > OS: Windows XP
    > Public Function CustomizeMenu(sGWContext As String, objGWMenu As Object)
    > As Boolean
    > '
    > 'The changes are not volatile.
    > CustomizeMenu = False
    > '
    > 'Remove the menu items listed in the global dictionary object:
    > gdicMenuItems.
    > Call UpdateLogFile("")
    > Call UpdateLogFile("")
    > Call
    >
    UpdateLogFile("*********************************** *************************************")
    > Call UpdateLogFile("*")
    > Call UpdateLogFile("* CustomizeMenu Called for Context: " & sGWContext)
    > Call UpdateLogFile("*")
    > Call
    >
    UpdateLogFile("*********************************** *************************************")
    > Call UpdateLogFile("")
    > '
    > Call RemoveMenus(objGWMenu)
    > '
    > End Function
    > Private Sub RemoveMenus(ByRef objTopMenu As Object)
    > '
    > 'This procedure goes through the list of menu items stored in the global
    > dictionary object: gdicMenuItems
    > 'and if they exist, the item is deleted.
    > '
    > 'A typical entry in the dictionary object is "File|New|Document Version"
    > '
    > 'The last component in the menu item path is the menu item that is deleted.
    > '
    > Dim objMenu As Object
    > Dim objGWMenuAction As C3POTypeLibrary.IGWMenuAction
    > Dim objGWMenu As C3POTypeLibrary.IGWMenu
    > Dim varFullMenuPath As Variant ' Menu path found in dictionary
    > object. e.g. "File|New|Document Version"
    > Dim strFullMenuPath As String ' The full menu path as a string.
    > Dim arrFullMenuPath() As String ' Menu path as an array, split by the
    > '|' character.
    > Dim strMenuItemName As String ' Menu path element e.g. File or New
    > or Document Version.
    > Dim lngMenuItemIdx As Long ' Loop index for drilling down the
    > menu path.
    > Dim blnMenuFound As Boolean ' Flag indicating whether the menu was
    > found.
    > Dim strMsgTxt As String ' Message box text.
    > '
    > On Error Resume Next
    > '
    > Call UpdateLogFile("RemoveMenus Procedure Started.")
    > Call UpdateLogFile("")
    > '
    > 'Go through all the menus to be removed.
    > For Each varFullMenuPath In gdicMenuItems
    > '
    > 'Convert the variant object representing the full menu path into a
    > string.
    > strFullMenuPath = CStr(varFullMenuPath)
    > Call UpdateLogFile("Strip the menu item: " & strFullMenuPath & ".")
    > 'Split the menu into its component parts.
    > arrFullMenuPath = Split(CStr(varFullMenuPath), "|")
    > '
    > 'Set the Menu object to represent the top level menu.
    > Set objMenu = objTopMenu
    > '
    > 'Assume the menu can not be found.
    > blnMenuFound = False
    > '
    > 'Drill down the menu path.
    > For lngMenuItemIdx = LBound(arrFullMenuPath) To UBound(arrFullMenuPath)
    > strMenuItemName = arrFullMenuPath(lngMenuItemIdx)
    > 'Set the Menu item object to be the desired child menu item.
    > Set objMenu = objMenu.MenuItems.Item(strMenuItemName)
    > Select Case Err.Number
    > Case 0
    > ' The child menu item was found.
    > Call UpdateLogFile(String(lngMenuItemIdx, vbTab) & "Found
    > menu item: '" & strMenuItemName & "'.")
    > blnMenuFound = True
    > Case 91
    > ' The menu does not exist - therefore it does not have to
    > be removed.
    > Err.Clear
    > Call UpdateLogFile(" * Unable to find the menu item: '" &
    > strMenuItemName & "' as part of: " & strFullMenuPath & " in this context.")
    > blnMenuFound = False
    > Exit For
    > Case Else
    > strMsgTxt = "* An unexpected error was raised in the
    > 'RemoveMenus' procedure when attempting to " & _
    > "instantiate an object representing a menu." &
    > vbCrLf & vbCrLf & _
    > "The full menu path was: " & strFullMenuPath & vbCrLf
    > & vbCrLf & _
    > "The menu item name was '" & strMenuItemName & "'." &
    > vbCrLf & vbCrLf & _
    > "The error number was " & Err.Number & " with the
    > description:" & _
    > vbCrLf & vbCrLf & Err.Description & vbCrLf & vbCrLf &
    > cstrHelp
    > Call UpdateLogFile(strMsgTxt)
    > MsgBox strMsgTxt, vbExclamation, cstrAppTitle
    > Err.Clear
    > blnMenuFound = False
    > Exit For
    > End Select
    > Next lngMenuItemIdx
    > '
    > 'If the menu item was found, try to delete it.
    > If blnMenuFound = True Then
    > Call UpdateLogFile("Menu Identified: " & strFullMenuPath & ".
    > Caption: " & objMenu.Caption)
    > ' If the menu has previously been stripped, the objMenu object may
    > be 'Nothing'.
    > ' In this case, do not attempt to remove it.
    > Call UpdateLogFile("The menu type: " & TypeName(objMenu))
    > If TypeName(objMenu) = "Nothing" Then
    > Call UpdateLogFile("* The menu type is 'Nothing' therefore the
    > menu no longer exists in this context.")
    > Else
    > Call UpdateLogFile("Stripping the menu ...")
    > Select Case objMenu.ObjType
    > Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENUACTION
    > Set objGWMenuAction = objMenu
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to set a GW Menu
    > Action type object to this menu. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > objGWMenuAction.Delete
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to delete a GW
    > Menu Action type object. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > Call UpdateLogFile("Stripped the action menu
    > item: " & strFullMenuPath & ".")
    > End If
    > End If
    > Case C3POTypeLibrary.GWOBJTYPE.eGW_GWMENU
    > Set objGWMenu = objMenu
    > Call UpdateLogFile("The GW Menu has " &
    > objGWMenu.MenuItems.Count & " sub menu items.")
    > Call UpdateLogFile("The GW Menu Parent: " &
    > objGWMenu.Parent.Caption)
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to set a GW Menu type
    > object to this menu. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > objGWMenu.Delete
    > If Err.Number <> 0 Then
    > Call UpdateLogFile("* Failed to delete a GW
    > Menu type object. Err Number: " & Err.Number)
    > Call UpdateLogFile(Err.Description)
    > Err.Clear
    > Else
    > Call UpdateLogFile("Stripped the menu item: "
    > & strFullMenuPath & ".")
    > End If
    > End If
    > End Select
    > End If
    > End If
    > '
    > Next ' Next (full) menu path.
    > '
    > Set objMenu = Nothing
    > Set objGWMenuAction = Nothing
    > Set objGWMenu = Nothing
    > '
    > End Sub

  • I need help with adobe muse sub-menu styling

    i need help with adobe muse sub-menu styling~!  i can adjust them to exactly how i like them, but then when i go to the next set of sub-menus, the other ones revert back to the starting white/black boxes.  i am frustrated as i have redone this so many times!  Please help me!

    To achieve this, you can use an accordion widget with custum styling.
    IF you search for Terry White, Muse, accordion, you will find some video tutorials on YouTube.

  • Unable to Adjust the Auto Locking Facility in Noki...

    Unable to Adjust the Auto Locking Facility in Nokia C2-03, If anyone knows means please post the solution currently i am using v 07.63 version of frimware

    NothingNat wrote:
    There is no options like phone in settings...
    Did you check properly ..(Scroll down till the end) ??? 
    Menu --> Settings --> PHONE ... and there on ..

  • Horizontal Spry Menu Bar with Horizontal Sub Menu

    I have created a horizontal menu bar with only one main menu item leading to a sub menu. I would like this sub menu to display horizontally also, instead of vertically as added by default.
    I am relatively new to dreamweaver and would appreciate any help possible.

    Came across the fix by accident thru extensions in menu bar,
    and choice of cursor for each section. Feeling happy! Happy New
    Year everyone.

  • Muse 2014 -sub menu items appearing on roll-over etc.

    Hi, complete newbie, so sorry if this has already been covered elsewhere. Only started using Muse about 1 month ago and now using Muse 2014 - using horizontal menu widget and discovered how it now shows sub-menus when hovering over the main menu item- I find this great!
    I want a 'Contact Me' page with a basic form and this is not a problem, however, I want the sub-menus to appear when hovering over the other main menu items, but not the contact me page - might be completely off here, but created a 'Thank you' page as a child page of the contact me page and only want this displayed (not as a sub-menu choice when hovering over the contact me main menu item) when they have clicked the submit button on the form (I know how to set this re-direction in the forms options). Have tried playing with menu on the master page - switching off the edit together and changing settings on only the contact me menu item - without success- seems to apply to all main menu items.
    I would like to know how to achieve sub-menus on other menu items - but not on contact me item;  or whether I am going about trying to have a 'Thank you' response when someone submits the contact me form in the completely wrong way - can this be better achieved by other means?
    I would really appreciate your advice and help. My published site is 'onyerbikegeordie.uk' with the main menus - except not with a contact me page as yet, but would  give you an idea of what I am trying to achieve except for a contact me page.
    Sorry for the long post, but thanks for reading and in anticipation of your help!
    Joe
    Message was edited by: Joe Fitzpatrick

    Hi, managed to find the answer to this myself. In Plan, right-click on page and select Menu Options > Exclude Page from Menus. Job Done!
    Joe

  • Cluster (sub menu) submit button grayed out

    hello all
    as of today my compressor has stopped allowing me to submit the batch i set up.
    having sent an item from FCP to compressor, i get to set the options for settings and destination and then when i hit the submit button a second menu pops down regarding cluster options of which i have none. i add a name to this box yet no mater what other options i change the *submit button in this sub menu remains grayed out!*
    http://twitpic.com/jj7n2
    i have tried reinstalling compressor, and eventually the whole suit. i have removed the various prefs and qmaster stuff. i have used the fix compressor utility from digital rebel, repaired permissions and cleared out cache, but still *grayed out submit*.
    what thoughts cloud genii?

    I'm having the same problem.
    This comes after suffering persistent crashing of Compressor 3.5 on launch and finally having to reinstall to at least fix the crashing problem. But now I can't submit any processes - the button is greyed out.
    Can't remember setting this up originally, but it use to say "This Computer" for processing - do I need to add my computer to a list of available processors?
    Any help hugely appreciated,
    Simon

  • Can't access in  Finder Contextual Menu  the sub-menu named More

    Hi!
    I was trying to learn how to use Automator, in the web page
    http://www.macosxautomation.com/automator/examples/ex03/index.html
    and I realize that I can't access in Finder Contextual Menu the sub-menu named More for choose Automator > Create Workflow... from the sub-menu.
    Someone can help me to configure the finder in order to

    That page is out of date since it doesn't reflect the change in Snow Leopard that did away with the More contextual menu. Try this. System Preferences->Keyboard->Keyboard Shortcuts->Services->Development->enable Create Workflow. Close the prefPane, select the object, CONTROL-click->Services->Create Workflow.
    If that solves your issue, then send a message to the page's developer and ask them to update it.
    BTW, see http://discussions.apple.com/thread.jspa?threadID=2241804 for a four-parter by Sal Saghoian on *Automation in Snow Leopard*
    and this, which describes the old and new automator—services stuff:
    http://www.reynoldsftw.com/2009/08/automator-and-finder-interactions-in-os-x-10- 6/

  • Sub-menu of eSubmit is empty in non-English language (Russian)

    BPC 7.5
    BPC for Excel in English is working correctly, but in Russian sub-menu of eSubmit is empty

    Hi Sorin!
    Thank you for reply!
    Yes, russian language for BPC installed.
    Test was done with the same user for both language - in english everything is ok, in russian except submenu of "eSubmit" too.
    Only eSubmit's submenu is empty
    p.s. I see and can run eSubmit's macros in Excel (in russian) if I add them on Excel toolbar as icon (not from Planning and Consolidation -> eSubmit -> ..)
    Edited by: Maxim Pak on Nov 17, 2010 6:57 AM
    Edited by: Maxim Pak on Nov 17, 2010 7:19 AM

  • Unable to adjust bass/treble, and channels are coming out of both-Audigy SE model: SB0

    Greetings. I just installed a fresh new copy of Windows XP Professional-- and decided it was a good idea to upgrade from my Li've! value from 999 to a better sound card...At least so?I hoped. I purchased this card from Wal-Mart the other night, and if it's anything like the other sound cards purchased at mega-retailers, I am going to be in for a huge headache, aren't I?Anyway, to the point:? When I run creative diagnostics, both the left, and the right channel, come out of the left and right, and right and left channel, respecti'vely... I can take one ear off left, and hear "left channel" in my right channel, and vice versa. Problem #2: I am unable to adjust my bass or my treble on the sound card. I checked the FAQ, but I didn't see anything terribly relevant, unless of course I am just blind. I look forward to any help I can get from you great peoples. Thank you for reading my message. SkylerakaJaldarith

    What about the inability to adjust bass and treble? I google'd a bunch of different phrases about Audigy SE cards, and it seems they don't have that functionality. Am I missing something here?I installed the EAX control panel and that didn't help. Edit: Okay, so the left and right channel part is my problem-- but I have a headset by Sennheiser that has such a small headphone jack, it has to be halfway plugged into the sound card, in order for me to get full audio. I'll see if I can get that taken care of. The bass and treble still bother me though. Message Edited by Jaldarith on 2-07-200605:5 PM

  • Keyboard shortcut for Sub Menu item Only works AFTER using it

    I have a Custom MOVE TO READ Mailbox shortcut. This is a SUB Menu item.. MESSAGE/Move To/READ FOLDER.
    It is really sweet to clear out my INBOX and save emails.
    So, what is ODD is that that menu has to be Clicked on and shown each time MAIL is run for that keyboard shortcut to work.
    I find that Odd and would love to have it work without having to "train" it everyday.

    Hello,
    Post in the iTunes Forum: http://discussions.apple.com/forum.jspa?forumID=789
    Check out the AppleScript Forum also: http://discussions.apple.com/forum.jspa?forumID=724
    Carolyn

  • How to Center Text in Menu and Left Align in Sub Menu

    Hi - I'm looking to Center the text in the main menu of a Spry Menu in DW CS 5.5 but left align the sub menu's.
    If someone could point me in the right direction it would be much appreciated.
    Thanks
    J

    See here http://labs.adobe.com/technologies/spry/samples/menubar/CenteringHorizontalMenuBarSample.h tml
    Gramps

  • Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • Positioning of spry sub menu in IE8

    Hi - can anyone help with an IE8 issue concerning Spry? I have created a menu here:
    http://www.clinicafiore.co.uk/jan2012/indexJan2012_1.html
    In all the browsers I have tested (Chrome,FF,Safari,Opera) on Mac and PC platforms it works fine. In IE8 it doesn't (hooray).
    The critical attribute is:
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
      left: 189px;
      top: 0;
    I.e. I have pushed the sub-menu out 189px when visible and set the top value to 0 thinking this would align the sub-menu with the top of the main menu item.
    Is there a better way to do this to cover all browsers or do I need some conditional code for IE?
    Really.really grateful for any help
    For good measure here's all the  html & the css
    HTML
    <div id="leftNav">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#" title="ageing body" class="MenuBarItemSubmenu">AGEING BODY</a>
            <ul>
              <li><a href="#">Ageing D&eacute;collet&eacute;</a></li>
              <li><a href="#">Ageing Hands</a></li>
              <li><a href="#">Ageing Neck</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">ageing face</a>
            <ul>
              <li><a href="#">Ageing Lips</a></li>
              <li><a href="#">Double Chin</a></li>
              <li><a href="#">Downturned Mouth</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu" 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>
      </div>
    CSS
    ul.MenuBarHorizontal
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 0.9em;
              cursor: default;
              width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
              z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 0.9em;
              position: relative;
              text-align: left;
              cursor: pointer;
              width: 189px;
              float: left;
              font-weight: bold;
              text-transform: uppercase;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
              margin: 0;
              padding: 0;
              list-style-type: none;
              font-size: 100%;
              z-index: 1020;
              cursor: default;
              width: 189px;
              position: absolute;
              left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
              left: 189px;
              top: 0;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
              width: 189px;
              font-weight: normal;
              text-transform: none;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
              position: absolute;
              margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
              left: auto;
              top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
              border: 1px solid #CCC;
              font-weight: normal;
              text-transform: none;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
              display: block;
              cursor: pointer;
              background-color: #aee56b;
              padding: 0.5em 0.75em;
              color: #333;
              text-decoration: none;
              border-bottom-width: thin;
              border-bottom-style: dotted;
              border-bottom-color: #FFF;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
              background-color: #999999;
              color: #FFF;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
              background-color: #999999;
              color: #FFF;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarRight.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
              background-image: url(SpryMenuBarRight.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRight.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
              background-image: url(SpryMenuBarRightHover.gif);
              background-repeat: no-repeat;
              background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
              position: absolute;
              z-index: 1010;
              filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
              ul.MenuBarHorizontal li.MenuBarItemIE
                        display: inline;
                        f\loat: left;
                        background: #FFF;

    I may be misinterpreting what it is that you want, partly because I thought we were talking horizontal menu and you point out a vertical menu.
    I think that you used the vertical menu as an illustration to shopw how you want the submenu alligned. If that is correct, then please copy an paste the following into a new document and see the result in an IE8 browser.
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <link href="http://labs.adobe.com/technologies/spry/widgets/menubar/SpryMenuBarHorizontal.css" rel="stylesheet">
    <style>
    ul.MenuBarHorizontal ul {margin-left: 8em; margin-top: -35px;}
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a class="MenuBarItemSubmenu" 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="#">Item 2</a></li>
      <li><a class="MenuBarItemSubmenu" 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 src="http://labs.adobe.com/technologies/spry/includes_minified/SpryMenuBar.js"></script>
    <script>
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    If the above is not what you want, then please explain.
    Gramps

Maybe you are looking for

  • Zen vision:m chargin problem with USB ca

    I've got vision:m for months , and during this time I used to charge with USB cable , and didn't have any problem , but it doesn't charged earlier , actually I hooked it up to my USB last night , and there was blinking icon up to today , but no any p

  • Need information on OAM 11gR2 protecting OIM 11gR2

    Hi All, I need to implement a solution wherein I have to protect OIM 11gR2 application using OAM 11g2. So in this case the identity store for OIM is the normal Oracle database and we have used the generic LDAP connector to provision the users to a LD

  • Changed my apple id now can't access my icloud acct.  not the same password and I don't know it

    Can't access my icloud acct to back up data to another phone.  I am the primary and until I can access my icloud account the other phone won't back up.  How do I access my icloud password.  I have changed my apple id password 4 times and still no suc

  • How to find dependent requirements

    I have materials (components) of other higher level materials (or finished goods). I can find the requirements of finished goods from PBIM and PBED tables (by linking them based on pointers), but I want to find the requirments for components. Please

  • Help with credit managemnet - fd32

    Hello people, so, i'm trying to make a recording for fd32 and wanted to know what the "horizon" date field was? in my legacy master data i have a column for "Credit limit (days)" and under that some customers have a 15 day limit while some have a 7 d