How do I create a "page peel" effect?

is there an effect or 3rd party filter that allows me to lift just the corner of video to reveal something beneath, and then to bring the corner back down. I've seen this in Johnson Wax spots. Corner lifts to reveal their logo. Don't need a full transition like "page peel" . Thanks for all help

You could use the 'Curl' filter...Effects/Video Filters/Perspective/Curl.
Tweak the settings and keyframe the movement to taste.
K

Similar Messages

  • How to add/create additional page in Crystal Report Layout SAP B1

    Hi,
    I wanna ask about How to add/create additional page in Crystal Report Layout SAP B1 ?
    I want when user print Purchase Order then on last page also print some page like Penalty Clause etc.
    Pls help me to find the solution.
    Br,
    Thomas Marsetyo

    Hi,
    In your report footer, set it to create a new page before it is printed (In 'Section Expert', select the Report Footer -> 'Paging' tab -> Check 'New Page Before' checkbox). Throw your Terms & Conditions into the Report Footer section.
    If you already have a Report Footer that you want to keep, just split the footer into two sections (Right-click the Report Footer section -> 'Insert Section Below') and follow the same procedure for the newly created section.
         Check this Link
    http://stackoverflow.com/questions/9232239/adding-an-additional-page-to-end-of-a-crystal-report
    http://www.crystalreportsbook.com/forum/forum_posts.asp?TID=18960
    Regards,
    Manish

  • How can I create a video with effects using my ipad?

    How can I create a video with effects (sepia, B&W, Negative, oval or any other shape borders) using my ipad?  I would Like to keep a higher res and also be able to shrink it down to email or send in a MMS. Or should I just upload it to my PC and mess with it there? Some of the apps I have are very easy to use compared to the learning curve needed for video editing software.
    Thanks

    Thats the Problem . . . how many apps do I have to try until I find the one I want? I noticed a few will render the video thus losing its original size. When I went to edit it more in iMovie the video was smaller--not good. And what software do you suggest, Templeton, for the PC? I love the apps because they are easy. I dont have hours to mess around on a software to figure out if its something I want. Im looking for simplicity. Maybe Ill get more into it later. I just want to record simple video of my playing the guitar for self analysis and create a short video for family and friends.
    Apps:
    iMovie
    CinemaFXV
    VideoFix
    Cartoonatic
    Video illusion
    VidEditor
    Software:
    Windows Movie maker (wont accept .mov files)
    After Effects (Too little time, so much to learn)
    Wondershare (Very easy but little choices)
    VideoPad (Again. Few choices)

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How do I create sub-pages in iWeb?

    Hi, How do I create sub-pages in iweb like it does in this website
    http://www.e-alliance.ch/index.php?id=405
    with all the main menus "about us", "advocacy capacity", etc?
    Thank you for your help!!!
    Boaz

    To create sub pages, just ensure that the main menu item is in the main menu and then for the sub pages themselves, ensure that they are NOT in the main menu and you link back by creating links instead.
    For example, you could use Staff as a main menu item, so Staff would be in the main menu and then descriptions of different staff members would be underneath, but not in the main menu - they would have separate links that you create and then hyperlink.
    If you want to make drop down menus in iWeb, as in the site that you linked to, you can't do this directly in iWeb itself.  You have to make it and then upload various css files to your web host and link to it in iWeb etc.  It is quite a complex task to create drop down menus in iWeb.  If you want to do that, then I would suggest that you use a different app instead - take a look at http://www.everwebapp.com.

  • Can/How can I create a page with all my blog pages RSS??

    Hello all.
    I have a website containing many seperate Blog pages according to their topics like News, Tech and Scifi.
    Is it possible to create a new page, that will contain the latest entries of all these blog pages a one "consolidated" page, maybe perhaps of RSS feed?
    Thanks and cheers

    Apple states
    How can I create a page that aggregates my podcasts?
    If you have multiple podcasts listed in the iTunes Store, the iTunes staff can create a single page that lists all of them in one place. We call this page an “artist page.” Note that a podcast can only appear on one artist page.
    To request an artist page, navigate to one of your podcasts, click on Report a Concern, and select Remove a Podcast. In the dialog box, explain that you would like an artist page, give us the exact name of the artist (please don’t include “Inc,” “LLC,” etc.), and list the exact feed URLs or links to your podcasts.
    at the bottom of this page
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    I hope two is enough and if not that someone contacts me and maybe even changes the info on the above link.
    Thank you for your input!

  • How do i create a page template in order to spawn new pages?

    How do i create a page template in order to spawn new pages?

    Where did you find the link/interface that led you to ask your question here?
    You should find the forum for whatever product your question involves and post there.
    Here is a link to a page that has links to all Adobe forums...
    Forum links page:
    http://forums.adobe.com/index.jspa

  • Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09, but can't find the option in new Pages.

    Does anyone know how I can create "facing pages" in new Pages? I could do it in Pages 09 but can't find the option in new Pages. I have documents created in Pages 09 and want to do some further work on them, but am now using new pages.

    There were 100+ features that didn't make it into the "new & improved, rewritten from the ground up” Pages 5. Some have returned with the updates & there are some new features that are worthwhile, but there are still 90+ features missing. Leave feedback for the Pages team using the link in the Pages menu and review & rate the new versions in the Mac App Store.
    If you previously had iWork '09, those apps are still in your Applications folder in a folder named iWork '09. You can continue to use them to get things done.

  • How do I create a sparkle star effect using pse 10?

    How do I create a sparkle star effect in pse 10.

    There are also brushes included in PSE10:
    The effect on the photo left is the Assorted Brushes...Crosshatch 4 (#48) clicked once with the default settings, then changed the angle to 56d and clicked again.
    The effect on the photo right is the Assorted Brushes...Starburst Large with its size increased to 119pixels.  Without moving the cursor, increase the opacity of the effect by clicking again....
    Ken

  • How do I create sub pages/menus in Creative Cloud?

    How do I create sub pages/menus in Creative Cloud?

    If you're looking for a replacement for the deprecated Spry Menus, look at the links below.
    Pure CSS Drop-Menu
    http://jsfiddle.net/NancyO/zN7fU/
    CSS3 Dropdown Menus
    http://www.red-team-design.com/css3-dropdown-menu
    PVII's Pop-Menu Magic3 (commercial DW extension)
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    jQuery Superfish
    http://users.tpg.com.au/j_birch/plugins/superfish/
    jQuery MegaMenu 2
    http://www.geektantra.com/2010/05/jquery-megamenu-2/
    Nancy O.

  • How do I create a Rubber Stamp effect?

    If you are familiar with the font "Ink Pad", this is the effect I want to use on an object.  It has the real rough looking edges of a rubber stamp.  How can I create this effect with Illustrator?

    Hello Kelly,
    Here is a method that I use:
    First place a photo of a wall or floor and use "Live Trace" default
    You will end up with a black and white texture like this:
    Then Select all the white areas and delete them. If you have a lot of black texture, feel free to delete as much as you want. You can always copy and paste pieces wherever you want.
    Now Place your design on top of the texture you have created. Then send the design to the back.
    The last step is to select the outlined text and the compound shapes and apply "Subtract From Shape Area" with Pathfinder. Please note that this option does not work on CS3 from the menu (one of the hundred of bugs of this lousy version), so please use the Pathfinder Window.
    And this is the end result:
    This was a quick sample, but I am sure you can do something a lot better than this sample. I think the difficult part is to get a good photo. Maybe next time I will use a damaged concrete floor or wall photo.
    I hope this helps!

  • HELP! How do I create a page for clients and talent to login and info...

    I need to create a page for interested clients to register to my site and then browse talent for promotions...I also need talent to be able to register and store their photographs and information so that potential clients (and I) can browse through their info... This obviously needs to be two different things...How do I do this???

    This old thread may help:

  • How do i create this kind of effect

    Hi i was just wondering if anyone knows of any tutorials or anything on creating this kind of effect. Do you think it was done in after effects?
    Its the 3d camera pan at around the 2:40 mark of the video.
    http://www.coreonlinemagazine.com/index.php/aaron-hadlows-new-movie-calibrate/336
    Thanks

    One more thing, guys. I looked through most of the effects he used and I can explain how did it, except how on earth did he pull this off?
    Take a look, I isolated them (hope these links work):
    http://www.mediafire.com/?2mgyymnbb2m
    http://www.mediafire.com/?z1mnyanwgmn

  • Create turnable page animation effect in Acrobat 9 for Reader 9 users

    Is it possible to allow Adobe Reader users to turn pages of downloaded PDF documents by clicking on the corners of visible pages, as they can online on Acrobat.com, say? Can I create this effect using Acrobat 9 or do I need other software?

    You cant create turnable page animation i'm afraid in Acrobat.
    You can create page transitions which might be what you are after, but the page curl is limited to flash files
    Document Processing – Page transitions or choose Page transitions from the pages panel
    Hope that helps?

Maybe you are looking for

  • Keeping my macbook awake with an external monitor

    So, I just hooked up my 15" macbook pro to my Samsung LCD using the mini display/port to HDMI adapter which in and of itself has resulted in some resolution problems, although that's something for another day. My big issue currently is that I'd like

  • CLAD Exam

    In about 24 hours I'm going to take the CLAD exam for NI certification. I had talked casually to our NI rep about this on the phone last week and was told I'd breeze through it with my experience. I guess, with that in mind I did not put any prep tim

  • IManager error editing Role Based Entitilements

    Hi, A while back we had to re-create our Organisational CA and server certificates. (Don't ask why...) Everything seemed to go well except for one issue I've been having since. We have OES2 SP3 (eDir 8.8 SP6) running on SLES 10 SP3. iManager version

  • User roles & responsibilities template (or Security Matrix Template)

    is there a template we can use within the AIM methodology to set up and organize users and their roles respecitive of different modules and components? If so, can someone point me in the right direction?

  • Hide specification column in result recording at plant level

    Hi, There is an requirement to hide specification column in result recording screen at plant level. By table control we can hide the specification column but the setting is at user level or client level. Is there any standard procedure to hide specif