Is there a "center waveform" function?

Is there a way to center the waveform or correct for DC offset, like in Cool Edit Pro/Audition? I'm running STP v.1.
Thanks!
tim

I just discovered that Sound Studio has a DC offset option that allows me to manually center a waveform. This does the trick perfectly!
(I needed to move mono voice tracks +1.7 that were recorded years ago. Without this tool, cleaning up the tracks in Soundtrack Pro takes twice as long!)
Too bad SoundTrack does not also have this option. If it does, please let me know where to find it.
Does Apple read these forums? Adding a manual option to its DC offset should be an easy upgrade.

Similar Messages

  • I would like to put Dreamweaver 8 on a new computer.  There is no "deactivate" function and the technical support person I chatted with recommended I come here.  Can I just use the serial number again?  How can I deactive?  Has anyone else run into this?

      There is no "deactivate" function and the technical support person I chatted with recommended I come here.  Can I just use the serial number again?  How can I deactive?  Has anyone else run into this?  How can I get Dreamweaver 8, which is no longer being activated by Adobe, on a new computer?  Is it even worth doing or do I need to get a new version.  What are the killer features I'm missing?

    If you manage to get it installed on your current OS, don't forget to install the 8.02 update.
    Adobe - Dreamweaver Support Center : Updaters
    Nancy O.

  • Is there any built in function that prints numbers in words inXMLP

    Hi Team,
    This is regarding SR#3-7005716301 from Syntel Limited.
    Customer is asking Is there any built in function that prints numbers in words in an rtf teamplate using xml publisher?
    For example if the net amount is 100 dollars then it should print "ONE HUNDRED DOLLARS AND ZERO CENTS ONLY"
    Thanks in advance!
    Leo

    I do not know of any function available that lets you print the currency words (dollars, cents etc). Here is a link to a blog post that will allow you to print numbers in words.
    https://blogs.oracle.com/xmlpublisher/entry/numbers_to_words_update
    Thanks,
    Bipuser

  • Is there any BAPI or function module  to delete entries from a table (VBAK)

    Hi Everybody,
    this is my first thread in SDN...
    my problem follows...
    A report is be created that selects all sales orders created by e-Sales that are more than 20 minutes old and still have a delivery block:
    tables:
    VBAK     sales document: header data
    selection fields:
    VBAK-LIFSK      &#8800;     <BLANK>
    VBAK-ERNAM     =     userID used by e-Sales / IVE
              (EP-BATCH / EAI-BATCH)
    VBAK-ERDAT      <=     Current system Date
    VBAK-ERZET     <=     Current system Time - 20 minutes
    These orders should be deleted from SAP system.
    This report should be scheduled to run regularly every 10 minutes.
    my doubt : is ther any BAPI or Function module to delete entries from a standard table...if no what is the way to delete the enteries from a std table...
    best replies will be rewarded....
    regards
    Reddy

    Hi Vasanth ,
    thanks for your reply.
    i tried in the same manner what u mentioned.
    but how to pass only one parameter to the functionmodule..
    here in this case we have to pass only update flag as 'D'..
    i did the same it giving dump..
    An exception occurred that is explained in detail below.                          
    The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was      
      not caught and                                                                   
    therefore caused a runtime error.                                                 
    The reason for the exception is:                                                  
    The call to the function module "BAPI_SALESORDER_CHANGE" is incorrect:                                                                               
    In the function module interface, you can specify only                            
    fields of a specific type and length under "ORDER_HEADER_INX".                    
    Although the currently specified field                                            
    "INT_ORDER_HEADER_INX" is the correct type, its length is incorrect.              
    my pgm :
    *& Report  YNEW_ORDER_DELETION
    REPORT  ynew_order_deletion.
    TABLES:vbak.
    PARAMETERS:
         p_lifsk LIKE vbak-lifsk DEFAULT '02'.
    SELECT-OPTIONS:
       s_lifsk FOR vbak-lifsk DEFAULT '10',
        s_ernam FOR vbak-ernam,
        s_erdat FOR vbak-erdat,"DEFAULT sy-datum.
        s_erzet FOR sy-uzeit.
    *PARAMETERS:
    p_erzet LIKE sy-uzeit.
       s_erdat like vbak-erdat,
       s_erzet like vbak-erzet.
    DATA:
       BEGIN OF int_final OCCURS 0,
            w_vbeln TYPE vbak-vbeln,
       END OF int_final.
    DATA:
      int_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    DATA: int_order_header_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE.
    DATA:
      wf_time TYPE sy-uzeit.
    INITIALIZATION.
      s_ernam-low = 'KULKARMA'.
      s_ernam-sign = 'I'.
      s_ernam-option = 'EQ'.
      APPEND s_ernam.
    s_ernam-low = 'EAI-BATCH'.
    s_ernam-sign = 'I'.
    s_ernam-option = 'EQ'.
    APPEND s_ernam.
    wf_time = sy-uzeit - 1200.
    p_erzet = sy-uzeit - 1200.
    p_erzet-low = wf_time.
    APPEND s_erzet.
      int_order_header_inx-updateflag = 'D'.
      APPEND int_order_header_inx.
    START-OF-SELECTION.
      SELECT vbeln FROM vbak
                       INTO TABLE int_final
                       WHERE lifsk EQ p_lifsk
                         AND ernam IN s_ernam
                         AND erdat IN s_erdat
                         AND erzet IN s_erzet.
      IF sy-subrc = 0.
        LOOP AT int_final.
          CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
            EXPORTING
              salesdocument         = int_final-w_vbeln
      ORDER_HEADER_IN             =
        order_header_inx            = int_order_header_inx
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      NO_STATUS_BUF_INIT          = ' '
            TABLES
              return                      = int_return
      ORDER_ITEM_IN               =
      ORDER_ITEM_INX              =
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
      SCHEDULE_LINES              =
      SCHEDULE_LINESX             =
      ORDER_TEXT                  =
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
        ENDLOOP.
        LOOP AT int_return.
          WRITE:/ int_return-type,
                  int_return-id,
                  int_return-number,
                  int_return-message.
        ENDLOOP.
      ENDIF.
    please help me ..its a very urgent issue to be solved...
    am waiting for ur reply...
    regards
    gangareddy

  • There is no filter function in numbers for ipad,its very discouraging,as a ipad fan,even nokia lumia providing filter in there low cost mobile

    there is no filter function in numbers for ipad,its very discouraging,as a ipad fan,even nokia lumia providing filter function in excel in there low cost mobile.
    APPLE KINDLY PROVIDE THIS FEATURE AS UPDATE SOON,COZ I WORK ON EXCEL N NUMBERS IN MY IPAD IS DEAD WITH OUT FILTER FUNCTION,I CAN NOT TRAVEL WITH MY IPAD DUE TO THIS REASON,AS I HAVE TO BE IN FIELD WITH SALES FORCE SO I BOUGHT IPAD.

    Probably you know that the new version of Numbers for iOS uses the filters created in the Numbers for Mac version.
    It's not the best solution but it helps (of course, if you have a Mac!)

  • Is there a BAPI or Function module can create a Customer Master record?

    Hi experts,
    In SE37, Is there a BAPI or Function module can create a Customer Master record?
    Regards

    BAPI_CUSTOMER_CREATEFROMDATA1
    also see this thread.
    Re: Create customer record  in SAP via BAPI
    кu03B1ятu03B9к

  • Module pool / Screen Prog is there any standard SAP functionality ?

    Hi I am creating a Module pool / Screen Prog. On this screen I have nearly 100 fileds , now I want to take print out of all the information shown on the screen for the same is there any standard SAP functionality ?
    Does SAP provides any standarar ready made functionality for the same. ?

    No, there is no standard functionality for this.  dynpros are not designed to "print out".  This is what list displays are for.  That said, you will need to write your logic to kick off  a list display with all of your field values there,  then the user can print.
    Regards,
    Rich Heilman

  • Is there a page down function for the front panel?

    I have a front panel on two monitor pages. Is there a function which shows the second page when I press a button on the first page and then switches back to the first page when a loop starts over again? Is there additionally a print function which prints then only the second front panel?
    Thank you very much for answering these questions.

    Are these two separate VIs ? If so, then you can open a VI reference, then use it an Invoke Node to modify the properties for the Open FP method. This would allow you to hide, minimize, or unhide the VI.

  • Is there a cap lock function on the iPod touch?

    Is there a cap lock function on the i-pod touch? I don't see a way to do it.

    Hello mdgm,
    First ensure that Caps Lock is enabled by going to *Settings > General > Keyboard > Enable Caps Lock*.
    When this feature is enabled, you can then use Caps Lock by double-tapping the Shift key on the keyboard.
    B-rock

  • Is there a call block function for the iPhone 4S?

    Is there a call block function for the iPhone 4S?  If not, will it be offered in the future?  what else can I do to the phishing calls?

    No.
    Apple has not said.
    Don't answer your phone.

  • Is there a Ripple-"cut" function in FCE?

    Hi-
    This is something I have been battling for a while. I am pretty sure no such thing exists, but here goes:
    In the past, when I have simply wanted to move one clip to another place in the timeline, I have had to
    +1. copy it+
    +2. Ripple delete it+
    +3. Paste insert it where I wanted it to go.+
    So here are the questions:
    *1. Is there a "Ripple-cut" function in FCE that ripple-deletes the clip while copying it to be pasted later?*
    *2. If not, is there a better workflow for the process than the one described above?*

    Thanks Tom,
    Sorry for doling out answer points so quickly, I merely assumed that since it wasn't in one of the top menus it didn't exist. I then found out that ripple-delete wasn't in the top menus either, but of course it exists!
    Just tried the ripple-cut, and of course it worked. Thanks again Tom, sorry for being so hasty to declare my question solved!
    Is there a good site you know of where I could see more of these shortcuts that aren't mentioned in the menus?
    P.S. If you ever do another reprint of your book, this might be something to consider adding, since it seems like such a basic requirement! (moving things within the timeline effectively is an important skill to have)

  • Is there a spell check function in iCloud pages?  Doesn't seem to be.

    Is there a spell check function in iCloud pages?  Doesn't seem to be.

    Select the spanner > Settings > Check Spelling.

  • Is there a 1/x function in Numbers?

    Is there a 1/x function in Numbers?

    Bengoshi26 wrote:
    Thanks. How would I construct a formula that contains a relative cell divided by an absolute cell. This yields a number like 102% or 97%, which I'd rather have displayed as 2% or (negative) 3%?
    What I'm trying to do is track values that change periodically divided by a basis (which is absolute).
    I'd appreciate your thoughts.
    I read this as 'I want to display the percent change from the base amount.'
    With the base amount in B1 and the changed values in the rest of column B, place the formula below in column C, starting with C2, then Filling down.
    =(B-$B$1)/$B$1
    Format the target cells as Percent, with and many digits as you want of decimal precision.
    Regards,
    Barry

  • Is there a Tool or function (in Illustrator or InDesign) that selects any shape and "punches" a "hole" of that shape all the way down through multiple objects to the paper or artboard?

    Is there a Tool or function (in Illustrator or InDesign) that selects any shape and “punches” a “hole” of that shape all the way down through multiple objects to the paper or artboard?

    In Illustrator, group the objects that you want to punch through, and use the transparency pallet.

  • Why is there a java enable function in the settings app if java ia not supported by ipad2?

    Why is there a java enable function in the settings app of the ipad2, ios5, when java is not supported by ios5 on the ipad2?  The adds say that java neo, I think that is what it is supposed to be called, was supposedly introduced into the ios5 format to deal with this?

    If you're looking in the settings for Safari, that's JavaScript, which despite the similarity in names is completely different from Java. Java is not, never has been, and all indications are never will be supported in iOS. I have no idea what "java neo" might be, but I've never seen Java mentioned in any way in any of Apple's iPad ads.
    Regards.

