Lenght of imported images is always 1 frame

I'm learning how to use After Effects (CC2014 in this case) and as soon as I started I found this problem.
In all the tutorials I've seen, when an imported file (in this case a .png) is put in the composition, its lenght is by default the same as the entire composition. But in my case it lasts 1 frame only.
1. I've checked under preferences>import, and it is set to last the entire composition too!
2. I can't manually drag the out point of the layer duration bar in the timeline to make it last whatever I want to, or choose when it ends/starts by dragging the entire bar around.
3. It doesn't work under "right click>Time>Time Stretch" because it won't let the layer last longer than 3 seconds (Composition is 30 seconds long)
In any case, I want to find a solution to all those 3 problems, since I can't accept that I'll have to make do with some "patch solution", like putting a keyframe at the end of the composition for each layer or something like that.
Last info: I quickly tried importing an .ai file and this one worked just fine, lasting whatever long the composition was. But I know that .png should work that way too since I saw it in the tutorials, so I'm gong crazy over here.

Is this real life? THANK YOU!
I knew it was something ridiculously simple but I just couldn't see it, I have no idea what a "sequence" is in any case, but I'll learn it eventually, in the meantime at least I can start working.

Similar Messages

  • IndesingCS2 server scriptable pluign: how to import image file into a frame.?

    Hello<br />I am creating a scriptable pluign for indesingcs2 server.<br />Now I am stuck at importing a image file in a image frame on a document.<br />The code which was running fine for indesingcs2 desktop is given below.<br />/////////////////////////////////////////////////////////////////////////////////////// ///////////<br />     IDFile sysFile = SDKUtilities::PMStringToSysFile(const_cast<PMString* >(&ImageFileNamewithcompletepath));     <br />     InterfacePtr<ICommand> importCmd(CmdUtils::CreateCommand(kImportAndLoadPlaceGunCmdBoss));<br />     if(!importCmd) <br />          return kFalse;          <br />InterfacePtr<IImportFileCmdData> importFileCmdData(importCmd, IID_IIMPORTFILECMDDATA); <br />     if(!importFileCmdData)<br />          return kFalse;<br /><br />     <br /><br />     //db is input.I got it using the techniques mentioned in the indesign-server-plugin-techniques.pdf<br />     //page 18..<br />     importFileCmdData->Set(db, sysFile, kMinimalUI);<br />     ErrorCode err = CmdUtils::ProcessCommand(importCmd);<br />     if(err != kSuccess) <br />          return kFalse;<br /><br />     InterfacePtr<IPlaceGun> placeGun(db, db->GetRootUID(), UseDefaultIID());<br />     if(!placeGun)<br />          return kFalse;<br /><br />     <br />     UIDRef placedItem(db, placeGun->GetItemUID());<br /><br />     InterfacePtr<ICommand> replaceCmd(CmdUtils::CreateCommand(kReplaceCmdBoss));<br />     if (replaceCmd == nil)<br />          return kFalse;<br /><br />     InterfacePtr<IReplaceCmdData>iRepData(replaceCmd, IID_IREPLACECMDDATA);<br />     if(!iRepData)<br />          return kFalse;<br />     <br />     iRepData->Set(db, imageBox.GetUID(), placedItem.GetUID(), kFalse);<br /><br />     ErrorCode status = CmdUtils::ProcessCommand(replaceCmd);<br />     if(status==kFailure)<br />          return kFalse;<br /><br />     return kTrue;<br />/////////////////////////////////////////////////////////////////////////////////////// //////////<br />I used the same code for making scriptable plugin for indesignCS2 server as it doesn't involve use of any UI element.<br />But this code is not working.It doesn't crash or returns kFalse.<br />What i see after executing the plugin through script is a grey region for image in the graphics frame.<br /><br />I request if anyone gives me solution to this i will be highly grateful to him.<br /><br />Thanks and Regards,<br />Yogesh Joshi

    Actually, your code is working fine, as there are no returned errors, asserts or crashes.
    The reason you are just seeing a gray box, is that the display performance is set to the lowest level in InDesign Server for performance reasons.
    Hint: Open the document in "desktop" InDesign, right click on the image, and look at the Display Performance settings for the image.
    See
    Ken Sadahiro, "[CS2 Server] Controlling display performance, how?" #1, 23 Feb 2006 8:01 am
    You can of course programmatically change it to the normal or high res settings from within your plug-in, but it might slow down the performance of InDesign Server a bit.
    One additional comment:
    In your code where you do this:
    importFileCmdData->Set(db, sysFile, kMinimalUI);
    I would do this, just to be safe:
    if (LocaleSetting::GetLocale().IsProductFS(kInDesignServerProductFS )) { importFileCmdData->Set(db, sysFile, kSuppressUI); } else { importFileCmdData->Set(db, sysFile, kMinimalUI); }

  • Import image sequence including negative frame numbers:  -072 thru 300

    I use Quicktime pro to create movie clips from 3D frame stacks. I then use the QT clips in final cut studio to do my editing.
    my 3D app has the capability of generating "negative" frames..that is, frames prior to 0. You can use this when you have a scene all set up, and want to add something which happens before all the other things you've set up; rather than time-shifting everything else foreward, you simply add the new element prior to the 0 point.
    QT Pro appears unable to cope with this. It sees the frames with negative frame numbers as being part of a different sequence, so that it will pull in from -072 thru -001, then stop. it also will begin with frame -001, ending on -072, making the clip appear backwards when it is played.
    Clicking on the Name column so that -072 is first, doesn't make a difference.
    Is there a workaround to this from the Quicktime end of things?
    thanks!
    r

    Not that I'm aware of.
    QuickTime Player Pro image sequence files must be "sequential" and it will import in that order.
    "Negative" numbers are not placed before "positive" values and you'll need to rename the files prior to import.
    Sorry.

  • InDesign CS3 Scripting XML Import Multiple Images into same Text Frame

    I am having trouble importing multiple images into the same Text Frame using XML import. I imported 5 images into the text frame. However, all 5 images are laying on top of one another. Does anyone know if there is a way to have all images laying out like how Microsoft Word handles inline images, i.e., laying out next image to the right of previsous image in the same line and if there is not enough space left in the line, then wrap to next line. Thanks in advance. I understand I could use JavaScript to do post import processing, e.g, calculate the image size and place each images accordingly. But I am trying to see whether there is a way to do this without scripts.

    You can apply an object style to all anchored images by script. A text frame containing main flow should be selected.
    var doc = app.activeDocument;
    var textFrame =  app.selection[0];
    var rectangles = textFrame.texts[0].rectangles;
    if (rectangles.length > 0) {
         for (var i=0; i < rectangles.length; i++) {
              rectangles[i].appliedObjectStyle = doc.objectStyles.item("Cover");
    However, there is a better approach:
    Step 1
    Create place holders for a single "Book" element and format it as needed -- apply an object style to the cover.
    Step 2
    Import the xml file -- the placeholders are replaced with data from the 1st xml element
    Step 3
    Drag & drop the element containing all "Books" elements into the main flow -- all elements are placed and formatted the same way as in step 1.
    Finally, add a new page, click the overset text icon and autoflow text to add pages so that to fit all the text.
    Hope this helps.
    Kasyan

  • Set duration of imported still images down to 1 frame

    Is there a way to import images into FCPX (10.1.1) and set it so the images will be only 1 frame when put on the timeline?  Or to change their duration in the Event viewer after they are imported?  I found the "duration" setting in the editing preferences, but that's in seconds and doesn't do what I want.  For what I'm doing now I want them at 1 frame, but really I'm looking for total control of the length of bulk still images without having to cut each individual one down on the timeline.

    Put them in the timeline. Select them all. Press Control-D. Enter 1 and press return.

  • I can't import images, I just get a dashed frame.

    I have been using iPhoto since version 1.0 and have very rarely ran into trouble. But all of the sudden I can't import pictures anylonger!
    During import I can see the pictures as previews... but as soon as it is done importing I only see a dashed line as a frame. Everytime I open iPhoto it tells me that I have "x photos in my library that aren't imported." And it asks me if I want to import... When I say yes, iPhoto imports them again (as before, with preview) and makes a new album called "rescued images", but they are still empty/dashed frames.
    Every now and then when I open iPhoto, it also asks me to update the thumbnails, when I click yes it is busy for a while but the problem remains.
    I cant edit them, neither in iPhoto or extrenal editor. I can't show original or show file. I can't make emails out of the imported images.
    The rest of the Library works fine... but nothing new can be imported. Niether draging or importing through camera works. Current version that I am using is 6.0.3.
    Please help me!
    Thank you.
    //Edward Karlsson
    iMac G5   Mac OS X (10.4.6)  

    I upgraded when the update was released with hope that it would dissapear... but the problem remained.
    Am I the only one with this problem???

  • Question about an image in a text frame

    hi, everybody,<br />   i want to get the UIDRef to an image in a text frame and i used the codes below: <br /><br />UIDRef imageUIDRef = UIDRef(database, ownedList[i].fUID);;<br />                                                  InterfacePtr<IImageDataAccess> imageAccess(imageUIDRef, IID_IIMAGEDATAACCESS);<br /><br />(ownedList[i] is the list which contains the inline boss i want to get)<br /><br />here i always get an imageAccess  == nil, i think it is caused by the invalid imageUIDRef.<br /><br />can someone tell me how to resolve this??? or tell me another way to get the UIDRef to the image.<br /><br />Thanks a lot!!

    Oliver and Quake,
    during initial development, you frequently reach a method that just returns a UID, UIDList etc. That approach with IUnknown and debugclassutil is a way to determine the boss class of such a UID in clear text, for your further research.
    You would then go to the documentation (programming guide, API docs, samples) and find out about the typical use of this boss class. This mainly means you find the list of interfaces supported by the boss class.
    Open docs/references/sdkdocs/html/classIImageAttributes.html
    See at the bottom that this interface is on kImageItem and some strange others, but not on kInlineBoss.
    Open docs/references/sdkdocs/html/classkInlineBoss.html
    See it has an interface IHierarchy.
    If you do not find your desired interface on a boss class, that means you have to navigate to a different boss object.
    IHierarchy is an important interface for navigation in the page, because it implements the page item tree. So when the programming guide tells you to use IHierarchy to find an image from the inline boss, follow that path. On the other hand, it is just one interface of many, so you can't do that generalization that it fits all purposes. Even on the page tree you can encounter inlines, text on path that form a separate page item tree. To know the best path is called experience.
    In the release code you should not wire to specific ::GetClass values (as seen somewhere in this thread). Instead, you have an expectation of interfaces, and if an object supports them it is ok. Let's say I implement a new page item boss to support strange text flow or different image types. That page item will still have bounds. If you need bounds, find the appropriate interface and just use it. The same goes for attributes - if you deal with attributes in general and encounter a new attribute that supports the standard interfaces, just let it through.
    Oliver, I don't even know the boss class returned by IIDXMLElement->GetContentItem() for your specific purposes, but I would take the same approach. I use a plugin grown in the past 5 years that visits most interfaces and hooks into all notifications I ever encountered. This produces tons of output, but otherwise it is the same as with simple debugclassutil.
    An important issue is the preparation of test data. You just have to know that XML elements can point to many things in the InDesign universe, so tag a few tables, inlines, TOP, page items that use standoff and so forth, and see what you get. WYSIWYG at its best.
    Of course I could spend the whole day constructing examples, doing the analysis and copy-paste-post code. At least for me that is beyond the scope of the forum - maybe Adobe will some time replace Ken, otherwise there are the developer support cases. As I am not sponsored by paycheck, most of the time I try to keep my answers to short keywords or plain text - you will rarely see code from me. If you need that, there have been several postings on this list, and I am also available for consulting.
    Dirk

  • Import images alignment

    Is there anyway to align imported images automatically to the top left of the stage?
    I'm using File, Import, Import to Stage which works great for importing multiple images from a folder BUT if I have resized the stage at all (to fit the image size) they align with their top left corner in the centre of the stage.
    Not such a problem with a few images but it's a real pain if you are importing hundreds. I'm using CS4.
    Many thanks
    Peter

    If you are importing them to separate frames as a sequence, then I don't think you have any other options.  You could always import them into a movieclip instead of the main timeline and then see if positioning that works out as you intend.  It may not align them to align to the registration mark as you intend, but they may all align to the same upper left corner location.

  • "Imported" images are on disk but show up as grey rectangles in Lightroom 4 and 5

    All of a sudden, images "imported" into Lightroom 4 started showing up only as gray rectangles.  The first set of images on the card had been "imported" with no issues.  The second set of uploads (different images) have always shown up as gray rectangles (from the first "import").  Same result when I removed the Lightroom folder and used a card reader instead of straight from the camera.  I tried images from another card in another camera and got the same result, so it seems like a software issue.    In hopes of fixing the problem, I upgraded to Lightroom 5 (it was time anyway).  But the upgrade of the original Lightroom 4 catalog to a Lightroom 5 catalog did not solve the problem.  Based on my research on this site, I trashed and replaced my Preferences file but everything remains gray rectangles.  Any ideas would be greatly appreciated.

    First thing to try is to recalibrate your display. This is often caused by a bad display profile. Second thing is to delete the previews on your images and have Lightroom rebuild them.

  • How to import images in iPhoto?

    I use iPhoto importing images from this same computer and from iPhone with iCloud. A problem I've always suffered also before buying iPhone was that I can't import images in iPhoto.
    Well, I can drag an image from, for example, the desktop, but if I delete that file on the desktop I won't be able to open that image in iPhoto, even if I've imported it. This is because of I don't know a way to "consolidate the library" in iPhoto (while I usually do it in iTunes), so iPhoto just manages my images, but it doesn't really import them.
    When, in iPhoto, I import a photo shooted with iPhone and showed in Photo Stream, that photo is really copied in the library, so in the computer, and I can delete the photo source, in fact if I delete that photo from Photo Stream that photo will remain however in iPhoto, and if I click on the high menu bar (FIle, Show Original ), a Finder window of the folder in which there is the copied photo will be opened. That finder is "hidden" in the stuff of the iPhoto Library (in Images folder of Mac), but it's not simply to go and find any photo in this way (folders and subfolders named with long numbers).
    So can I choose what way to use? The good of that second method is that iPhoto manage directly and really its photos because it "has" them, but the bad is the almost impossible way to find photos in that organization library (waster than iTunes media folder, that is clear). The good of the first method is that no automatic copies will be created because iPhoto just manage photos which remain in my folders, but the bad is that iPhoto doesn't manage them direclty, but depending on my folders and my files wherever and however they are, and I can't edit them because I would change the file that is used in iPhoto with an other different version.
    I think this is an annoying problem because there is a file with photos (i.e. the iPhoto Library) that contains copies of photos occuping memory while I don't know this is happening, because that copy is not announced, and simultaneously I have those photos of iPhoto free to be changed and removed with the risk of disappearing from the photos of the program.

    I can drag an image from, for example, the desktop, but if I delete that file on the desktop I won't be able to open that image in iPhoto, even if I've imported it
    That's an indication that you may have your library set up as a referenced library:
    Check the Advanced preferences in iPhoto to see if that checkbox is selected or not.  If it isn't checkec, check it and try importing agan. 
    To make sure all Photo Stream photos are automatically imported into your library set up iPhoto's PS preferences like this:
    You should read this User Tip by Terence Devlin which is the best treatise on how to access photos (for use outside of iPhoto):  How to Access Files in iPhoto
    OT

  • Is there a way to import images that have been edited and assign them to the original?

    I am transitioning to mac and aperture. Is there a way to import images that have been edited and assign them to the original? I have 10,000 originals and about 2,000 edited images. The originals are named img_XXXX and anything modified img_XXXX_modified. I would like to be able to import the originals and then import the edited versions and assign them to the original masters. Instead of starting from here and going forward with 12,000 masters, some of which are actual originals and others not. Thanks for the help.

    Ah, the vestiges of a destructive workflow! Once you "get" Aperture, (specifically Masters and Versions) you are going to love it, as all of this work goes away - the relationship that you seek to retain is automatic in Aperture; it is simply done differently.
    The short answer to your question is EVERY image file that is Imported into Aperture will create a new Master and one Version. Assuming that your images are PSD/TIFF/JPEG that you created in something like Photoshop, then each one that your import will be a new Master. You have many options:
    -- Stick the originals in one Project(s) and the edited versions in another Project(s).
    -- Stick them all in the same Project(s) and "Stack" them.
    But here is the real question: Why are you doing all of this work and what are you trying to accomplish? Seems you are trying to preserve old things that don't need preserving in a non-destructive workflow.
    So, what is most valuable to you?
    -- The original, out of camera files? (That is, the fear/need to revert.)
    -- The edited versions? (That is the hours of work that it took you to get there.)
    If the former, import the originals and ignore the edited versions. (Either simply leave them out on disk or import them into their own Projects which you ignore.) Use Aperture to recreate the work you had done previously. This will always give you the ability to revert to the original Master and create as many Versions as you want. This is the best idea if your edits are relatively simple crops and exposure adjustments,
    If the latter, then import the edited versions and do as above with the originals. This makes more sense if your work uses lots of layers and, perhaps lots of clone tool type corrections.
    Of course, you can do a bit of both.
    Others may have better suggestions, but you will find it easy to answer your own question when you understand an image based, as opposed to a file based, non-destructive workflow.
    Good luck!

  • Images are always placed -2pt below base line - how to change?

    Hi all,
    for small icons that should appear in the text, we use image elements within the paragraph. When I select the placement option at insertion point, then the image is always placed -2pt "above" the base line (thus, actually below the line). If I try to change this then it is reset when I save the topic.
    Can I modify the read/write rules to allow manual chnages, or set this globally to 0pt? We use FrameMaker 9, DITA for this project.
    Robert

    Sorry about the delayed response.
    It would take a script or FDK client to automate the setting while editing within FrameMaker. When working with XML, you can, as Michael noted, use attributes to store the anchored frame properties in XML so that you can round-trip them. If you are willing to use FM's default attribute names and values, you don't even need read/write rules.
    Another approach, if all instances of an element type are to be treated the same way is to specify the necessary settings in read/write rules. In that case, you can edit in FM not caring how the anchored frames look. When you save as XML and open the result, the r/w rules will kick in and you'll get what you want. For example, you might define an element called InlineGraphic and use the r/w rule:
    element "InlineGraphic" {
       is fm graphic element;
       fm property position value is "inline";
       fm property baseline offset value is "0";
    In this case, your DTD would not define attributes for the position or baseline offset properties. Whenever you open an XML document, the InlineGraphic elements will come in At Insertion Point with an offset of 0.0 pt.
               --Lynne

  • Imported image's position moves when updated in Indesign CS6. Why??

    After modifying an imported image from illustrator, the imported image's position moves within the frame of Indesign CS6 when the link is updated.

    You have not provided any relevant information, so nobody can know. you can simply have added content that expands the bounding box. Well, whatever, ask in the relevant forums and be much more specific.
    Mylenium

  • When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?

    When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?
    This is happening even with photos that were taken on another camera, not just mine.  My daughter told me that the laptop recently fell.  The yellow streak is not anywhere else on the laptop, just on the photos in LR.

    I have had this problem on my desktop.  I have been attempting to reproduce it where it can be debugged. Here are some observations/facts in my environment--no conclusions:
    1. I do not import from camera or memory stick directly into LR.  I copy all images (using Explorer) from camera to two different locations (backup location first); and then my working area. In both cases, after files are copied I mark them Read-only.
    2. Poor observation, but in any event: the issue has only occurred when I do a large number of images. Its a poor observation as I have no exact number.  I suspect when I do less than 50 always works well every time.  However, I have also done some very large imports without issue.
    3. Error only occurs with my RAW images--for me that's NEF.  I have multiple cameras--those that only capture jpg images have never had an issue in LR.
    4. Even if the file is marked Read Only issues can still occur.  I then remove the image from the disk using LR -- and then manually (Explorer) copy in my backup image -- re import again and all is well.  I think one time I exited LR and replaced the bad file with a backup and restarted LR and all was well again.
    5. When it occurs I have performed a HASH value on the broken file and on the backed up file to determine if the file contents has changed--and each time the file contents has changed.
    6. I have had this occur immediately after import, but most often it occurs like this... import large number of images; Make changes in Development Module on random image, export jpg of changes--exit LR. Open up LR and file is corrupted.
    7. I have had this issue on multiple USB drives ( okay just 2 different drives have been tested ).
    What next--fire up Process Monitor and monitor the system (specifically LR) to see if it reports any file open for write access when this occurs.  So, far I have not had process monitor actually running when it occurs--one of these days.

  • Imported image sequence in PP CC 2014 causes animated layers to flicker

    I have a project which has a primary layer formed of imported JPGs that are in sequence. These are shots from a time lapse and are sequentially named and imported without issue into Premier Pro. I then have a secondary layer with a simple After Effects composition that comprises a slow fade and animation of some title text. The problem I have is that during playback in PP (or once rendered) the animation of the text in the AA layer flickers. Watching it frame by frame in the preview window it is slowly fading in but each alternate frame it's opacity seems to go back one frame before advancing.
    Now I can completely fix this by exporting the image sequence clip in my bin to a video file. If I then replace the image sequence with a video made using exactly the same images it works fine and the animation is perfectly smooth. My question is why does PP not treat the imported image sequence the same as a video with its interaction with other layers?

    Hi there.
    Looking at the footage, you are exporting at 24P. There are books written on 24P and how to shoot (or edit) for it. What I see as a possible mistake.
    You are moving the photo too fast across the screen. That could be the same as panning too fast in 24P. Same result. The video clips are moving much slower and don't show the staggering.
    Give it a try.

Maybe you are looking for

  • FLV embedded in a SWF file, does not play in HTML file.

    Hi, I embedded a FLV file into flash movie clip, which on publish plays well on SWF file, but when the same is embedded in HTML, it does not play. What is it i'm missing .. Kindly help. Regards Shashi

  • INS-20802 Oracle Private Interconnect Configuration Assistant failed

    Thought I would post what information I've gathered, after facing this error during install of RAC Grid Infrastructure 11.2.0.1 on Red Hat Enterprise Linux Server release 5.5 64-bit, as Oracle Support is once again unable to help. Maybe this will sav

  • Java plug-in 1.4.1 proxy configuration issue causes JTextField TAB problems

    I have an applet that has multiple JTextFields in it. I recently updated my Java plug-in to version 1.4.1, and now using TAB to navigate among text fields does not always work when I first bring up a browser and load the applet. I've found, however,

  • Privacy Settings on profile details

    I was looking at my profile and I noticed that my date of birth is set to public... I do not want my date of birth viewable to the public, only to my skype contacts.  How do I change this as I can not see any way to do that. Thanks Diane

  • How to get Meta tag information of a video

    Hi, I want to read Meta tag information of a video file like Artist,Album,Year,etc.... I tryed "onMetaData" for a video file.But i didnt get information like Artist,Album,Year,etc... The video file can be mp4,avi,mpg,mov. I dont want them to play in