Creating a bend image in AE6

Hi all,
I am creating a video in which in which there is a film reel which moves from left to right when it comes to the centre the reel must be turned in to digit(2) by taking appropriate twist that s are required[All this is done in motion]. How do i do it. I have tried puppet tool (for transforming into digit 2)but it doesnt look neat when video is playing . How do i do it. Please give me a hint

Nah, that's way beyond AE's limited 3D abilities. You're gonna need a 3D plug-in like Zaxwerks Serpentine or a 3D program.
Mylenium

Similar Messages

  • The HOLE filter.  Can I place an image behind the hole created in another image?

    The HOLE filter.  Can I place an image behind the hole created in another image?

    Here's an example of the hole filter composited against a background image. This filter will run in the Pixel Bender Toolkit.
    <languageVersion : 1.0;>
    kernel HoleCompositedAgainstBackground
    <
      namespace: "pb::forums";
         vendor: "spotted chicken";
        version: 1;
    description: "Hole filter composited against a background image. The original 'Hole' filter was written by Jerrynet. See the Pixel Bender Exchange, <http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1550519#> for more information.";
    >
    //< namespace : "net.Jerry.PixelBender";
    // vendor : "[email protected]";
    // version : 4;
    // description : "A Hole Distortion Effect.";
    //>
    parameter float radius
    <
         minValue:    float(0.0);
         maxValue: float(1000.0);
    defaultValue:  float(100.0);
    aeDisplayName: "Radius";
    >;
    parameter float2 center
    <
         minValue:   float2(-800,-800.0);
         maxValue: float2(1600.0,1600.0);
    defaultValue:   float2(120.0,120.0);
    aeDisplayName: "Center";
    >;
    parameter float EdgeSmooth
    <
         minValue: float(0.0);
         maxValue: float(3.0);
    defaultValue: float(1.0);
    aeDisplayName: "Edge smoothing";
    >;
    input  image4 src;
    input  image4 background;
    output pixel4 dst;
    void
    evaluatePixel()
    float2 Pos_from_cen = outCoord() - center;
    float p_length = length(Pos_from_cen);
    float fun = (radius*radius)/abs(p_length);
    float m = fun/sqrt(Pos_from_cen[0]*Pos_from_cen[0] + Pos_from_cen[1]*Pos_from_cen[1]);
    float2 pp = -float2(m*Pos_from_cen[0], m*Pos_from_cen[1]) + outCoord();
    pixel4 final = sampleLinear(src,pp);
    if (p_length <= (radius+EdgeSmooth/2.0))
    //smooth the circle edge
    if (p_length >= (radius-EdgeSmooth/2.0))
    final *= (p_length-radius+EdgeSmooth/2.0)/EdgeSmooth;
    else
    final = sampleNearest(background, center + Pos_from_cen);
    dst = final;

  • Creating a Disk Image from Compressor Fails

        Hpefully some one can help me out here.
    Here's whats going on and I've tried this on 2 different systems (iMac 24 inch OSX 10.9.4,Nvidia GeForce GT750M 1 GB,  3.1 Ghz i7 Processor 1 TB Fusion Drive, 16 gigs of ram & a iMac 27 Inch OSX 10.9.4 Nvidia GeForce GTX780M 4GB, 2.5 Quad-Core i7, 16 gigs of ram 1 TB Fusion Drive, both have the USB Super Drive from Apple connected to them)
    Both are running Compressor 4.1.2. I'm trying to make a disk image from a Apple Pro Res 422 HQ Quicktime 29.97 DF (drop frame, NTSC) The file is big since it's HQ so it takes a while to compress. I'm using the Create DVD preset in compressor and choosing " When Done: Create DVD" then below that "Output Device: Hard Drive" Because I want to have a disk image for back up and future burning so I don't have to tie up any systems doing this again.
    It get's the the very end where it has that disk burning icon come up on the dock and then a warning comes up saying that there was a "error making the disk" and then that's it. I want to be able to create a disk image. Old compressor (3.what ever) works great, takes a lot longer to compress things but at least I haven't run into this issue with it.
    I've had my destination set to the internal drive's, external drives .... you name it I've tried to save it in different places. I've added a background picture, removed it, nothing seems to work ....
    Please help and much appreciated if you can help me out here.
    Cheers

    Yes it is. This should help you.
    Mac OS X 10.4 Help: Burning a CD or DVD
    Burning Data CDs and DVDs in Leopard and Tiger
    Mac OS X 10.5 Help: Burning a disk image on a CD or DVD with Disk Utility
    Mac OS X 10.5 Help: Burning a CD or DVD

  • Lenovo S300: will I have trouble creating a backup image with Acronis

    I'm thinking of buying a Lenovo S300
    Very cheap and lighweight
    I want to update all settings (Windows mainly) and then create a backup image that I can always go back to
    Can I do this? Will I have any problems?
    I bought an ASUS laptop with no disc drive... and basically, there was no way I could boot up with an external DVD drive or USB
    I just wanted to make sure before I purchased
    Thanks
    Omar

    Hi
    Which application do you use to create the image?
    I use the Symantec ghost and Im very satisfied. I have created an image file which was placed at the second application and if something going wrong Im able to install the OS from the image file.
    Furthermore this unit support RAID and the RAID driver must be installed to recognize the HDD.

  • Creating a disc image from an iso file

    I have a samsung Bluray player that requires and update. I downloaded the file (which is a zip), then expanded it. It is an iso file. I need to create a disc image (not a simple burn to a cd) in order to update my samsung player. How do I do that? Disc Utility?

    Sorry, I should have been more clear. The ISO file is on my desktop. I didn't understand how to get it to show in DU, but when I hit BURN, a navigation window opens...thank you.

  • Illustrator script to create symbols from images in folder

    Time to give back to the community...
    Here is a script I recently devised to bulk create symbols from images in a folder. Tested with Illustrator CC 2014.
    // Import Folder's Files as Symbols - Illustrator CC script
    // Description: Creates symbols from images in the designated folder into current document
    // Author     : Oscar Rines (oscarrines (at) gmail.com)
    // Version    : 1.0.0 on 2014-09-21
    // Reused code from "Import Folder's Files as Layers - Illustrator CS3 script"
    // by Nathaniel V. KELSO ([email protected])
    #target illustrator
    function getFolder() {
      return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function symbolExists(seekInDoc, seekSymbol) {
        for (var j=0; j < seekInDoc.symbols.length; j++) {
            if (seekInDoc.symbols[j].name == seekSymbol) {
                return true;
        return false;
    function importFolderContents(selectedFolder) {
        var activeDoc = app.activeDocument;     //Active object reference
      // if a folder was selected continue with action, otherwise quit
      if (selectedFolder) {
            var newsymbol;              //Symbol object reference
            var placedart;              //PlacedItem object reference
            var fname;                  //File name
            var sname;                  //Symbol name
            var symbolcount = 0;        //Number of symbols added
            var templayer = activeDoc.layers.add(); //Create a new temporary layer
            templayer.name = "Temporary layer"
            var imageList = selectedFolder.getFiles(); //retrieve files in the folder
            // Create a palette-type window (a modeless or floating dialog),
            var win = new Window("palette", "SnpCreateProgressBar", {x:100, y:100, width:750, height:310});
            win.pnl = win.add("panel", [10, 10, 740, 255], "Progress"); //add a panel to contain the components
            win.pnl.currentTaskLabel = win.pnl.add("statictext", [10, 18, 620, 33], "Examining: -"); //label indicating current file being examined
            win.pnl.progBarLabel = win.pnl.add("statictext", [620, 18, 720, 33], "0/0"); //progress bar label
            win.pnl.progBarLabel.justify = 'right';
            win.pnl.progBar = win.pnl.add("progressbar", [10, 35, 720, 60], 0, imageList.length-1); //progress bar
            win.pnl.symbolCount = win.pnl.add("statictext", [10, 70, 710, 85], "Symbols added: 0"); //label indicating number of symbols created
            win.pnl.symbolLabel = win.pnl.add("statictext", [10, 85, 710, 100], "Last added symbol: -"); //label indicating name of the symbol created
            win.pnl.errorListLabel = win.pnl.add("statictext", [10, 110, 720, 125], "Error log:"); //progress bar label
            win.pnl.errorList = win.pnl.add ("edittext", [10, 125, 720, 225], "", {multiline: true, scrolling: true}); //errorlist
            //win.pnl.errorList.graphics.font = ScriptUI.newFont ("Arial", "REGULAR", 7);
            //win.pnl.errorList.graphics.foregroundColor = win.pnl.errorList.graphics.newPen(ScriptUIGraphics.PenType.SOLID_COLOR, [1, 0, 0, 1], 1);
            win.doneButton = win.add("button", [640, 265, 740, 295], "OK"); //button to dispose the panel
            win.doneButton.onClick = function () //define behavior for the "Done" button
                win.close();
            win.center();
            win.show();
            //Iterate images
            for (var i = 0; i < imageList.length; i++) {
                win.pnl.currentTaskLabel.text = 'Examining: ' + imageList[i].name; //update current file indicator
                win.pnl.progBarLabel.text = i+1 + '/' + imageList.length; //update file count
                win.pnl.progBar.value = i+1; //update progress bar
                if (imageList[i] instanceof File) {         
                    fname = imageList[i].name.toLowerCase(); //convert file name to lowercase to check for supported formats
                    if( (fname.indexOf('.eps') == -1) &&
                        (fname.indexOf('.png') == -1)) {
                        win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a supported type.\r'; //log error
                        continue; // skip unsupported formats
                    else {
                        sname = imageList[i].name.substring(0, imageList[i].name.lastIndexOf(".") ); //discard file extension
                        // Check for duplicate symbol name;
                        if (symbolExists(activeDoc, sname)) {
                            win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Duplicate symbol for name: ' + sname + '\r'; //log error
                        else {
                            placedart = activeDoc.placedItems.add(); //get a reference to a new placedItem object
                            placedart.file = imageList[i]; //link the object to the image on disk
                            placedart.name =  sname; //give the placed item a name
                            placedart.embed();   //make this a RasterItem
                            placedart = activeDoc.rasterItems.getByName(sname); //get a reference to the newly created raster item
                            newsymbol = activeDoc.symbols.add(placedart); //add the raster item to the symbols                 
                            newsymbol.name = sname; //name the symbol
                            symbolcount++; //update the count of symbols created
                            placedart.remove(); //remove the raster item from the canvas
                            win.pnl.symbolCount.text = 'Symbols added: ' + symbolcount; //update created number of symbols indicator
                            win.pnl.symbolLabel.text = 'Last added symbol: ' + sname; //update created symbol indicator
                else {
                    win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a regular file.\r'; //log error
                win.update(); //required so pop-up window content updates are shown
            win.pnl.currentTaskLabel.text = ''; //clear current file indicator
            // Final verdict
            if (symbolcount >0) {
                win.pnl.symbolLabel.text = 'Symbol library changed. Do not forget to save your work';
            else {
                win.pnl.symbolLabel.text = 'No new symbols added to the library';
            win.update(); //update window contents
            templayer.remove(); //remove the temporary layer
        else {
            alert("Action cancelled by user");
    if ( app.documents.length > 0 ) {
        importFolderContents( getFolder() );
    else{
        Window.alert("You must open at least one document.");

    Thank you, nice job & I am looking forward to trying it out!

  • How to create a background image for each item in a List object

    Hello.
    I am trying to create a background image that displays whenever a user posts something to a list.  For example when a user posts text it would appear in a list.  The new item in the list would contain a specific background image with the users text appearing on top of the background image.  I do not want a background image for the entire list, rather each item within the list.
    I am not sure how clear this is so I added an image below.  When a user enters text in and clicks the "post-it" button their text would appear below with the sticky note background. 
    I am not sure which list type would be best for this problem or how to create insert the image, so I am open to suggestions. 
    Thank you for your help.  Any advice or guidance will be greatly appreciated!

    Hi
    the easiest way would be with itemRenderer.
    You have to do two things:
    1. In your list declaration use a item renderer: <mx:List itemRenderer="myRenderer"/>
    2. create a flex component myRenderer that will be the single item. This can be a canvas with a background image and a text field on it.
    When you add a new item to the list, a new myRenderer item will be created and the data property will be passed to it. So you have to put "data" in your textField.
    If you need more help try looking at Tour de Flex samples, they're pretty easy.
    Andrei

  • How do I create a disk image for windows 7, using a windows computer for USB bootcamp for mac?

    Hi There, I have just bought a new 2013 iMac.
    Spec: 3.4 GHz intel core i5, 16GB 1600 MHz DDR3 Memory , NVIDIA GeForce GTX 775M 2048 MB Graphics with OS X 10.9.4.
    How can I create a 'disk image' from a windows 7 professional 64bit installation DVD using a windows laptop with windows 7 Operating system on? I want to transfer this 'disk image' (ISO?) to a USB ready for installing windows onto my 2013 iMac using bootcamp?  I want to use bootcamp from a USB as I have no disk drive for the installation DVD on my iMac. I hope all this is clear.
    Thank you. Joe

    Yes, that's correct, at least not directly. You can create a blank disk image, copy the file to the mounted disk image, then burn the image to a CD/DVD.
    Open Disk Utility and select Blank Disk Image from the New menu. Provide a name, Save location, and select the image size from the drop down menu. Leave Encryptions at None and Format as read/write. Click on the Create button.
    After the image file appears the "removable" disk should be automatically mounted. If not double-click on it to mount it. A "removable" disk icon will appear. Drag the file you want to place on the disk image to the "removable" disk icon. The eject the "removable" disk icon. Now select the disk image file in the DU left side list and click on the Burn icon in the DU toolbar. Be sure to have a blank disc ready.
    The above is actually the "long" way to do this. A much easier way is to simply insert a blank CD or DVD into the optical drive. The Finder will pop up a dialog asking what to do. Select the option to mount on the Desktop. You will now see a disc icon on the Desktop. Drag the file you want to burn to the CD/DVD, right-click or CTRL-click on the disc icon and select Burn from the contextual menu.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • How can I create a disk image of snow leopard installer disk from my Imac which runs it?

    how can I create a disk image of snow leopard installer disk from my Imac which runs it? It came without DVD installer, and I want to make a copy of it's OS installer but can't find out how.

    You need to have the disc in order to create disk image of snow leopard installer disc. What did your machine ship with? If something later than SL, then why? If earlier, then you can buy the SL installer disc and make the disk image.

  • Can i create a single image from multiple images in lightroom?

    Can i create a single image from multiple images in lightroom?

    Like a panorama, a composite or focus stack? Have you tried the Lightroom forum?
    Photoshop Lightroom

  • Is there a way to create a TINY image for B2G, similar to TINY_ANDROID ?

    Hi, is there a way to create a TINY image from Firefox OS similar to that of TINY ANDROID image which is used for Kernel Development. Android gives an option to create with the flag BUILD_TINY_ANDROID, just wanted to know if there is anything similar in Firefox OS.
    If there is no support from B2G, can we still create one?
    Any suggestions would be very helpful.
    Thanks

    I'm not sure that anybody here would know the answer to this. I'd suggest asking in #b2g on irc.mozilla.org. In case you don't have an IRC client, here's a web-based one: https://kiwiirc.com/client/irc.mozilla.org/#b2g . A lot of the b2g developers tend to hang out in there, and if anybody knows, they would.

  • How can I create a interactive image on ibook author, just like the temperatures map on the "life on earth" book?

    I need a create an interactive image at the ibook author app, but I don´t know how, I saw the interactve image in the "life on earth" book, from the apple store, in an temperature map
    apreciate that someone could help me, please

    Doesn't work w/iBA books & iBooks 2, sorry.

  • I need to create a ghost image of my G4 iBook (OSX 10.3.9) and replace the OS9 on my G4 tower with the created iBook ghost image. How do you do this?

    I need to create a ghost image of my G4 iBook (OSX 10.3.9) and replace OS9 on a G4 tower with the Ghost image. How do you do this? Will my applications still work?
    The iBook is running Pather, i have tons of programs i use on it, project files, etc... and my G4 Mac tower is more powerful, faster, and more reliable than the iBook. I basiclly just want to take the entire OS, programs and files... create an image, and drop the image on the G4 Tower so it basically will function just like the iBook. Like a mirror image of everything that is on the iBook.  I know that you can create image files in the Disk Utility on Panther, but will that back up the entire OS with settings, programs, files and all?  ive never done anything like this before, so i wanted to post this up to see if i would get an answer. In the meantime, im reading "Mac OS X, Help Desk Essentials By Owen Linzmayer" to see if i can find the steps to do this.
    Any help would be greatly apprciated. Much thanks!

    Can't be done as an exact copy from one Mac to the other.  The operating systems are system specific. First make sure your system doesn't need a firmware update to get 10.2 or later on it. You'll need to install 9 on it if it does, direct from a 9 retail CD that is compatible with it *.  This disc can't say Upgrade, Dropin, or OEM. To determine compatibility, identify your G4 tower:
    http://support.apple.com/kb/HT3082
    http://docs.info.apple.com/article.html?artnum=42739
    Then look at the OS 9 compatibility:
    http://docs.info.apple.com/article.html?artnum=25517
    Then apply the correct update
    http://docs.info.apple.com/article.html?artnum=86117
    The last Mac OS 9 to come retail is 9.2.1, and that's newer than 9.0.4, 9.0.2, and 9.1.
    Your ghost image can be done using cloning software, but then you'll have to use a retail 10.3 installer and 10.3.9 combo update on the G4 tower.  Then use the Migration Assistant to import the data from the clone of the iBook. The 10.3 retail disc looks like * and does not say upgrade, dropin, or OEM.  The 10.3.9 combo update is here:
    http://www.apple.com/support/downloads/macosxcombinedupdate1039.html
    The clone to an external hard drive can be done with these instructions*:
    http://www.macmaps.com/backup.html The import of the external hard drive with the migration assistant can be done with these instructions:
    http://docs.info.apple.com/article.html?artnum=25773

  • Error in creating an HDR image in photoshop using light room. Help please.

    Hi so I am trying to create an HDR image using the latest version of photoshop and light room.
    Just finished doing all the steps needed before I select my images and click (edit in > merge to HDR pro in photoshop ) it opens Photoshop and gives me an error saying "Merge To HDR.jsx could not be found." and my files don't open. what does this mean and how do I fix it?

    difficult to reproduce. But it might be a data conversion problem.
    e.g. try
    to_char(a.num_tabs)If that's not the error comment out certain lines or xmltags and test which one is the reason for the error.
    Edited by: Sven W. on Sep 9, 2011 3:13 PM - typo correction

  • Unable to create restore disk image with Disk Utility

    I've tried three times in order to create a restore image of the users' volume of my Powerbook. I followed exactly the procedure explained typing "man asr" in a terminal window. I booted the Powerbook in target disk mode while connected to my iMac G5 from which Disk utility was run. Every time the disk image creation failed with a log report like this:
    Creating Image “HOME_HD.dmg”
    Initializing...
    Copying...
    /Volumes/HOME_HD: Authentication error
    Initializing...
    Finishing...
    Initializing...
    Creating...
    Copying...
    could not access /Volumes/HOME_HD/./Users/delos/Music/iTunes/iTunes Music/David Bowie/The Best Of David Bowie 1974-1979/01 Sound And Vision.m4a - Input/output error
    Finishing...
    Unable to create “HOME_HD” - Input/output error.
    I don't know how my imported music could create such a problem to Disk utility, nevertheless I removed the incriminated song from the Music library but another one raised to be not accessible. Then I booted the powerbook from the supplied Tiger DVD too, and I got an error over the music file, something about an allocation that was 190 instead of 1, I got the volume repaired from Disk utility but the Disk image creation failed again without any hint because booting from DVD does not allow to save log file anywhere. Why on Earth I can't manage such a critical task as back up under Tiger while using Panther everything worked like a charm following the same procedure? Is anyone experiencing something similar?
    Greetings
    Gianmarco

    Hi Lee, thank you for your answer, indeed I've just read carefully your article few hours ago, while I googled the net to find some hints on my issue. I think that I've followed exactly the right procedure to make the back up image, and can't find what is wrong. Actually Disk utility Repair disk successfully repaired the allocation bit (whatever that means) of the music files but that wasn't enough to let the creation of the disk image. Quite odd that the music files where recognized as messed up by Disk utility only booting from Tiger DVD and not while the Powerbook was connected to an iMac running Tiger too.
    I'll do further investigation during weekend.
    Greetings
    Gianmarco

Maybe you are looking for

  • Update on BIOS & MEMORY problems? also DOT, PAT, settings...

    Okie dokie, I'm new here, and I've been pouring through threads for the past 2-3 hours and doing searches, so please excuse these questions if they seem to have already been answered, but I would like to just ask a few (hopefully susinct) questions t

  • Defrag Time Machine Back Up Drive??

    getwellroad  Level 1 (0 points) Jul 6, 2011 9:50 AM  i previously posted this question, but I mistakenly clicked my own comment as the correct answer. i think this makes the thread appear to be finished; so, because i'm still not completely sure what

  • Error installing SAP IK XI 3.1 + SP2

    Have installed BOE XI 3.1 + SAP IK + BOE XI 3.1 SP2. Trying to install SAP IK SP2, I get the following error message... "The SAP unicode RFC library could not be found. This library is avaialble as a part of SAP Frontend, which is a pre-requiste for

  • Third party app writing to exercise ring

    Can third party apps such as strava send their data on workouts to count towards the exercise ring? When I use strava on the watch for 25-30 mins all I get is 3-4 minutes of exercise registered, but when I use both strava and outdoor cycle i get the

  • Entries from database table

    Hi all, I need to fetch the first record from a data base table. I don't have any primary keys. Infact without using any primary keys i just need to select the first records from the table. I have used select single and select up to 1 rows (I should