Maybe you are looking for

  • I'm stumped. CAN ANYONE HELP?

    I am running a G5 Mac OS 10.5 with Logic Pro 8. My Midi controller is a Roland digital piano (HP 1600) and the interface, a Novation Nio 2/4. The signal is being received and played as normal EXCEPT - if I play the piano fast, after a while the signa

  • F.17 customer balance confirmation letter

    hi I want to get balance confirmation letters print for 100 customers but system is showing only first customer.

  • Can't sync with Vista 64.

    Hi all, I have a Treo 750 and I have had Vista Ultimate 64 on my machine for 4 months with no problems. I turned the computer off last week for two days while I was gone, and when I got back, my phone would not sync with anything, the computer won't

  • FI-STANDARD SCRIPT FOR FBCJ TRANSACTION CODE

    Hi All, I need to change the standard script for FBCJ transaction code, Can some one help to get the standard Script name. Actually i need to remove IDES and place logo.Where to configure the Custom Script. Thanks in Advance.

  • IWeb Publishing New Version But Only Allows Me to Edit Old Version

    In OSX 10.7.5 and iWeb 3.0.4, the iWeb app opens to show my website as it was 1 year ago. When I visit the site published on the web, it shows my most current version of the site as it's posted through a local folder and online Dropbox. How do I get