How to save (export) menus for later use

Is there a way to save a menu as an asset so I can use it in several projects?  It would make it easier if I didn't have to create it each time.

Yes. You can do this in two ways, depending on what you have.
If you have no Motion Assets (Video, or Audio), you will Select your Menu in the Project Panel, then in Menu>Save Menu As, and choose PSD in the desired location. I Save mine into a "Hunt" folder in the Library hierarchy.
If you do have Motion Assets, you can Save As a Template, and then you'll get an EM plus a copy of all Motion Assets.
Good luck,
Hunt

Similar Messages

  • How to "save with options" for development using a different version of LV

    Hello,
    I have an application written in LV 6.0 on a different computer. I am upgrading the program on my computer also using LV 6.0 ( I also have LV 8.5).  When I try to open the file that I saved on original computer on my computer it tries to open it with verion 8.5, but I want to use 6.0. How can I modify the original program using the same and only version that is on original computer on my computer? Once modified I want to run on the original computer which only has version 6.0. Hope this is clear.
    Thanks,
    JS

    Be careful, once a VI is saved in 8.5 you can't save it back to 6.0. You'd have to go through several versions of LabVIEW to do that.
    To make sure a VI is opened in 6.0, launch LV 6.0 first and then open the VI (by double-clicking on it in explorer or via file open in LV).
    If LabVIEW is not running and you double-click a VI it will start the last LV version used.
    Hope this helps,
    Daniel

  • How can I save a clip for later use?

    When I am editing a project and going through my footage I often find a short clip that I'd like to use maybe later in the timeline or possibly to use in a different project. How can I do that?
    This may be obvious but I want to rename and save that clip somewhere (I'm assuming the event library) so do I have to create a new clip from the original and save it or what?
    Again, sorry of this is basic but its these litle things that seem to be the hardest to find out but make the biggest difference to the workflow and editing speed.
    Cheers

    If this is a one-off thing, mark the clip as a Favorite.
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver30ccd91f
    If you have a volume clips that you notice would be good for a particular purpose later, mark them with a keyword.
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver68416335
    Then create a Smart Collection that contains clips with your keyword.
    http://help.apple.com/finalcutpro/mac/10.0.6/#ver7a77eb6c

  • How to save a form for intern use for a client?

    Hi,
    I can only choose between using the FormCentral, email or a server (of which I can't get access). My client needs the form for ONLY intern use - like a simple PDF-doc that eventually collects their data. I used to make such forms in previous versions …
    Anna

    I have a very simple form, made fro my own template (Indesign > PDF)
    When distributing I have to choose between Adobe Form Central, Email or a specific internal server. I can’t - because my client needs to define it for themselves later. What ca I do? I used to send them a simple form-file.
    Anna

  • Cant save a character for later use in cs 4 (want to use in other projects)

    I am planning on making a character for a project and other projects but my "TEST DUMMY" couldn't be saved i made him a symbol and looked in the library, i loaded new project after restating flash and he wasn't in the library! (i did not save changes to the project someone told me saving it screws things up in cs 4)
    P.S: What is a good HD resolution?

    Ok i found out how so yes i do have to save changes to that place but to get in another projcet i kneed to go to File/Import/open external lybrary/file name/symbole name and then that works

  • How to save Tab groups for later browsing

    Can tab groups be saved so that when I launch Firefox next time all previous tabs will be there ?

    Identical to others, I do not want to reload all tab groups on restart; however, I strongly desire the ability to save tab groups (beyond just naming & resuming from previous session). My use case is simple. I reboot, switching from Ubuntu to Windows and back multiple times per day on my laptop. I work on multiple projects and would like to associate tab groups with each one. Then I would like to click a button/link, (perhaps in the Ctrl-Shift-E -- Tab Group View) to restore a specific tab group for a project without having to load the 28 other pages which are relevant to other projects... Essentially, I want to bookmark a tabgroup. I would be willing to contribute coding time to this feature, but am unsure as to where to start.

  • XML parsing (KXml) - how to save parser's position for later use?

    Hello.
    I am parsing an xml file using KXmlParser and i want to keep the position of the parser for later use so i can continue from that same position.
    int eventType = parser.getEventType();
            if (coupletForm!=null) {
                coupletForm.deleteAll();
            while (eventType != KXmlParser.END_DOCUMENT) {
                if (eventType == KXmlParser.START_TAG ){
                    String element_name = parser.getName();
                    if (element_name.equals("couplet")) {
                        coupletForm = new Form("Couplet 1");
                    else if (element_name.equals("lead_one")) {
                        while (eventType != KXmlParser.TEXT || (eventType == KXmlParser.TEXT && parser.isWhitespace()) ){
                            eventType = parser.next();
                        //Now reached <description> element
                        coupletOptions = null;
                        coupletOptions = new ChoiceGroup("Choose lead:", Choice.EXCLUSIVE);
                        coupletOptions.append(parser.getText(), null);
                        parser_stack.push(parser);
                    else if (element_name.equals("lead_two")) {
                        while (eventType != KXmlParser.TEXT || (eventType == KXmlParser.TEXT && parser.isWhitespace()) ){
                            eventType = parser.next();
                       //Now reached <description> element
                        coupletOptions.append(parser.getText(), null);                  
                        coupletForm.append(coupletOptions);                  
                        parser_stack.push(parser);
                        coupletForm.addCommand(CMD_NEXT);
                        coupletForm.setCommandListener(this);
                        display.setCurrent(coupletForm);
                        break;
                eventType = parser.next();
        }What i am doing here is parsing the xml file. When the parser finds an element with name <lead_one> it continues parsing until it finds the next element (<description>) and then creates a ChoiceGroup with the first option as the text found in the next element. I want to keep this position of the parser. The parser then continues until it finds element <lead_two> and does the same thing as <lead_one>. I want to save the positions of the parser when it stops at the <description> element. I am trying to do this using a stack, but this doesn't work.

    If you want to select nodes based on changing criteria, you should use XPath.
    If you have relatively fixed criteria, iterate over the nodes and pick out the ones that you want. For example:
      public static List<Element> getChildren(Element parent, String tagname) {
        List<Element> result = new ArrayList<Element>();
        NodeList children = parent.getChildNodes();
        for (int ii = 0 ; ii < children.getLength() ; ii++) {
          Node child = children.item(ii);
          if ((child.getNodeType() == Node.ELEMENT_NODE) && tagname.equals(child.getNodeName()) {
            result.add((Element)child);
        return result;
      }

  • Is it possible to save a Photoshop project with multiple tabs (inducing images) for later use. Now, when I close Photoshop, it ask to save each tab separately and they are not staying in the project for later usage. Thanks in advance for you help.

    Is it possible to save a Photoshop project with multiple tabs (inducing images) for later use. Now, when I close Photoshop, it ask to save each tab separately and they are not staying in the project for later usage. Thanks in advance for you help.

    You should ask in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Does anyone know how to save multiple webpages in safari using automator?

    Does anyone know how to save multiple webpages in safari using automator?

    You will likely get better program help in a program forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • Best method for timestamping? (for later use with perl script)

    What is the best method that I can use to timestamp events in Linux for later use with perl script?
    I am performing some energy measurements.. where I am running several tasks separated by 20 secs in between. Before I start any execution of tasks, I always place initial delay for me to start the script and start the measurement device.
    My problem is that I don't know how long is that first delay exactly. So to solve this, I thought I could use date commands to time stamp all tasks.. or at least to timestamp first dela.
    Here is example of what I am doing:
    1st delay
    task 1
    20s
    task 2
    20s
    task 3..... etc
    What would be the best to use?

    logger.
    It posts messages straight to the system log.  You can see the message, in all its glory using tools like journalctl.  You will see the message, the date, time, host name, user name, and the PID of logger when it ran.

  • ALV: how to save context space for large tables ?

    Dear collegues,
    We are displaying an ALV table that is quite large. Therefore, the corrsponding DDIC structure and the WD context is large. This has an impact on performance and the load size of the program. Now we will enhance the ALV table again.
    Example: for an icon and its explaining tooltip that are displayed in the ALV: there is are context fields required like "SOURCE_FIELDNAME" for the tooltip as well as for for the icon. They need a lot of characters for each tooltip and icon).
    Question: do you have an idea, how to save context space for those ALV fields ?
    Best regards,
    Christian

    >We are displaying an ALV table that is quite large.
    Do you mean quite large as in a large number of columns or as in a large number of rows (or both)?  I assume that the problem is probably more related to a large number of rows.  For very large tables, you should consider using the table instead of the ALV. For very large tables you can even use a technique called context paging to keep only a subset of the data in the context memory at a time.  Here is a recent blog that I created on the topic with demonstrations of different techniques for table sharing, shared memory, and context paging when dealing with large tables in Web Dynpro ABAP:
    Web Dynpro ABAP: How Fast Can You Consume 1 Million Rows?

  • New help with my mac air and airport extreme time capsule dont know how to save to time capsule and use as a external hd

    new help with my mac air and airport extreme time capsule dont know how to save to time capsule and use as a external hd would like 2 store my home videos and pictures on the time machine (ONLY) as the MAC AIR has storage space limited space please help. THANK YOU.

    See the info here about sharing or using the TC for data.
    Q3 http://pondini.org/TM/Time_Capsule.html
    It is extremely important you realise.. the Time Capsule was never designed for this.
    It is a backup target for Time Machine.. that is the software on the computer that does backups.. it has no direct connection to the Time Capsule.
    It has no ability to back itself up.. unlike all other NAS in the market. It is therefore likely one day you will lose all your files unless you seriously work out how to backup.
    The TC is slow to spin up the hard disk and fast to spin down. iTunes and iPhoto will continually lose connection to their respective libraries.
    iPhoto in particular is easy to corrupt when you move photos over wireless into the library.. once corrupted all is corrupt. A single photo will ruin it all.. so backup is utterly essential.
    Time Machine cannot do backups of network drives. ie the TC. You will need a different backup software like CCC. You will then need another target to backup to..

  • Can I create a fillable pdf form and then export it for client use on my web site?

    Can I create a fillable pdf form and then export it for client use on my web site?  I need clients to be able to fill in the (registration) form on my site then submit it via email.

    [discussion moved to Creating, Editing & Exporting PDFs forum]

  • Hi..how we enter standard text for smartform using include text

    hi
    guru
    ..how we enter standard text for smartform using include text..
    i know only using so10 we write text..
    in smartform it asking text-object
                                     text-id,
    so what values we should give to get text

    Hi,
       Do u want to print Standard Text or the Texts that are maintained at the Transaction level.
    If it is standard text , then u use text id as ST or if it is Texts that are maintained at the Transaction level then u have to go to that specific transaction and check for that text , then go to text editor ,in the goto menu u have header data where u get the Text id , text name.... , use them in ur smartform in the INCLUDE text.
    Further u have the option of text modules in smartforms which act as standard texts, so if u r going for creation of standard texts then its better to use text modules.
    Regards,
    Shafivullah Mohammad

  • Where are mobile Illustrator draw files stored for later use in Desktop Illustrator?

    Hello,
    who can tell me, where Mobile Illustrator draw vector files are stored for later use in Desktop Illustrator? In the cloud there are only .png and .jpg files. The Files are sent immediately to the desktop software, but when I want to use them later, I cannot find them anymore.

    What exactly are your steps?
    Create new file in Draw
    Draw something
    Send to Illustrator
    ... and then? Does Illustrator open on the desktop? What do you do with the Draw file?

Maybe you are looking for

  • How can I assign index markers to a list of names coming from Excel

    I have to build up indexes on directories. The list of names comes from Microsoft Excel and is saved as a text file. I need to assign index markers to the list (sometimes up to 2000 names) so I can build up an index after the layout is done.

  • Hard Drive Issue Not Sure What The Problem Is

    I am using an  HP Pavilion HPE h8-1360t I am running Windows 7 (64 bit) So here is the problem. Every so often ( I think it has happened three times now) as recently as two days ago everything on my monitor freezes, sometimes it even becomes a blurry

  • Warning message when starting Weblogic BPM server in SOA Suite 11G

    Hi There, I understand that most of the warning message we can ignore it but why at first the warning is generated? Anyone can delighted me for this warnings, I don't want this to be show in production mode because of the production policy from most

  • What is the best way to render HDV at 1920x1080?

    Hello, I am working with HDV footage in an HDV project in Premiere Pro CS3.  I render it out at 1920x1080, square pixels, deinterlaced for the internet.  My final product is an 1280x720 H.264 .mov file that I make in Quick Time Pro.  My question is,

  • Images uploading

    Intermedia problem We have developed a stored procedure to upload images on Database 8.1.5 on WNT server. Launching the procedure we get the following error: The following error has occurred: ORA-04068: existing state of packages has been discarded O