How can I use a menu name multiple times in Muse?

I need to use the term resource friendly in the main menu as well as a submenu for a project I am currently working on. But Muse does not allow me to repeat the term. Is there a workaround for this?

In other words, in the menu properties change it to manual.

Similar Messages

  • How can we use a pdf form multiple times for different people (students)?

    Our school created a pdf form of our report card but we are not able to "save as" the forms for use by multiple teachers for multiple students. Please advise.

    Just use Adobe Reader XI.  Adobe Reader XI allows for forms data saving but it does NOT allow for locking down that data.

  • HT4901 I have HughesNet with a capped amount of Internet capacity. How can I use iCloud but adjust the time it is on to conserve my Internet allowance and not have to backup my information all the time????

    I have HughesNet satellite for an ISP with a capped amount of Internet capacity. How can I use iCloud but adjust the time it is on to conserve my Internet allowance and not have to back up my information all the time?

    Thanks Roger W1,
    Yes, I was using iTunes to sync over cable without problems since orinigal purchase in 2011 and using 10.6 w/o problem. There was an "update" in Nov 2012 that crashed the sync service. I went to the Apple Store and reviewed the problem with the Geniuses there. It was discovered at that time that the update included mandated use of iCloud but enough of the un-updated code remained that he was able to patch functions to allow Microsoft Office to still sync over iTunes.
    This March (+/-) there was another "update" to 10.6 that totally destroyed the patch that was in place so there was no sync service available between Microsoft and iTunes what-so-ever. Then recently, because of some unknown process, all my notes, contacts, and calendars were erased in both my Apple utilities and Microsoft utilities.
    After many hours of frustration I was able to recover most of the information to the Apple utilities only, but those were unstable. At my visit to the Apple store it was suggested that an upgrade to 10.8 might solve the stability problem. That it did but being connected to the iCloud all the time keeps using up all my Internet time and I have nothing left to check emails or do research.
    This, to me, is not my problem but one created by Apple. I have searched the Internet and support groups and there doesn't seem to be a solution.
    The "aircraft mode" turns off all other communication functions and is not acceptable. Neither is disconnecting/turning off Airport on my MBP.
    Thanks,
    Jay

  • How can i use a string name as an onject name.please help!

    hi it seems like an easy one but i can not find it anywhere.how can i use the name of a string as a name of an object such as the code(my problem is the code)...
    public void oda(String name1){ 
    String name2=name1+"s";
    String name3=name1+"ss";
    TextArea name1=new TextArea();
    TextArea name2=new TextArea();
    TextArea name3=new TextArea();
    i think my problem is clear but to be sure..
    how can i give a name to an object in my textarea which is already using as a string.
    thank u .

    it get very compilcated to change the name of the object you created. identity is something you don't want to mess with..you can do it by usin reflection, but it will slow down your application and (again) is quite complicated...
    a simple solution (and more object-oriennted) is to create a Wrapper, Decorator, or Extends the class.
    example
    public class MyTextBox{
        private String name = null;
        private boolean value = false;
        private JTextArea txtArea = null;
        public MyTextBox(String name, boolean value){
            txtArea = new JTextArea();
            this.value = value;
            this.isOn = isOn;
        public String getComponentName(){  return name; }
        pubic boolean getComponentValue(){ return value; }
        public JTextArea getTextArea(){ return area; }
    }

  • How can I use a GL for multiple Cost Centers?

    Hello all,
    I would appreciate your comments on the following issue. POINTS AVIALABLE. I have setup several cost centers in my Sandbox. The cost centers represent departments that my client has eg Finance & Accounting, Marketing, Shipping/Warehouse.
    I have created cost elements for the P&L accounts using OKB2, OKB3, SM35. My client sometimes has situations where they use the same GL for several cost centers. For example, the Freight Expense GL acct is used by Shipping/Warehouse cost center. However, someone in the Accounting/Finance cost center could also use that same GL account as well if they were shipping some documents. I can’t use OKB9, since the GL is not used exclusively by the Shipping/Warehouse Cost Center.
    <b>If, for example, we create a Sales order, I want to be able to specify somewhere that the freight for that SO must go to the Shipping/Warehouse Cost center. Is there a field in an SO, Delivery document or billing document where we can tell the system that this freight is being used for Shipping/Warehouse cost center?</b>
    I know if the Accounting Cost center uses the Freight GL, we can specify the Cost Center in FB50, so that is not a big concern.
    Thanks in advance!

    Hello Sunil,
    Thanks for your response. I tried go to VL02N and selected the line item and then went to 'GOTO'-- 'Header' --'Financial Processing'. <b>I don't see a field 'Cost Center'.</b> All I see are the following:
    Billing block
    Billing status
    Totals status
    Paym.guar.proc.
    Financ.doc.no.
    Opening date
    Validity end
    Billing Date
    Billing date
    Depreciation
    PresentDate
    Number of days
    But if I select the item, won't the whole cost of the item be sent to the cost center? I am trying to just get the Freight charged on the item to get posted to the Shipping/Warehouse Cost center.
    <b>Please advise.</b>
    Thanks.
    Message was edited by:
            United 99

  • Can I use the "same" button multiple times for multiple galleries?

    OK so I am extremely untrained in CS4 and Actionscript. However I have managed to get along fairly well until I started to dynamically upload images as a gallery. This works great if I have one gallery, but for my site I have 9 galleries!!! I have a back and next button, but I want to be able to use those same buttons for all of the galleries so they look the same. I have split them up and renamed them, but I am clueless on how to script the buttons to work. Please help...and don't laugh at my poor scripting. This is what I have now because I do not know where to put the other button names without getting errors.
    stop();
    next_btn .addEventListener(MouseEvent.CLICK, nextImage);
    var imageNumber: Number=1;
    function checkNumber(): void{
        next_btn.visible=true;
        back_btn.visible=true;
        if(imageNumber==15){
            trace(imageNumber);
        next_btn.visible=false;
        if(imageNumber==1){
            trace(imageNumber);
        back_btn.visible=false;
    function nextImage(evtObj:MouseEvent):void {
        imageNumber++;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();
    back_btn .addEventListener(MouseEvent.CLICK, backImage);
    function backImage(evtObj:MouseEvent):void {
        imageNumber--;
        mc_engagement.source= "photo/engagement/en0"+imageNumber+".jpg";
        mc_amish.source= "photo/amish/Amish"+imageNumber+".jpg";
        mc_chicago.source= "photo/chicago/ch"+imageNumber+".jpg";
        mc_landscapes.source= "photo/landscapes/land"+imageNumber+".jpg";
        mc_goodvsevil.source= "photo/goodvsevil/ge"+imageNumber+".png";
        mc_animals.source= "design/animals/an"+imageNumber+".png";
        mc_icons.source= "design/icons/icon0"+imageNumber+".png";
        mc_objects.source= "design/objects/pc"+imageNumber+".png";
        mc_typography.source= "design/typography/type"+imageNumber+".png";
        checkNumber();

    I'm still a novice with Flash myself, but I have two comments.
    First, at this point, won't your buttons control all galleries at the same time? Which means, if I go to image 5 in one gallery, then move to another gallery, I'll start at image 5, because the actions are all connected.
    Second, you can definitely use the same buttons for multiple galleries. It seems to me that as long as you've assigned the buttons an instance name, these actions should already work to control all the galleries (see the note above). I guess I would need to understand a bit more about how your project is built.

  • How do I use the same track multiple times in different playlists? I want to rename it multiple times.

    Hi, I am an entertainer that want rename a track a music a number of different ways so it will come up in playlist that work alphabeticly.
    for instance:
    Good Song I want to change to:
    A Good Song
    B Good Song
    C Good Song
    D Good Song
    So I can place them in different playlist and keep the order straight.
    Todd

    You can't give a single track multiple sets of properties, but if you want four copies of a song with different metadata then find the original and copy/paste it three times into the Automatically Add to iTunes folder, then edit the properties of each in turn.
    tt2

  • How can i use this alias name Day1 br 06/09/2005 without " "

    From my application (asp.net), i don't know how to pass alias name "Day1<br>06/09/2005"(with " ")
    I this possible anyother way to use this Day1<br>06/09/2005 alias name without using " "
    select sum(count) Day1<br>06/09/2005 from test
    Millions of thanks in advacne..

    if your alias name for a column contains spaces, it needs to be enclosed in double-quotes.
    is there a real need to have such a column heading? what is the problem in enclosing the alias name in double-quotes?
    SQL*Plus has no problem displaying such a column heading? what issue are you encountering?
    SQL> select sum(sal) "Day1 06/09/2005" from emp ;
    Day1 06/09/2005
              29025
    1 row selected.
    SQL>

  • How can I use a KeyListener with multiple JTextFields?

    I am creating a program in which i need to read from whichever textfield the user chooses to enter into. reading from these textfields i can tell when enter is pressed i just cant tell where it is pressed. can anybody help me out so i can find out where enter is pressed?

    please, somebody help.

  • How can we use one badi for mutiple times

    HI,
    I have one badi i want to do some changes to previous badi and that is already implemented in some project.
    is it possible to change that badi?

    Hi,
    The Main feature of the BADI is it can have multiple meanings. So go ahead with one more implementaion.
    Thnks,
    Raghu Posani.

  • How can I stop iTunes from synching multiple times when I plug in my iPhone

    Since the new iTunes 11.1.1 (11)  itunes will not stop synching whenever my IPhone is plugged in.
    I have used Disk Repair to reset permissions several times, and there is always a long list of iTunes items, nothng else.
    That does not change anything.
    Honestly I wish there was a different app to manage IPhone, ITunes from day 1 (ten years ago) has always had bugs or irritating features.

    Hi kenfromrapid city!
    You may want to require a prompt before syncing your iOS devices in iTunes:
    iTunes 11 for Mac: Require a prompt before automatic syncing
    http://support.apple.com/kb/PH12120
    You may also need to reinstall iTunes on your computer in order to resolve this issue:
    OS X Mountain Lion: Reinstall apps that came with your Mac
    http://support.apple.com/kb/PH11201
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • How can I make apps show up multiple times on the iphone?

    Hi, call me pedantic if you will, but I want some of my iphone apps to show up in several locations so I can sort out the folders.
    For example, I have loads of games. I want to categorize them as sports games, puzzle games, racing games, etc.. but I also want a folder called favourite games. I want any games in the favourite games folder to show up in the correct category folder as well.
    I know that we probably can't do that with a normal iphone but if I was to jailbreak, could I do it?

    Do you go around chastising others for providing answers to other people's questions just because you don't seem to find the answer helpful? Isn't it really up to the original poster to decide what is helpful and what is not?
    Could I respectfully request that it would be more effective if you either provided an answer to the original question, if you know it, and if not just avoid posting solely to criticize someone who has been helping here for many, many thousands of posts (and been acknowledged for doing so by hundreds of users who have been helped)? Otherwise it really is you that's wasting time and bandwidth.
    Regards.

  • How can I use two Airport Express N's together

    I have just purchased the new airport express n and I have the one that I am currently using which is also an n.
    How can I use both at the same time as part of the same network?

    If your goal is to extend the wireless range of one AirPort with another, check out this Apple Support article.

  • How can I use phonetic fonts for cursors name

    Hi all!
    I need to use phonetic characters in cursors names. Does somebody know wich font I have to use for this ?
    One other problem is that I need to use Vietnamese characters at the same time. Is it possible to change the font of the cursors names run-time (in the diagram)?
    Last quetion: Does LabVIEW support unicode? If yes,how can I use it?
    Thank you for your help!
    Nico

    > Effectively, dual-byte encodind is allright to support Vietnamese and
    > Western languages. But how did I get the phonetics characters? With
    > shortcut key ?
    > As I need the user to change the cursor name run-time without using
    > the frontpannel cursor legend, I'm using property node and a subVI
    > asking for this name. (The user will enter the name in a string
    > control).
    > Moreover I would like the user to have the possibility to choose a
    > character in a pannel (something similar to the menu 'insert symbol'
    > in MS Word). Is it possible to do this ? With Active X maybe, but I
    > don't know which activeX objet I can use....(I am not very familiar
    > with ActiveX).
    Unfortunately, I don't know what the phonetic characters look like, so I
    can't
    tell you what to type to enter them. If you find them in Word,
    you should be able to copy them to the clipboard, they will be in
    Unicode, and paste them into LV -- where they will be converted to dual
    byte. If it doesn't work, try to find out if they are exist in the
    locale of your machine, or more importantly, the target machine.
    If you can display them, you can build a simple ring with short strings
    containing the phonetic characters. When the user picks something from
    the ring, use the strings property and value to index out the string and
    replace/append to the string the user is editing. You will want to pay
    attention to the string's selection if this is supposed to act like a
    character palette and either do an insert or replace.
    If you want a more compact grid menu, you will need to convert the
    strings to images and paste them in a pict menu. That value can be used
    to index a constant array that matches the order in the pict ring.
    Greg McKaskle

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

Maybe you are looking for