How to safe a project after use varispeed

how to safe a project after use varispeed. I speeded the project succesfully down and then I want to save it so I bounced it. When I listened it back it was the original project, not the slow down. What to do? I use Logic X

I can only speak from Logic 9.
Did you bounce from the Master Bus?
A varispeed created audio file has to be bounced from the Master Bus. 

Similar Messages

  • How to call smartform FM after using SSF_FUNCTION_MODULE_NAME?

    Hi Experts,
    How to call smartform FM after using SSF_FUNCTION_MODULE_NAME?
    I mean, in driver program i called SSF_FUNCTION_MODULE_NAME to get the related FM  for my smart form. after that How do I call it(smartform fm) . I tried to call by pressing PATTERN button in Report. but it is showing FM is not exist error.
    Call function SSF_FUNCTION_MODULE_NAME
    Export
    formname = 'zsmartform'
    import
    fm_name = function_name.
    function_name is stored the corresponding smartform fm. then How do i call it to process my smartform?
    thanks in advance.

    hi,
    Chk this sample.
    DATA: p_output_options TYPE ssfcompop, "occurs 0 with header line
    p_control_parameters TYPE ssfctrlop. "occurs 0 with header line
    p_output_options-TDCOPIES = 3. "number of copies.
    p_output_options-tddest = 'LP01'. "def
    p_control_parameters-no_dialog = 'X'. "no dilog box
    p_control_parameters-preview = 'X'. "no preview
    DATA : v_form_name TYPE rs38l_fnam.
    *---- Function to get the function module name of the    ----
    *---- specified Smart form.                              ----
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    formname = 'GIVE YOUR SMART FORM NAME'   
    * VARIANT = ' '
    * DIRECT_CALL = ' '
    IMPORTING
    fm_name = v_form_name
    EXCEPTIONS
    no_form = 1
    no_function_module = 2
    OTHERS = 3 .
    *---- Function Module to call the Smart Form          ----
    *step 1 - go to ur smart form
    *step2 - take environment
    *step3-take function module name
    *copy that unique number.
    *step4 -come back to ur driver program.
    *step5 - place ur cursur here. take patter,.give that unique number.
    *at that time u will get the below code.
    *step6 - rename that unique number with 'v_form_name' in the code generated by pattern.
    CALL FUNCTION v_form_name
    EXPORTING
    * ARCHIVE_INDEX =
    * ARCHIVE_PARAMETERS =
    control_parameters = p_control_parameters
    * MAIL_APPL_OBJ =
    * MAIL_RECIPIENT =
    * MAIL_SENDER =
    output_options = p_output_options
    user_settings = ' '
    * ARCHIVE_INDEX_TAB =
    * IMPORTING
    * DOCUMENT_OUTPUT_INFO =
    * JOB_OUTPUT_INFO =
    * JOB_OUTPUT_OPTIONS =
    EXCEPTIONS
    formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4
    OTHERS = 5
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    for any clarifiaction pls revert.
    regards,
    Reshma

  • How to create a project templace using a API?

    Hi all,
    I can create a project using API PA_PROJECT_PUB.create_project, but how to create a project templace using a API?
    thanks for your any effort.
    Caril

    Hi Caroline:
    If sub projects are not supported currently, does the EDK API support creating the project folders under a project? Please let me know.
    Thanks.
    Bhanu

  • How do I open projects created using Premier Elements 8 with Premier Elements 13

    how do I open projects created using Premier Elements 8 with Premier Elements 13

    ATR
    The DVD Creator.dll file was in the proper location but I could not find a Run As Administrator Option.
    I did delete Prefs file and try again to open the app then the project and received the same problem.  And the scratch disks were all directed to the Elements 13 path
    Yesterday I did try additional solutions
    Removed the Elements 13 App vis the Control Panel, copy the original downloaded .zip File to the Desktop and reload the entire application with no success solving the problem
    In addition to that I contacted a site called Rescue.com? and the guy told me that he was a representative of Adobe, which I was not sure was the truth.  He looked at my system and told me that Premier 13 was not compatible with Windows 7.  I called BS on him told him that Adobe site said it was compatible and he told me I had a Trojan on my system and he would refund my money for Elements 13 and sell me version 12, which would be compatible, along with a better security system than the Norton 360 I told him I had.  At that point I immediately terminated our communications and called Norton to have additional checks performed to ensure no additions were added to my system.  They had me download and run Power Eraser from them and it found nothing wrong. 
    I also temporarily turned off the firewall and tried to use the Elements 13 but had no success.
    I also went to Microsoft Windows site and searched for the Exception code: 0xc0000005 that was displayed in the event viewer and they indicated there was a hotfix available and they would email me that fix.  ave not received the email yet.
    I’m getting very frustrated but thank you for your help.  I will update you with and additional results or actions I get or perform.
    GDBMB

  • How can I execute program after using F4_Filename function?

    Hi all,
    I'm a new user on the forum. I've been working with ABAP and SAP for a few weeks. I wrote a program for importing data from excel file to SAP using BDC. During searching this forum I found information about F4_Filename function which allows users to browse the disc for a file. I'd like to add this function to my program. I have a parameter for a file name but this is an ordinary static string field. When I added the code which I found in the message on this forum the rest of program doesn't execute.
    This is simple program for example:
    REPORT  Z_TEST8_AB.
    DATA f_name TYPE STRING.
    PARAMETERS p_file like rlgrap-filename DEFAULT 'c:\test.xls'.
    f_name = p_file.
    write:/ f_name.
    This program works correctly. There is a field for parameter. I can change the default name for a file.
    After all, I can run the program (F8) and rest of the code is executed. The field for parameter dissapears from the screen and the file name is displayed. ( command write)
    Now I added a function F4_Filename
    REPORT  Z_TEST8_AB.
    DATA f_name TYPE STRING.
    PARAMETERS p_file like rlgrap-filename DEFAULT 'c:\test.xls'.
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
           exporting
                program_name  = syst-repid
                dynpro_number = syst-dynnr
                field_name    = 'p_file'
           importing
                file_name     = p_file.
    f_name = p_file.
    write:/ f_name.
    I can browse a computer for a file now but after selecting the file I can't run the rest of the code. When I click on the icon or press key F8 the field for parameter doesn't dissapier and the command write is not executed.
    What do I do wrong?
    Could anyone suggest me a solution? How can I executed the code after using this function?
    Thanks in advance.
    Regards,
    Arek.

    Hi arkadiusz,
    1. simple
    2.
    <b>start-of-selection.</b>
    f_name = p_file.
    write:/ f_name.
    regards,
    amit m.

  • How to run Cloned OSX after using CCC?

    Hi,
    I've just cloned my OSX Tiger 10.4.11 to an 80GB External HD ising CCC 'Carbon Clone Copy'. I right clicked to 'get info' on the External HD and it's reading 31GB used, but when I do the same from my internal HD, it's reading 33GB. Am I missing something at 2GB, or is that usual?
    When I used CCC, I used the 'Copy all selected items' (and made sure everything was checked) because a message came up when I tried to 'Copy everything from source to target'. It said: The target volume is not large enough to accommodate a block-level clone. So I opted for the 'Copy all selected items'.
    Is this why i'm missing 2GB maybe?
    Also, When I open the external hard drive from teh desktop, everything's there in folders. But how do I run this 2nd HD? I restarted the laptop to see if it would give me an option to run which HD (just like logging on as different users, but I only have 1 user account and it opens automatically).
    I'm going to install Leopard to this External HD but want to know how I will run it after?
    Any advice appreciated!

    I'm posting from a new account because I couldn't log on from my home PC (said my account has been suspended or something similar)
    I got 10.5 Leopard installed onto my External HD on my MacBook Pro. It shows up as 10.5 when I go into System Preferences > Startup. I choose the External HD with 10.5 to restart/reboot and then wait. It loads but it's the exact same as my original 10.4.11?
    Tried restarting it again and again and switching between the Internal HD and External HD but there's no difference even though it says so in the Startup window in System Preferences.
    When i'm in my Internal HD and open the External HD on the desktop, I can see the proper files and when I open Applications folder I can see the few new applications such as Time Machine and the System Preferences icon (the same as the setting icon on the iPhone).
    Anybody know what went wrong?
    I was away when it was installing (said 50 minutes to go when installing leopard) so I came back after 40 minutes and it was just in the process of restarting the laptop. Everything normal came up and I waited a minute, then ejected the CD and booted up the External HD to find that it was no different.
    Help?

  • How do I fix project after "Remove From Version Control" corrupted it?

    I am using RoboHelp 9.0.1 and installed both Tortoise SVN 1.6.9 and latest PushOK SVNSCC then added my large RoboHelp project to SVN. I was able to check in and out files from SVN but had several issues with it:
    1) Super super slow. Working with folders or any renames would take 10 seconds per file and up to 1 hour if needed to refresh the root folder.
    2) I could not perform some actions at all, such as delete, rename, or move folders. I kept getting COM errors.
    I therefore decided that working with SVN and RoboHelp is not practical, at least not on my VPN so I decided to disconnect the project from source control and just work locally. The only option that I saw that sounded like it would do that was the "Remove from Version Control". This started a process that lasted for several hours. At the end of it, I now have several significant issues:
    1) The order of the files and folders in my Project Manager is completely wrong now. I have almost 1000 topics and reordering all of them is not possible.
    2) The Table of Contents, Glossary, and Index files appear empty. They had content before.
    2) A couple of the Single Source Layouts I had created are completely missing.
    3) Many, but not all, of the folders have tons of files with the extension ending in "_temp_removed_by_svn"
    4) Many, but not all, of the files are actually gone from SVN so I can't recover a clean image. There was no warning that this command would actually delete the files from SVN (I thought it would just remove the version control connection).
    5) Who know what other issue exist that I haven't seen.
    Any idea how I can fix this?
    Thanks in advance,
    Dan

    Are the "_temp_removed_by_svn" files in your local folder or SVN? Let us know how you get on with the new project. It sounds like something is wrong with SVN. Can you use the SVN Log command to see whether there is a different version you can restore. This might also give you an indication of what might have caused the problem. You could try deleting your CPD file. It gets rebuilt it is isn't there anyway. This file can become bloated and it is good practice to delete it when it gets close to 2mb in size. Your project is fairly large and has a lot of folders and may affect performance. Have you considered splitting them and merging the output? I know you probably don't want to consider this right now, but I think it may be a better long term solution.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • How to resynch my iphone after using someone elses account

    Can someone tell me how to resynch my Iphone 5 after synching it with a different account. All my stuff is gone and my phone has all the apps, pictures, contacts, etc. of the other user.

    k600r wrote:
    Will my stuff be on a backup on the other users account?
    Doubful, but you can look here: iTunes>Preferences(under the edit menu in Windows)>Devices.
    If so can I use that backup to resych my stuff back to my phone?
    You'd have to first sign in to iTunes on their computer, using your Apple ID.
    Bear in mind, when you go to sync to your computer, any iTunes content, on your phone, will be erased.

  • How to open old projects after updating FCPX

    My old version of FCPX was not that old, but I recently updated it to 10.1.2 and it now has the libraries rather than events. After I clicked up update projects and events it has brought my old events into the libraries viewer, but I do not see any of my old projects. I was just wondering/hoping that I can still access all my old projects and where I need to go to import them back in. Many thanks for any help or advice.

    No the projects were in the bottom right of fcpx and the events were in the top left. Yes I see now each of my hard drives is listed under 'libraries" and has all the events and import contents listed by name and then each one has a folder "updated projects" with what seems like all of my projects. So is there no way to associate the events and projects back together or at least under the same tab? Anyways, thanks for helping me find my projects, just seems like more of a hassle to get there: hard drive > Updated Projects > Project - rather than just pulling up the projects. I guess it's something to get used to. Is there any alternate way of organizing it or is this just the set standard now? Thanks again

  • How to select the particles after using the Particle Analysis

    Can I select the particles after the particle analysis directly, like chosing #1, #2 ..., or should I run the particle filter using the measured parameter?

    Hello Ishi,
    I now have a much better idea on what you are trying to do.  If you run the IMAQ Particle Analysis Report VI on the thresholded image that contains particles, an array of clusters will be returned that will contain specific information for each particle including the area, number of holes, bounding rectangle coordinates, center of mass, orientation, and dimensions. 
    To find out which particle is which in the image, index the Particle Reports (Pixels) output of this VI, unbundle the cluster to extract the Bounding Rectangle cluster, and then pass it to the Rectangle input of an IMAQ Overlay Rectangle VI.  This VI will overlay a bounding rectangle onto the image to show where the particle is located.  You can specify which particle you want highlighted by changing the array index of the Index Array VI that is responsible for extracting a specific cluster of particle information from the Particle Reports output of the IMAQ Particle Analysis Report VI.
    Regards,
    Mike T
    National Instruments

  • How do i access osx after using windows with boot camp

    I just got a new macbook pro and i have never used boot camp.  well i loaded windows 7 using boot camp and now I dont know how to get back to osX.  Can anyone help?

    lathscope,
    do you notice a little triangle on the bottom right corner of your screen - near the clock (in Windows)? If you do so, click on it. Shoud appear an option to restart the computer in Mac OS.
    Other option is to go to the Control Panel. There is a icon for Bootcamp there.
    Joster

  • Anyone know how to open a project after going from Trial to full purchase?

    i purchased the full version of Premier Elements 8 and the project I had been working on for weeks just won't open.  It seems like it's there, but nothing happens when I click on the file.  Any ideas?

    Unless the Project file (.PREL) has become corrupted, there should be no reason for a Project, created in the trial, to not Open in the full-paid version. The ONLY difference between the two programs is that trial will embed a watermark on the Exported footage.
    This FAQ Entry will instruct you on changing the Project, to remove that watermark.
    Good luck,
    Hunt

  • How do I reinstall OS after using disk utility to erase HD?  Trying to reset to factory to sell imac.

    Any help?

    Well, it probably came with Mountain Lion, which means you'll need to put ML back onto the machine.
    The reason you are having a problem is because you erased the drive and now you cannot boot from it because it has nothing on it. Not sure which instructions you followed, but you should only erase your hard drive if you are booted from another source - don't erase the drive you are booted from. In any case, I don't know if this will work as your hard drive is blank.
    Try to use Internet Recovery and that is: hold down Command + Option + R while starting up/restarting. If it works, you'll see a globe; when connected to Apple's servers, you can choose reinstall OS X which should reinstall the original OS.
    If that does not work and you do not have a bootable backup, then the only thing I can suggest that you take it to your nearest Genius Bar and let them deal with it. Remember to tell them that you need to have the original OS back on the machine (Mountain Lion) as you are legally required to do.
    If that works, you'll need to do one more thing to disassociate the machine and the OS with your ID, so the buyer will be able to associate it with theirs: go to this Apple site and de-register your Mac there:
    https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/wa/classicLogin?appIdKey= 58ef9db8ff4d201409e7270a68e4408ae1678e1618204c476572a1b5e5fb3518&path&language=U S-EN

  • How to not delete music after using a new computer

    Hello everyone, i got a new computer and i redid my itunes on to it, but when i plug in the ipod it shows the music however when i try to import new music, it ask if i want to overwright the old library cause it is linked to another itunes....what do i do to keep my old library???
    thanks everyone

    Welcome to Apple Discussions!
    Read this...
    http://docs.info.apple.com/article.html?artnum=61675
    It would be best to get the music onto the new computer as that would make syncing up with the computer much easier.
    btabz

  • How to make a Struts message null after used in JSP?

    Hi,
    In the context of Struts/JSP,
    An action class might write error messages by
    ActionError msg = new ActionError("msg.request.something");
    ActionErrors msgs = new ActionErrors();
    msgs.add(ActionErrors.GLOBAL_ERROR,msg);
    saveErrors(request,msgs);
    This message will produce a popup modal window by the following JSP code:
    <logic:messagesPresent>
    <html:messages id="error">
    <!--<li class="infomsg"><bean:write name="error"/></li> -->
    <script>javascript:alert('<%=error%>')</script>
    </html:messages>
    </logic:messagesPresent>
    The problem is that this JSP page is shared by serveral actions: when another action invoke this page again, the previous error message will take effect again.
    So my question is how to make message null after used once by its author.
    Thx.
    PY

    msgs = null;

Maybe you are looking for