How to edit with sed using a $var?

NamePkg="mousekeywin-0.2.wm.tar.gz"
Content of pkg.list
desktopewmh-0.1.wm.tar.gz
mousekeywin-0.2.wm.tar.gz
rcwminit-0.1.1.wm.tar.gz
How to remove line "mousekeywin-0.2.wm.tar.gz" with $NamePkg

sed -e "s|$NamePkg||g" -i pkg.list
will delete it but leave an empty space in place
sed -e "/$NamePkg/d" -i pkg.list
will delete the line completely

Similar Messages

  • I have adobe xi pro, but i can´t edit a form create with adobe 8.0, the message is this form can´t be edit with adobe, use adobe livecycle designer. need I to buy another program?

    I have adobe xi pro, but i can´t edit a form created with adobe 8.0. The message is: this form can´t be edit with adobe, use adobe livecycle designer. need I to buy another program?

    If the form was created using LCD then it can only be edited there. This
    application used to be bundled with Acrobat Pro, but that's no longer the
    case. So if you want to edit this file then you need to purchase it, yes.
    On Sat, Apr 4, 2015 at 6:39 PM, monicad4417911 <[email protected]>

  • I record with a sony ax2000 and use the 1080 60i setting. what should i edit with when using adobe premiere ele 10

    I record with a sony ax2000 and use the 1080 60i setting. what settings should I edit with when using adobe premiere elements 10?

    smannino
    You have duplicate threads on this issue related to project preset suggestion for your 1080 60i video.
    I have responded to your question in the other thread
    if i record with a sony ax2000 using 1080 60 i what is the best editing setting to use with elements 10?
    Please reply in that other thread.
    Thank you.
    ATR

  • How to edit ALV report using function modules

    I have a ALV report , i want to edit the report
    using function modules.
    how can i do that...
    Edited by: ms kumar on Mar 6, 2008 3:24 PM

    hi i had used this report with the check box,
    using the fm of alvs.....
    *& Report  ZZZ00
    REPORT  ZPR_02.
    TYPE-POOLS: SLIS.
    TABLES:pa0002,pa0008.
    data:begin of it_pa0002 occurs 0,
         checkbox,
         pernr like pa0002-pernr,
         begda like pa0002-begda,
         endda like pa0002-endda,
         vorna like pa0002-vorna,
         nachn like pa0002-nachn,
         end of it_pa0002.
    data:begin of it_pa00021 occurs 0,
         pernr like pa0002-pernr,
         begda like pa0002-begda,
         endda like pa0002-endda,
         vorna like pa0002-vorna,
         nachn like pa0002-nachn,
         expand TYPE xfeld value 'X',
         end of it_pa00021.
    data:begin of it_pa0008 occurs 0,
         pernr like pa0008-pernr,
         begda like pa0008-begda,
         endda like pa0008-endda,
         ANSAL like pa0008-ANSAL,
         LGA01 like pa0008-LGA01,
         BET01 LIKE PA0008-BET01,
         end of it_pa0008.
    DATA: IT_FIELD_CAT TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT1 TYPE SLIS_T_FIELDCAT_ALV,
          IT_LAYOUT1 TYPE SLIS_LAYOUT_ALV,
          WA_FIELD_CAT TYPE SLIS_FIELDCAT_ALV,
          WA_FIELD_CAT1 TYPE SLIS_FIELDCAT_ALV,
          IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS TYPE SLIS_T_EVENT,
          WA_EVENTS TYPE SLIS_ALV_EVENT,
          IT_HEADER TYPE SLIS_T_LISTHEADER,
          WA_HEADER TYPE SLIS_LISTHEADER,
          wa_keyinfo TYPE slis_keyinfo_alv.
    CONSTANTS:c VALUE 'X'.
    SELECT-OPTIONS: S_pernr FOR pa0002-pernr.
    START-OF-SELECTION.
      SET PF-STATUS 'DATA' .
      PERFORM GET_DATA.
      PERFORM BUILD_FIELD_CAT.
      PERFORM GET_EVENTS.
      PERFORM DISPLAY_DATA.
    *&      Form  get_data
          text
    FORM GET_DATA .
      SELECT pernr
             begda
             endda
             vorna
             nachn
             FROM pa0002
             INTO CORRESPONDING FIELDS OF TABLE IT_pa0002
             WHERE pernr IN S_pernr.
    ENDFORM.                    " get_data
    *&      Form  build_field_cat
          text
    FORM BUILD_FIELD_CAT .
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'CHECKBOX'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Check Box'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'PERNR'.
        wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Personnel no'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'BEGDA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Start date'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'ENDDA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'End date'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'VORNA'.
      wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'First name'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat-tabname = 'PA0002'.
      WA_FIELD_CAT-FIELDNAME = 'NACHN'.
        wa_field_cat-ref_tabname = 'IT_PA0002'.
      WA_FIELD_CAT-REPTEXT_DDIC = 'Last name'.
      APPEND WA_FIELD_CAT TO IT_FIELD_CAT.
      CLEAR WA_FIELD_CAT.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'PERNR'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Personnel no'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'BEGDA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Start date'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'ENDDA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'End date'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'VORNA'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'First name'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT.
        wa_field_cat1-tabname = 'PA0002'.
      WA_FIELD_CAT1-FIELDNAME = 'NACHN'.
        wa_field_cat1-ref_tabname = 'IT_PA00021'.
      WA_FIELD_CAT1-REPTEXT_DDIC = 'Last name'.
      APPEND WA_FIELD_CAT1 TO IT_FIELD_CAT1.
      CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'PERNR'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'personnelno'.
        APPEND wa_field_cat1 TO it_field_cat1.
       CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'BEGDA'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'begindate'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'ENDDA'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'enddate'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'ANSAL'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'annualsalary'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'LGA01'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'wagetype'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
        wa_field_cat1-tabname = 'PA0008'.
        wa_field_cat1-fieldname = 'BET01'.
          wa_field_cat-ref_tabname = 'IT_PA0008'.
        wa_field_cat1-REPTEXT_DDIC = 'Amount'.
        APPEND wa_field_cat1 TO it_field_cat1.
        CLEAR WA_FIELD_CAT1.
    ENDFORM.                    " build_field_cat
    *&      Form  display_data
          text
    FORM DISPLAY_DATA .
    it_layout-box_fieldname = 'CHECKBOX'.
    it_layout-EDIT = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM             = SY-REPID
          I_CALLBACK_PF_STATUS_SET       = 'PF_STATUS'
          I_CALLBACK_USER_COMMAND        = 'USER_COMMAND'
          IT_FIELDCAT                    = IT_FIELD_CAT
          IS_LAYOUT                      = IT_LAYOUT
          IT_EVENTS                      = IT_EVENTS
        TABLES
          T_OUTTAB           = IT_pa0002.
    ENDFORM.                    " display_data
    *&      Form  get_events
          text
    FORM GET_EVENTS .
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
       IMPORTING
         ET_EVENTS             = IT_EVENTS .
      READ TABLE IT_EVENTS INTO WA_EVENTS
                           WITH KEY NAME = SLIS_EV_TOP_OF_PAGE.
      IF SY-SUBRC = 0.
        WA_EVENTS-FORM = 'TOP_OF_PAGE'.
        MODIFY IT_EVENTS FROM WA_EVENTS INDEX SY-TABIX.
      ENDIF.
    ENDFORM.                    " get_events
    *&      Form  top_of_page
          text
    FORM TOP_OF_PAGE.
      WA_HEADER-TYP = 'H'.
      WA_HEADER-INFO = 'EMPLOYEE DATA'.
      APPEND WA_HEADER TO IT_HEADER.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY       = IT_HEADER
    ENDFORM. "top_of_page
    *&      Form  GUI_SET
    FORM GUI_SET USING RT_EXTAB TYPE SLIS_T_EXTAB .
      SET PF-STATUS 'DATA' .
    ENDFORM.                    "GUI_SET
    *&      Form  USER_COMMAND
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
                            R_SELFIELD TYPE SLIS_SELFIELD.
    DATA:V_PERNR LIKE PA0002-PERNR.
      CASE R_UCOMM.
        WHEN 'DET'.
    DATA: V_FLAG.
      clear : v_flag.
    LOOP AT IT_PA0002.
         if it_PA0002-checkbox =  'X'.
                   v_flag = 'X'.
              v_pernr = IT_PA0002-PERNR.
    SELECT  PERNR
            BEGDA
            ENDDA
            VORNA
            NACHN
            FROM PA0002
            INTO CORRESPONDING FIELDS OF TABLE IT_PA00021
            WHERE PERNR = V_PERNR.
    SORT IT_PA00021 BY PERNR.
    DELETE ADJACENT DUPLICATES FROM IT_PA00021 COMPARING PERNR.
    READ TABLE IT_PA00021 INDEX 1.
    SELECT PERNR
           BEGDA
           ENDDA
           ANSAL
           LGA01
           BET01
           FROM PA0008
           INTO TABLE IT_PA0008
           FOR ALL ENTRIES IN IT_PA00021
           WHERE PERNR = IT_PA00021-PERNR.
              if not it_PA0008[] Is initial.
              SORT IT_PA0008 BY PERNR.
             delete adjacent duplicates from  it_PA0008 comparing pernr.
              READ TABLE IT_PA0008 INDEX 1.
              endif.
            endif.
         enddo.
      it_layout1-group_change_edit = c.
      it_layout1-colwidth_optimize = c.
      it_layout1-zebra             = c.
      it_layout1-detail_popup      = c.
      it_layout1-get_selinfos      = c.
      it_layout-expand_fieldname  = 'EXPAND'.
      wa_keyinfo-header01 = 'PERNR'.
      wa_keyinfo-item01 = 'PERNR'.
    IF NOT V_FLAG IS INITIAL.
    CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
      EXPORTING
       I_CALLBACK_PROGRAM             = SY-REPID
        IS_LAYOUT                      = IT_LAYOUT1
       IT_FIELDCAT                    =  IT_FIELD_CAT1
        I_TABNAME_HEADER               = 'PA0002'
        I_TABNAME_ITEM                 = 'PA0008'
        IS_KEYINFO                     = wa_keyinfo
        TABLES
        T_OUTTAB_HEADER                = IT_PA00021
        T_OUTTAB_ITEM                  = IT_PA0008.
    ENDIF.
    CLEAR: IT_PA00021,IT_PA0002,IT_PA0008.
    ENDLOOP.
    WHEN 'BACK'.
    EXIT.
    ENDCASE.
    ENDFORM.                    "USER_COMMAND
    reward points if useful,
    venkat.

  • How to edit with different formats of clips

    Hi, I am sorry to as this question, I should know the answer but just ain't sure. I am making my reel and I have a bunch of stuff that is dv dvcpro NTSC and that is what the sequence setting is set to. 29.97 compressor is DV DVCPRO-NTSC. However, I have some footage that is DVCPRO HD 720P60.
    When its in the timeline the preview sure makes it look awkward, quality loss. What is the right thing to do here. Also, all my NTSC footage is 4:3, but what does my FC sequence register it as a NTSCDV (3:2) and not NTSC 4:3. Although it looks fine, I just want to understand my timeline settings. Thanks and hope to hear from someone.
    Also, can anyone point me in the right direction to learn how to deal with editing footage with different frame rates. For ex, some 29.97 footage, 23.98/24 Thanks
    Nat

    HI Swarup,
    thanx for the response.
    i did the same thing...i imported 2 different versions into xi and used in mapping.and interface is working fine.
    what i am concerned is : will there be any problem in future while transporting to different environments?
    and why it is showing 'segment version' in attribute in Trace in sxmb_moni....
    any inputs will be help full....
    Thanx in advance.
    regards.

  • How to chat with people use AIM?

    i am use I-chat 4.0 ,mac OSx10.5.1
    how can u chat with people use AIM?
    he use can chat with people who is .mac or .aim.

    Hi
    For a Mac person just starting out on iChat, a good place to start is here:
    http://www.ralphjohnsuk.dsl.pipex.com/page2.html
    If AIM is being used by a Windows PC user then setting up as per http://www.ralphjohnsuk.dsl.pipex.com/page12.html#_Service is required.
    Steve

  • How to authenticate with MSISDN using REST style in openSSO

    I need authenticate with MSISDN using the REST style in openSSO.
    So, can anybody tells how to implement it? I am aware of implementing with username password by calling the URL as /opensso/identity/authenticate. If i want to authenticate using MSISDN how we have do it using REST in openSSO 8.0.

    Hi Vijay,
    I hope there is something related to MSISDN in the administrator Guide and Administrator Reference. Administrator reference contains the MSDN attribute lists. I found that in the Developer's guide, there is a documentation related to customising authentication modules where we can specify MSISDN authentication module. I guess there is a msisdn.xml file which can be can be configured.
    I am a new bee on this front. But I guess, we will find it out together. To what extent you have done to configure. Could you give me little detail about it. ;)
    Your message too short for the forum.
    Manila

  • How to deal with the using up space of /opt/oracle

    Hello, all
    We have an Oracle 10g preinstalled in a linux server (Rh 9). Now the system reports that the /opt/oracle is using up. The alert says:
         Filesystem /opt/oracle has only 19% available space
    Because I didn't install the Oracle dababase, I didn't have the chance to select a place for filesystem. Now the /opt/oracle is on the /dev/sda6 which is only 7.1G. I want to know what kind of information are stored here? Should it keep growing? Our database running on the Oracle is a small one, and it shouldn't occupy so much space. By the way, I scheduled the backup to disk (another hard disk) everyday. Is there any copy of the backup on /opt/oracle? How can I deal with it?
    Any advice is highly appreciated!
    Qian
    Message was edited by:
    QianChen
    Message was edited by:
    QianChen

    Typically, the growth files on your binary directory is going to be in the $ORACLE_HOME/network/logs/listener.log , any tracelog, sqlnet.log, or any files that get accidentally dumped in $ORACLE_HOME/dbs.
    I would check there first.
    Also, try scanning for the last few files written/updated in the past 30 days.
    #30 biggest files modified in last little while:
    find . -xdev -type f -mtime -14 -exec ls -l {} \; | sort -nk 5,5 | tail -30

  • How to edit people out using fillters?

    I have video that I need to edit for a project how do I edit someones face and or body using the fillters in Final Cut Pro? I seen this technique used all the time on tv. I need to know how to do this because this is an very imoportant project and I do not want to edit out too much video because of a few people that do not want to be in the video.
    I do not know what term is used, but the perosns face is blurd so you do not know who they are. Hope this helps explain what I want to do better.

    You've got some experimenting to do!
    Try copying the clip in question and pasting the copy to V2 above the original. Now add a Blur filter to V2. Adjust the amount of blur till it's the way you want it then crop track 2 till only the part of the video you want blurred is blurred.
    That's the basics. Now you'll want to experiment with masks to get the shape you want and you may have to start playing with Motion Keyframes if your video is moving so that you can follow the guy you want to blur.
    It's not really that hard but the only way you're really going to figure this out is to get out the manual and play till you get what you want.
    Good Luck
    rh

  • How to edit with a second camera?

    We are using one camera to record our church services.  It was suggested we could get a second camera and then edit the video from the two cameras into one sequence.  Since I just started to use PP CS5 to do the editing from the one camera, I am not sure how that would work.  I have seen the final product that others have done, but would like a quick overview of what needs to be done in PP.
    By the way, we have a AVCHD camera that saves the video to an SDHC card, so will assume we will get a similar camera for the second one.  Also, we take the audio from our sound board and it goes into the camera, so is part of the recording.  Should I also assume that the audio should only be recorded onto only one camera?  Sorry, lots of questions - any help to get me started?

    Premiere PRO can easily handle the editing of two cameras or many more and really your question as to whether to get a second camera depends on creatively what you want to do.  If you are shooting someone speaking or playing a piano, having two cameras gives the ability to have one possibly shooting the person from the front, and then the second may be being farther way from the side going simultaneously.  That way when you are editing you can switch between the shots from each camera angle to give some style.
    To edit it is simple.  Import your footage from each camera and then drop the footage from one camera into one timeline and then drag and drop the footage of the second camera into the other  timeline.  Whatever is in the top layer or timeline is going to be what you see, so if you want something in the lower timeline to show you will have to make sure nothing is above it.  This is a very simple approach to get you going. 
    I'm assuming that you do not have much equipment from your question and you are just starting out. So the next step you will need to do is to synch up the sound on your clips from one camera with the other as best you can.  But if you are going to be doing a lot of this, you want to do some homework and study up as you will want to have your cameras synched up with timecode and you will want to be shooting with this in mind and investing a few bucks is well worth the cost.
    Good luck.

  • How to Edit with Multiple People - HELP

    We used to be a small, 1-guy editing operation. But now we are huge (joke) and have 3 guys doing editing on an ongoing kids program. 
    I need some help with how to effectively edit the same program with 3 different people editing.
    I assume that it's impossible for all 3 editors to edit the same project file simultaneously, right?  That would be ideal as long as each person is working on a different scene, but even then, I'm sure it would introduce all kinds of problems.
    So I'm left pondering the best way to edit one large program (1-hour in final length) between multiple people.  The best method I've come up with to this point is to split my project up into 5 individual PP projects broken down by general scene categories. 
    That way each person can work on the "same" project/episode, but yet be working off of separate files, thus avoiding syncing problems. 
    But this only seems like a bandaide to our situation, especially if we bring on a couple more editors in the future.
    Any suggestions on working on the same project/episode at the same time between multiple people?

    There was a recent thread on similar issues.  I don't have this situation (one man shop), but one aspect of the "import sequences" to a master gets my attention.  I was starting to do this for my own projects (e.g. a season's worth of ball games where you want to do individual gamnes as well as a highlight of the season).  One project for it all gets rather complicated, and it seemed simple to import key sequences into another project.  But...
    A) This is not a dynamic link, but an import.  The whole project (or whole sequence(s) your choice) come in, inside a new bin.  changes in the other sequence are not updated in the master, so you need to be finished in the imported sequence - or be prepared to import again and redo any transition work.
    B) When you import, even though all the clips are from a shared pool, Premiere creates new instances in the imported bin.  Even if you offline and relink (so you don't literally need multiple clips on disk), they are still multiple instances in the bins.  As long as you don't plan on using work on clips in other sequences/projects, it really won't matter.  But, for example, if editor A adds markers to Clip 1 in their project, and you import their project to the master project, Clip 1 in editor B's project imported to the master will not hve the marker set by editor A,
    All logical really, but it limits this as a workaround to making Premiere work as a shared editor.

  • How to edit with non-interlaced playback - for square pixel art?

    I'm working with PNG sequenced images from Flash. I'm compositing in AE and I export an QT movie in "Animation" compression, 100% quality. The exported movie is as 'clean' as a Flash swf. This becomes my source movie for Premiere CS3.
    When I bring my scenes to edit in Premiere CS3 I can't figure how to set up the project so the the final out-put is non-interlaced. I want the quality of the final movies to be as clean (non-interlaced) as my source movies.
    I would like to work in non-DV format since my source movies are made from square pixel art (Flash & Photoshop). This process works great in Premiere 5.1, is it possible in CS3?
    I work on PC - XPpro

    Jim,
    Thank you for responding to my post. My question is can I edit and output in Non-DV format (non-interlaced video) with CS3?
    I mentioned using Flash because I wanted it to be known I was starting with square pixel art. My final goal is to make DVD movie. I use Premiere to edit the scenes. I work in animation, some traditional hand drawn, painted in Photoshop, and some Flash generated. My end results needs to be a high resolution QT movie.
    I've been using Premiere 5.1 and for years (Premiere 4 before that). I would like use Premiere CS3, but I need to export without the interlaced video. Can this be done in Premiere CS3?
    [URL=http://imageshack.us][IMG]http://img155.imageshack.us/img155/2331/interlacevsnoninter lacehc8.png[/IMG][/URL]

  • How to edit Init Parameters using OEM Website?

    How can one edit an init parameter of a servlet runnig in Oracle 9 iAS.
    I have Oracle 9iAS r2 running on a Win2K with 512 MB RAM. Everything works fine excpet editing the init parameters using OEM Website. The documentation says its possible to edit the init parameters by clicking on it. But here, the init parameters are not having hyperlinks. Please help...

    Thanks for the instant reply.
    If that is the case, what is the way out then?
    How can the end-user (ofcourse, the 9iAS administrator at customer site) change the init parameters?
    What we have suggested is to edit the web.xml in the EAR before deploying the application. Is it the only way out? Customer find it difficult to accept.
    Please help.
    Thanks in advance,
    -Jamal

  • How to work with BI using Visual Composer....?

    Hi
    I want to work with BI report and BEx analyzer etc using  Visual Composer.
    I am using Visual Composer 7.1. I  have configured BI system connection using the following link
    http://help.sap.com/saphelp_nwce10/helpdata/en/7e/6dbcea3700452195e3bddaa47c5906/frameset.htm.
    In the above document i didnt understand the following para....
    Creating BI Users in the Portal
    Ensure that the BI back-end users also exist in the J2EE Engine. You can use the BI back end as the user store for the J2EE Engine or you can create the users manually. If you create the users manually, you should ensure that they have the same names as in the BI back-end; this avoids the need to configure user assignment.
    How to check BI back end user also exist in J2EE engine ?
    How to use BI kit in Visual composer. From where can i download BI kit for Visual Composer.
    What is the difference between developing application in VC using the above method and using BI kit.
    Please help me....
    Regards
    Sowmya....

    Hi,
    Without the BI kit you cannot do a lot of things in VC 7.1.
    This kit is not available with 7.1.
    The part that you did not understand meant that if you opening VC using a certain id in portal for eg "user" then the same id should be present in your backend system in this case BW system.
    Without this it wont be able to connect to the system.
    Hope this helps
    Regards
    Nikhil.
    Reward points if you find the answer helpful

  • How to poke with response using DDE

    I am trying to communicate with a windows application using the antiquated DDE interface, I know this interface has been overtaken by ActiveX but the application i am talking to (ZEMAX – optical modelling software) doesn't implement it.
    I have managed to post requests to the application and receive responses, all successfully. However one of the functions that I need to implement requires passing a pointer to a data structure to the application, I have the c code equivalent but no idea how to implement it. I have been using the supplied dde.llb but can find no documentation for it.
    This is the 'c' equivalent of the code i need to implement, can anyone help me with this???:
    int PostArrayTraceMessage(char *szBuffer, DDERAYDATA *RD)
    ATOM aItem;
    HGLOBAL hPokeData;
    DDEPOKE * lpPokeData;
    long numbytes;
    int numrays;
    if (RD[0].opd > 4)
    /* NSC Rays */
    numrays = (int)RD[0].opd - 5;
    else
    /* sequential rays */
    numrays = RD[0].error;
    /* point to where the data is */
    rdpGRD = RD;
    ngNumRays = numrays;
    numbytes = (1+numrays)*sizeof(DDERAYDATA);
    hPokeData = GlobalAlloc(GMEM_MOVEABLE | GMEM_DDESHARE, (LONG) sizeof(DDEPOKE) + numbytes);
    lpPokeData = (DDEPOKE *) GlobalLock(hPokeData);
    lpPokeData->fRelease = TRUE;
    lpPokeData->cfFormat = CF_TEXT;
    memcpy(lpPokeData->Value, RD, numbytes);
    /* clear the buffers */
    szGlobalBuffer[0] = '\0';
    szBuffer[0] = '\0';
    aItem = GlobalAddAtom("RayArrayData");
    GlobalUnlock(hPokeData);
    if (!PostMessage(hwndServer, WM_DDE_POKE, (WPARAM) hwndClient, PackDDElParam(WM_DDE_POKE, (UINT) hPokeData, aItem)))
    MessageBox (hwndClient, "Cannot communicate with ZEMAX!", "Hello?", MB_ICONEXCLAMATION | MB_OK);
    GlobalDeleteAtom(aItem);
    GlobalFree(hPokeData);
    return -1;
    GlobalDeleteAtom(aItem);
    WaitForData(hwndClient);
    strcpy(szBuffer, szGlobalBuffer);
    /* clear the pointer */
    rdpGRD = NULL;
    if (GotData) return 0;
    else return -1;
    Thanks for your help.
    Regards,
    Tom

    I'm not sure exactly what your code snippet is attempting, but if you are dependent on LabVIEW determining the pointer you probably are out of luck. There has been an ongoing thread in the last week regrading passing pointers to ActiveX and .NET so I won't belabor it too much other than to say that LabVIEW is running in its own memory space and isn't "aware" of what is in other code space. For a much better discussion look over the last few days (last week in particular) for the .NET/ActiveX discussions.
    There may be solutions, there were a number of posts to that thread that I haven't looked at, like writing dll's that encapsulate the "offending code" and provide sort of a translation medium.
    Good luck
    P.M.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

Maybe you are looking for