How to hold the Lightning effect still?

Basically,the Lightning effect keeps "wriggling" from side to side - not the fixed end and start points, but the actual middle part. Is there any way to stop it moving to create a "glowing stick" ? (Premiere 11)

NYinperth
I have something for you to try in order to create your "still" glowing stick. It is not a freeze frame as I was suggesting before. Something else.
1. Open Premiere Elements 11 and go to Text Menu/New Text/Default Text to bring up the Titler.
2. The Titler has 4 sections: Text, Style, Animation, and Shapes.
In the Text section, click on the Selection Tool to use for selecting the Add Text on screen. Hit Delete on the keyboard to get rid of Add Text.
3. Go the Shape section of the Titler. Use the Rectangle Tool to draw out a rod. Then go to Style section.
Find the Style named Bell Gothic Ice 26 and double click that Style. The rod that is selected on the screen should look like
In the Titler, you can experiment with different Styles applied to the Shape if you want. To close out of the Titler, click on those two tiny triangles pointing right at the top right of the Adjustment Palette. If you want to re-edit the stick after you close the Titler, just double click the Title on the Expert workspace Timeline where you are working.
That is just a rough starting point.
Please let us know how that goes. You might even explore applying the Lightning Effect to a title  created in the Titler? Then freeze frame, then ChromaKey to get replace the black color that you are seeing with transparency so that that your image below shows.
Or, you just might want to invest your time in some Photoshop tutorials on glowing rods that are all over the Internet.
ATR
Add On...Here is an example of Lightning captured via the Titler as I roughly mentioned.

