Principal menu change

Hi, does anybody know if I could change the Principal Menu for another one (because the new one just comes as Menu2, and I would like to switch them).
Thanks!!

Hi i have w150i & unable to lock some personal files & how to transfer vedio files via bluetooth to another phones

Similar Messages

  • Apple tv menu change when viewingnnetflix?

    The atv netflix menu seems to have changed since yesterday. Recently viewed items no longer show.

    There have been a few reports of Netflix disappearing from the ATV menu altogether, but this is the first one I've seen about the menu changing, although it's possible some of the menu data could be coming from Netflix, and they make changes from time to time.
    If you think the problem is with your ATV you could try the restore procedure:
    http://support.apple.com/kb/HT4367

  • Spry menu changes - How to:

    First. I'm not a developer or programmer. I'm a hacker (dabble unknowingly by trial and errororor).
    I looked deeply for how to change font characteristics and found nothing helpful except comments that it can't be done or BEWARE! Horse puckey! Don't believe that all you can change is font, background and color.
    I needed to change the font size and width of the bars in my Spry menu. This is how I did it and the details are for others to trial and error it themselves.
    I created a page with a Spry menu (horizontal for me) and populated it to three levels. The first time you use Spry it will copy the necessary files into your directory and create a .css file you can see in that directory. You can open up the Spry menu and see the .css parameters, which isn't helpful at all. You can, also, open up the .css file as a window pane, which is what you need.
    Next, open up your browser and use it to open the file you are using for test purposes (the .html, not the .css file). Now you can get an idea of what your file will look like in a browser on the Internet. Change back to the Dreamweaver window. Make sure you have the "SpryMenuBarHorizontal.css" (or vertical).
    Go to the menu . . . Windows > CSS Style and make sure the CSS Styles tab with ALL selected is showing. If the tab only shows the tree view, drag from the bottom slider bar upward to show both the tree view and the Properties view. Now you're ready.
    Do this one step at a time ready to undo any changes you don't like.
    Set the window pane to the SpryMenuBarHorizontal.css page. Go down the list of Rules in the CSS Panel until you find one that you think might change what you want.
    Make the SINGLE change.
    Save the change.
    Change to the browser and click on Refresh. The changes will show up. Make sure you test each level.
    Go back to the Dreamweaver .css pane and either change it back or try the next one.
    You will find you can add properties not noted in other discussion or instructions.
    I wanted to change both font size and button width. I found that in the Rules I made these changes that worked just fine.
    ul.MenuBarHorizontal - I changed the font size from 100% to 60% and got a smaller font universally in the menu.
    ul.MenuBarHorizontal ul li - I changed the width from 8.2 ems to 16 ems and had wider menu bars universally.
    Experiment, try it, be adventurous! Just do it carefully and be ready to undo unwanted changes.

    Other than additional specific changes, this was NOT a question for further discussion. It was simply a solution for others to find.

  • Input menu changing my default keyboard layout-again.  Grrrr!

    This same issue had come up years ago, and I no longer remember with certainty how it was fixed.  It just geared up its ugly head again.  Ever since I can remember, I've been using a custom keyboard layout, which I arbitrarily labeled "Cantabria", that lets me type in seven languages with an absolute minimum of key combos.  I only need a different keyboard layout for Cyrillic (Russian).
    The problem is that, in the past few days or weeks, the system arbitrarily  changes my Input Menu to reflect one of the two US English keyboards as the active one, either US or US Extended.  I can't see a pattern.  It just happens.  The Menu Input key combinations are duly disabled, so it's not my accidentally hitting Command+Space.
    I thought the solution had been simply to UNcheck both US keyboard options in International, but now it seems you can't do that.  You have to have at least one of them selected.
    Any ideas on how to stop this annoyance will be much appreciated.
    Thanks in advance.

    To my stunned amazement, I just found this other thread from last September with the same issue.  I had no memory of having posted then and I still have no independent recollection of it.  Major senior moment, darn! 
    https://discussions.apple.com/message/16121983#16121983
    Strange that back then I was able to unselect both US English keyboard layouts and now I can't, on the same machine and same OS build.  I'll try deleting the files BDAqua mentions in that other thread.
    In attenuating defense of my brain malfunction I can only offer that the other thread is dated the same day my second grandson was born.  My mind was obviously elsewhere.

  • Keeping menu change after release

    Hi, I did the tutorial for an advanced website:
    http://www.flashvault.net/default.asp?ID=21
    and applied it to my own design. However, I would like to make the following change: when a certain page is loaded (home, about me, contacts), I want the menu button to remain highlighted (black tint and underlined) as long as the page shows, so the user knows at any time where (s)he is by looking at the menu buttons. At the moment, the highlighting action (black tint on text and underline) on the menu buttons happens only on mouse release, but does not stay.
    Thanks a lot. I'm attaching the fla files.

    Ned, I am almost there but need a little help for the last bit. On the invisible buttons (which control the movie clips with the actual menu animations), I put the following code (example is for "home" button):
    on (rollOver) {
    _root.menu_mc.home_mc.gotoAndPlay ("goh1");
    on (rollOut) {
    _root.menu_mc.home_mc.gotoAndPlay("goh2");
    on (release) {
    homebutton.enabled = false;
    servicesbutton.enabled = true;
    portfoliobutton.enabled = true;
    aboutbutton.enabled = true;
    contactbutton.enabled = true;
    _root.play();
    _root.choose = "home";
    The "home" button is locked and maintaines its animated state (Hooray!!), but the previous menu item that was selected remains in the selected state until I hover with the mouse on it (which makes sense considering the above script). Now, how do I tell Flash that on(release), I want the previously selected menu item to play, so that the selected state changes to normal. My hierarchie is this:
    root --> menu_mc (contains all the invisble buttons and movie clips) --> home_mc / contact_mc / about me_mc (these are the movie clips I want to target and make the previously selected play in order to return to non-selected state).

  • Menu change fails to refresh page content

    Consider a fruit menu and a set of nutritional input boxes . When a different fruit is selected the details should change.
    The menu is a dropdown list and the details are text inputs. The menu is auto-submit and it has an event handler for value-change.
    The menu value and all of the inputs are bound to properties in a single data model. The data model lives in a managed session bean. When the menu value changes the data model is replaced by calling the session bean and passing it the new name.
    All of that works but the none of the details change on the page except the name of the fruit. The name input box is bound to the same field the menu value is bound to. The other input boxes are bound to the other data model fields.
    Is there some step I am missing to implement this sort of dynamic update functionality?
    TIA

    I found the problem but not the solution.
    The form contains Apple details and you select Orange from the menu. That triggers a submit. Once my value-change event is fired it loads the Orange data model. Therein lies the problem: the data model will subsequently be updated with the incoming Apple details.
    The solution would be to have my value-change event hander called AFTER the model update but before the render response because the response has to be populated with the new details. I will give that a try but not sure how that's done.

  • FBL3N Program Menu changed to ????????????

    Hi,
    We have upgraded support package level to 27. 
    In T-Code FBL3N  everything going fine. In the List output of Line Item Display the menu item Next to Environemtn Menu its name is changed to ????????????????.
    But while selecting on that we have the submenu of layout menu.( I think the name Layout is changed to ??????????????)
    Any problem in upgrade or we have to contact sap for this.
    Regards
    Rengaraj

    Hi,
    this has problem regarding to accessibility - esp . with language.
    Try the logon language as German.  If the issue is not there, it is sure that it is with lang problem only
    check with the basis consultant.
    Regards,
    Sridevi
    Pls. assign points, if useful
    Message was edited by:
            Sridevi

  • Menu changes automatically

    Hello everybody
    Let me sketch my situation:
    I have bought a precomposed menu which I have used a half year without any problems. I load the preset, and change colors of the menu in Photoshop. Once saved there it changes automatically in Encore.
    When previewing in Encore, it has the color which I've chosen in Photoshop. HOWEVER, when the disc is burned, it's the same color of the default precomposed menu again ...? I didn't have this problems before, have I done something wrong?
    Thank you so much for an urgent reply.

    precomposed.com (assuming that is where you bought the menu) is generally very responsive, and may be more helpful more quickly...
    Two possibilities:
    Even if you don't render the motion menu before the build, it should when you build. So this would suggest the project is holding onto some old cache files. Clean/delete the cache and rebuild.
    Or, something has gone wrong with the automatic setting for the color set you are using. Check to be sure it is still set to automatic.

  • Spry menu-change links to carry through all 16 pages?

    I am sure this is easy to do. I just don't know where to begin.
    I have a 16 page website "northeastohioweddingexperts.com.   The side menu is the same on all 16 pages. Its a spry menu. What is the easies way to change the links so it changes through all 16 pages? I  have been doing it the hard way by make a change to the spry menu, and opening each HTML page and pasting the change in that area. I am sure this can be all changed simply in CSS.  So if there is one document that can be altered, or on CSS file that can be changed THIS would be helpful.
    Please point me in the right direction.
    Thanks,
    Tony

    HTML = content.  CSS = styles.  I'm sorry to say that changes to your CSS file won't have any global effect on the links in your HTML code.
    If you had built your site around a DW Template or Server-Side Includes, making site wide changes to menus would be much easier.  See links below for details:
    Dreamweaver Templates -
    http://www.smartwebby.com/web_site_design/dreamweaver_template.asp#1
    Server-Side Includes
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    If you don't want to start over, use Find & Replace (Ctrl+F) to change hyperlink code in your local site.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Right click menu changes after error: possible bug

    SQL Developer 1.1.2.25 build 25.79. This problem is reproducible everytime.
    01. Connect to any database.
    02. In the SQL window, run any query like
    select 'alter '||object_type||' '||owner||'.'||object_name||' compile;' from dba_objects where status='INVALID' and owner='XYZ';
    Craft the query to return some rows.
    03. In the results window, right click the result set and choose Export Data->TEXT.
    04. SQL Developer will generate an error:ora-00972 identifier is too long.
    05. Click Ok to close the error box.
    06. Modify the query to include an alias:
    select 'alter '||object_type||' '||owner||'.'||object_name||' compile;' as x from dba_objects where status='INVALID' and owner='XYZ';
    Run the query to generate rows.
    07. In the result window, right click the records. The right click menu will change. the Export Data option is no longer available.
    Since the problem is repeatable, it might be a bug.
    Thanks

    This was posted back in Export data menu item disappearing in the results tab but there does appear to have been any development response at that point.

  • Another voice - Menu changes - terrible - hard on the eyes and difficult on the brain

    Upon seeing the new menu on Verizon my first thought was "why does Verizon feel the need to copy Comcast?".  I would think people who have Fios do not want anything that reminds them of Comcast. 
    2nd thought on trying to use the new set up - just plain hard on my eyes and more difficult for my brain to focus.
    My boyfriend asked "don't they test these things before they go live?".
    The recent changes do not make for cohesive enjoyable viewing.  I also do not need suggestions of other tv shows to watch. Thanks but no thanks.
    I use to think Fios was superior to all, that if i moved i would only relocate to areas that have Fios.  No so anymore.  More than ever now, willing to give another company a shot.
    Very very disapointed at whomever approves these changes at Fios.
    Solved!
    Go to Solution.

    This new guide is horrible!  I cannot believe that anyone can view it without squinting or looking away every few seconds. Hard to read - colors are distracting - mkes my head hurt!

  • Portal context menu change translation

    Hello,
    I want to change some portal context menu (when executing wad template) text in french. The translation is not very good some times.
    I think it is possible to change it in a par file. But I don't how to find the par file to change.
    Is it possible to do that ? And what the name of the par file to modify ?
    Thank's

    Hi Thierry,
    I am really not sure which PAR file would solve your problem.
    But you will have the required PAR files in your Portal in the below navigation,
    Go to System administration -> Then Support Tab -> Portal Runtime -> Browse Deployment ->
    Follow the Path ROOT/WEB-INF/deployment/temp
    OR ROOT/WEB-INF/deployment/pcd .
    Good Luck!!!
    Biroj Patro.
    Edited by: Biroj Patro on Aug 23, 2010 10:07 AM

  • Drop down menu changing values in a form

    i have four different sites i would like to search by
    entering the search criteria from my page. when they type their
    search into the text box and hit submit, it would open a new
    window, to the site they searched, displaying the results. i can
    accomplish this with four separate forms, however to save space i
    would like to combine them all into one form. in the end i would
    like one form with one text field, one submit button, and a drop
    down menu containing a list of the four different sites they can
    search.
    how would i do this? the drop down menu would need to change
    a few different attributes in a few different tags to get this done
    it seems. is that done with javascript? can someone help me out
    please?

    You could use the input of the drop down to dictate the
    redirect URL in your form. i have done this and it depends on what
    language PHP ASP CFM? basically look in the code for your
    MM_RedirectURL variable and add a if statement after the code that
    processes the form like this.
    PHP
    IF ($_POST['select_field'] = "site1") {
    $MM_RedirectURL = "www.example/site1/index.php";
    IF($_POST['select_field'] = "site2") {
    $MM_RedirectURL = "www.example/site2/index.php";
    redirect ("Location: " . $MM_RedirectURL . "");
    exit;
    This assumes your select field is named "select_field" and
    the values are site1, site2. But you could use whatever you want.
    Also add two more ifs or use else to make four, the logic works in
    any language (at least that i have used)

  • Propogating Nav Menu Changes

    Does anyone know how to make changes to Nav Menus propogate
    throughout my entire site? If I want to add a section to my site,
    how can I make the change once to the menu and trickle it out to
    the 40 .html pages on my site. Otherwise I have to copy and paste
    the new Nav Menu to every .html page. This is easy in MS Publisher,
    Drupal and other programs. Why is this not obvious in DW? What am I
    missing here? Thanks.

    Server Side Includes (SSI) or a DW template would accomplish
    your purpose.
    "mtbresource" <[email protected]> wrote in
    message
    news:gd5ogj$79f$[email protected]..
    > Does anyone know how to make changes to Nav Menus
    propogate throughout my
    > entire site? If I want to add a section to my site, how
    can I make the
    > change
    > once to the menu and trickle it out to the 40 .html
    pages on my site.
    > Otherwise I have to copy and paste the new Nav Menu to
    every .html page.
    > This
    > is easy in MS Publisher, Drupal and other programs. Why
    is this not
    > obvious in
    > DW? What am I missing here? Thanks.
    >

  • CS5 "save as" format menu changed when creating new document

    Hi,
    When creating a new document in photoshop CS5 i cannot save as a jpeg or png or the other large list of file types i used to have in the save as format menu,
    below is what i used to be able to save as but can only do this when actually opening a jpeg file and not when creating a new document
    this is the options i have now
    i haven't been using photoshop that long and am no genius with pc's so i'm a little lost here, does anyone know why this has happened and if there is a solution to this, your help will be greatly appreciated. my spec are windows 7 64bit, core i7, nvidia 260gtx.

    It looks as if you are creating documents in a format incompatible with certain file types.
    For example, check in the New dialog that it is set for RGB Color – 8-bit.

Maybe you are looking for

  • Switching from Flash to Flash Catalyst/Flex

    For the last few years I have been developing applications for project reporting. To explain this in simplest terms, my clients give me hundreds of reports and supporting documents, graphics, videos, etc. which I then condense and reorganize into a p

  • RC4 issues  when moving to solaris 10

    I am moving a few Solaris 8 / Sparc boxes to to be reconfigured with Solaris 10. I have the zones up and running without too many issues; however, we are having issues with changing run level from 3 to 4 and back. If I remember - the inittab would po

  • "Could not find PPPoE server" sudden error on DSL connection

    I am having a serious issue I can't seem to solve. I currently have two laptops running: One PowerBookG4 running Tiger that stays connected to the internet through a regular DSL modem, and shares the signal through wifi to another laptop, a MacBookPr

  • Exchanged my whiny Week 12 today. New Week 12 still whines.

    I exchanged my whiny Week 12 MacBook Pro 1.83 today at the Apple Store. I explained the problem to the Apple Genius, who said that he was aware of the problem, and downplayed it by saying that his previous-generation PowerBook G4 does it too (or to b

  • Built-In Microphone Stopped Working - Need response

    The onboard microphone in my macbook ceased to work for a decent amount of time today, tried several options but nothing happened. This has never happened before, have had the computer for exactly a year now with zero built-in mic problems. Would hea