Similar Messages

  • How to hold the value in List box.

    Hi All,
    On my screen painter Screen I am displaying the Sold to party and ship to party with thier address.
    I am also displaying the Shipping condition based on ship to party. To display the shipping condition i am using list box. Once the user enter the sold to party automatically all the field is going to populate in their respective fields. I am facing the problem that, The list box getting populated with shipping condition but once you choose the shipping condition and hit the enter the list box getting refreshed. I am using this code in PAI event. And I can Only use this in PAI.
    The Function i am using for list box is CALL FUNCTION 'VRM_SET_VALUES'.
    Pls suggest me how to hold the value in List box.
    Thanks,
    Rakesh

    Hi,
    Now i am using in PBO.
    the code below in in PBO.It is still not holding the value.
          if list[] is initial.
          perform SHP_COND.
          endif.
    form SHP_COND .
    *DATA: SHOP(80).
        clear : GT_VSBED, list.
        refresh : GT_VSBED, list.
         select vsbed
           from knvv AS K
           into table GT_VSBED
          where Kvkorg = vbak-vkorg  "Kkunnr = GV_STPH
          and K~vtweg = vbak-vtweg
          and K~spart = vbak-spart.
        select VSBED vtext
          from TVSBT
        into table list
        for all entries in GT_VSBED
        where spras = sy-langu
        and vsbed = GT_VSBED-VSBED.
    *break-point.
    NAME = 'SHP_CON'.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        id                    = NAME
        values                = LIST[]
    EXCEPTIONS
       ID_ILLEGAL_NAME       = 1
       OTHERS                = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    endform.                    " SHP_COND
    Thanks,
    Rakesh

  • I'm using iM 11. How do i get lightning effects?

    I'm using iM 11. How do i get lightning effects?

    you might also insert a very bright image and set the clip length of a tiny fraction of a second. Unfortunately, the designers don't seem to think anyone wants to use many video effects.

  • The headphone jack on my iPod Touch Gen 2 is intermittent. I get sound sometimes out of one channel and sometimes both depending on how I hold the headphone jack.  Is this a costly repair?

    The headphone jack on my iPod Touch is intermittent.  I gat sound out of one channel or both depending on how I hold the jack.   It is making intermittent contact.  Is this a costly repair by Apple?   Can I do this repair myself?
    Thanks

    Here is a third-pary place. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Apple will only exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    Here are instructions for doing it yourself
    iPod Touch Repair - iFixit

  • How to hold the values as  it's not holding the values when it cross 255

    DATA : fval1  TYPE edidd-sdata.
    DATA : fval2  TYPE edidd-sdata.
    DATA : fval3 TYPE edidd-sdata.
    DATA : fval4 TYPE edidd-sdata.
    DATA : fval5 TYPE edidd-sdata.
      DATA : len(3) TYPE n.
    values1 = wa_final-low.
      values2 = wa_final-high.
      IF wa_final-high IS NOT INITIAL.
        CONCATENATE values1 values2 INTO fval1 SEPARATED BY '-'.
      ELSE.
        fval2 = values1.
      ENDIF.
      IF fval3 IS NOT INITIAL.
        IF fval1 IS NOT INITIAL.
          fval = fval1.
          CONCATENATE fval3 fval INTO fval3 SEPARATED BY '/'.
        ENDIF.
        IF fval2 IS NOT INITIAL.
          fval = fval2.
          CONCATENATE fval3 fval INTO fval3 SEPARATED BY '/'.
        ENDIF.
      ELSE.
        IF fval1 IS NOT INITIAL.
          fval3 = fval1.
        ENDIF.
        IF fval2 IS NOT INITIAL.
          fval3 = fval2.
        ENDIF.
      ENDIF.
      DATA : len(3) TYPE n.
      len = STRLEN( fval3 ).
      IF len > 250.
        fval4 = fval3+0(250).
        fval3 = fval3+250(5).
    *    CONCATENATE fval4 fval3 INTO fval5.
      ENDIF.
           IF fval4 IS INITIAL.
              wa_final1-varbl31 = fval3.
            ELSE.
                CONCATENATE fval4 fval3 INTO fval5.
                wa_final1-varbl31 = fval5.
            ENDIF.
            MODIFY  it_final1 FROM wa_final1
            TRANSPORTING varbl31 WHERE agr_name = wa_final-agr_name.
    at this point also it's not holding the values when it exseds 255
    kindly please help

    H friends ,
    i am not the expert at the same time i know some thing in abap
    fval4 = fval3+0(250).
        fval3 = fval3+250(5).
    in the above case fval3 have 255 char at that time iam transporting 250 char to fval4 with this statment
    fval4 = fval3+0(250).
    and iam keeping  the remaining 5 char in fval3 with this statment
    fval3 = fval3+250(5)
    so that i can push some more values in fval3  and at i am
    CONCATENATE fval4 fval3 INTO fval5.
    so that fval5 may get all values this is the way i try but fval5 is not holding all the values 
    i asked solution for that
    fval 3 = fval3+250(250)
      dosen't  have any meaning i know that  friend
    my question is how to hold the remaining value

  • I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT "Action Trailer.aep"

    I NEED A SOLUTION ON HOW TO UNLOCK THE AFTER EFFECT File, "Action Trailer.aep"

    We seriously don't have enough information to help you.
    What do you mean by "unlock"?
    My wild, shot-in-the-dark guess is that you've got some sort of template that, when you try to save, says that it's locked. If that's the case, try using "Save As" instead. If that's not your problem, refer to Todd's link and provide more info.

  • How to hold the result set

         We have a GUI swing screen in which we have navigation buttons.
         when the user clicks the previous ,next, last,first buttons we have to show the records accordingly.
         The min. size of the database is around 1 million.and each row has 60 columns.
         Our approach is screen--->servlet-->ejb beans --->database.
         since the database is huge how to hold the values, and where, without affecting the performance.
         If we get the resultset it holds all the data.since the data size is huge,we are looking for a solution.The user may browse through the data ,edit the data and delete the data.
         we have to perform accordingly. Also, if, for example, user1 is seeing record no.1 & user 2 has modified record no.3 in the meanwhile, when user1 goes to record no.3, he should see the
         modified record. In short, the user should always see the latest values.
         please give us the best approach to solve this problem.
    Also this is in a multi user environment.

    It seems like you need to look at threads to update current values in the display and narrow the result set that you retrieve to match the criteria needed for display. You might consider making the method to change values a syncronized one.

  • Software shuts down when using the lightning effects filter. Help!

    Software shuts down when using the lightning effects filter. Help!

    Have you done a Forum search yet?
    Is your GPU driver up to date?
    What are your version of Photoshop, OS and GPU anyway?

  • How to Rotating the Bulge effect....   Stumped

    I was looking at a tutorial
    http://library.creativecow.net/articles/rabinowitz_aharon/displacement1/video-tutorial.php
    on using the displacement effect.  I started experimenting on my own using the Bulge effect to animate the layer that is to be used as the displacement source.  If you want to follow exactly what I was working with, it was number 4, the Expand Output composition.
    I applied the bulge effecty to the Test Layer with the setting of Horizontal Radius 33; Vertical Radius 167, and a Bulge Height of 4.  I animated the effect by setting keyframes for the Bulge Center.  Then I duplicated the effect and changed the Horizontal Radius to 33 and the Vertical Radius to 167.  What I ended up with was a  + (Plus sign) looking shape that animated over the layer, which is what I wanted.  I precomposed the layer and used it as the displacement map layer.
    But then I wanted the rotate the Plus sign so that it would be like and "X" instead. but there is no way to adjust for that in the Bulge controlls.  So I applied the Transform effect to the Test Layer to rotate it but I rotates the whole layer including the word Test, I got the X shape that I was looking for but I did not want to put the Test on a 45 degree slant.
    Any suggestions on how to rotate the Bulge effect.  I thought that it may have something to do with the Pin All Edges, I didnt see anything change with it on or off.
    Cris

    Unfortunately there is no intuitive way to do this. It's one more time where you will have to pre-compose. Rotatte the footage in teh pre-comp, apply the bulge on top of it using an adjustment layer. Put the pre-comp in teh main comp, then un-rotate it. I believe that will give you the kind of distortion I think you are looking for.
    Mylenium

  • Does anyone know how to remove the fisheye effect from a gopro camera, remove it with premiere pro c

    Does anyone know how to remove the fisheye effect from a gopro camera, remove it with premiere pro cc.

    Use the Lens Distortion effect, set curvature to your liking.

  • How to achieve the same effect seen in attached screenshot

    I dig the artist's style in image on very right of attached image -
    MINE ON LEFT W/RED ARROWS.
    Question, as I have my character open in PS6.0
    and still in PSD format as I am coloring him, what would be the simplest
    steps to take to add that shading like black under his eye (in right side image)?
    Or that stippled shaded effect along his nose?
    See areas under my character's eye and nose I want to experiment on . . .
    THANK YOU!
    I dig the artist's style in image on very right of attached image -
    MINE ON LEFT W/RED ARROWS.
    Question, as I have my character open in PS6.0
    and still in PSD format as I am coloring him, what would be the simplest
    steps to take to add that shading like black under his eye (in right side image)?
    Or that stippled shaded effect along his nose?
    See areas under my character's eye and nose I want to experiment on . . .
    THANK YOU!

    How phenomenal it is to go to this forum and have this type of invaluable feedback from each and every one of you.
    I certainly appreciate this! tfkelly42 you did some great touch-ups on my sample mate! I do like this, like having you all over my shoulder saying, "click this, then that tool...." THANKS! And, I use PS6, so my version is NEWER than his....so I think I ought to achieve the same effect! BTW, here is a screenshot of my tool bar with BRUSH highlighted....but before venturing into a test....should I highlight the area in any way....prior to trying the brush tool and the rest? I'll post a sample back here (probably on Tuesday...it's gettng late here) BUT THANKS!

  • How to hold the government's stock under our location

    Hi All,
    We have a scenario where in we need to hold the stock of some government's material in our plant /warehouse. The government agrees to pay for the storage for whatever period of time we need to . What I want to know is
    1. Though the stock is at our facility we don't want the stock to be valuated. We will ship the material until the govt asks us to sell. In a nutshell we should be able to hold the stock in our warehouse ,but that should be shown as Gov't stock in the system.
    The scenario I am talking about is reverse of Consignment . Please let me know how to achieve this in SAP ECC 5.0.
    Thanks
    Amrith

    Dear Amrith,
    I  had a simalar problem for Customs Bonded Stocks which were lying at Ports, but we could not own it we had not yet paid the duties.
    Just see if it also works for your case with some modifications... :
    Bonding and Ex-bonding at Customs
    My client is receiving goods at customs and he will keep the goods in custom bonding store. So while receiving the goods at customs office, we should have information and entry into sap and we have to make payment to vendor. But after some time, we will make the payment to customs and we will get the material into our store. So please explain how to configure this?
    There are two ways to handle this scenario:
    1. Create a separate Plant for Customs Warehouse & post goods in this Plant where they are lying as Bonded stock. Later when you pay duties & release the stock, use Plant to Plant Stock Transfer process & move the stock to your regular Plant after adding Customs duty & other charges.
    2. In the existing plant create a Puchase Orer & post a MIGO (GRN) with movement type 105. This will show the stock lying your plants as GR Blocked Stock, there would be no valuation & you cannot futher process this Blocked stock. After you release the goods from Custom bond, post a MIGO with movement type 103. This would valuate the stock & consider it as normal stock available for further processing.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • How to create the droste effect in photoshop cc 2014?

    In the past you could use pixel bender to create the droste effect, that is what I have found out from the internet.
    But how to create that effect today seams non existent on the net!
    Can any one help?
    KR,
    AJ

    Right.  Pixel Bender is gone.  It was an experimental filter available from Adobe Labs but never made it into an actual product release. As of CS6, Oil Paint filter was introduced.  It's not the same thing but more like a shaved down version of Pixel Bender.
    Look at Filter Forge.  They offer a 30-day trial.  Disclaimer:  I've never used it myself.
    Droste Spiral (Effect)
    Filter Forge - Download Free Photoshop Plugins!
    Nancy O.

  • Please help, urgent! How to hold the connection to oracle database

    I used java to connect Oracle database using thin driver. But I found out the connection will be closed very soon if I did not make any request of query. I query the database like after 1 mins without doing anything, my application will dead for about 2 mins, then everything become normal again.
    How can I hold the connection or is there any other solution? thank you!

    Duffy is, as usual, correct. If you have a single-user environment, then holding onto a connection is probably okay (not desirable but also not pernicious). However, once you have more than one user, you will want to use a connection pool. Jakarta Commons (jakarta.apache.org) has an open source pool that is reliable.
    But the fact that you are having additional problems makes me believe you are missing a few fundamental concepts, such as transactions. Even if the connection dropped, you should be able to reconnect without issue (granted, with some additional latency). The only time it would pose an issue (above and beyond the ones mentioned above and in previous replies) is if you are not managing your transactions properly.
    In short, take some tutorials on JDBC, DataSource, connection pools and transaction management.
    - Saish

  • How to use the stabilizer effect on Adobe premiere elements 11

    Can anyone show me how to use the video stabilizer effect on premiere elements 11 step by step ?
    Thank you !

    achiu8888
    I suspect that the principles would lend themselves to a step by step but how the effect works with your specific video will depend upon the degree of shakiness and other factors.
    1. Your video clip on the Timeline of a project with the project settings which match the properties of your source video (part of all works whether or not the Stabilizer is involved.
    2. Go to fx Effects Tab at the bottom of the Expert View, navigate to the Video Stabilizer and click on it to view its thumbnail. Drag the effect's thumbnail from there into the video clip on the Timeline.
    3 I ran into an online excerpt of the Video Stabilizer in Adobe's Classroom in a Book, you may want to follow the path from there.
    http://books.google.com/books?id=7zdjWNElM1IC&pg=PT252&lpg=PT252&dq=premiere+elements+stab ilizer&source=bl&ots=YM4HHrmZAl&sig=MpFt6GJn7IkgESWBZ6sC6wA7aEM&hl=en&sa=X&ei=ZZ2zUbbVI5W3 4APDq4D4DQ&sqi=2&ved=0CHoQ6AEwBw
    Also, you might want to put that information together with Adobe Effects Reference's description of the options iin the Applied Effects Palette/Stabilizer Panel.
    http://help.adobe.com/en_US/premiereelements/using/WS4B8135DA-083C-42eb-B09E-65070ECBC889. html#WSeffff8bffc802084cc1873012fdd6069b3-8000
    (Scroll down until you get to Video Stabilizer options description.)
    The above should supply with good starter information. If you need clarification on anything that I have written, please do not hesitate to ask.
    Thanks.
    ATR

Maybe you are looking for

  • Fields not showing up in TaskForm

    Hi, I've been asked to go through this BPM Foundation Labs tutorial/demo thingy, and I'm encountering a problem where the input form I autogenerated for the task does not show the controls/fields on the page when I actually run the task. (I can see t

  • I need a replacement addon for Perma Tabs

    I upgraded to FF 4. from 3.6.17 and either all of my addons upgraded ok or I was able to find satisfactory FF 4 compatible replacements for them. The only one I could not do that with is Perma Tabs. This is a vitally important tool for me since every

  • Error in B1 DB Profiler

    Error in B1 DB Profiler: Even though I configured my SBO_SP_Transaction Notification stored Procedure, I am getting the Error like below.      "An addon test has been run.Several lines should appear in the B1DbProfiler is not correctly configured.If

  • Comcast & Airport Extreme Correct IP Address?

    Apple Support had to help me setup my new Airport Extreme Router, as it turned out, due to a Comcast Internet problem in my area. Everything appears to be working correctly now, however, what is the correct default Apple Extreme IP Address?  I found

  • Mute music when videos play in iPhoto

    I have a presentation that combines photos and a few videos in iPhoto.  I am using music form my itunes library.  How can I get the music to stop playing or mute when the videos play in iPhoto (so we can hear the sounds from the imported video) then