Select the Motion Path of a PageItem

Does anyone know a way to select (or access) the Motion Path of a PageItem with animation applied using ExtendScript?
I know it appears as a graphic line in the document, but I'm wondering if there's any connection between the animated item and the graphic line that represents the motion path.
item.animationSettings.motionPath (and motionPathPoints) give the relative numbers, but I'd like to get my hands on the actual InDesign object. Any ideas?

I'm not sure if you can do this from a script. From C++, you have. IAnimationFacade.h
  /** Given an interface for an item with a motion path, create a new page item from the motion path points and select it.
  @param pageItemRef is the UIDRef of the page item to created a motion path item from.
  @return the UIDRef of the created item.
  @see SetPageItemAnimationMotionPath
  virtual UIDRef CreateAnimationMotionPathPageItem(const UIDRef& pageItemRef) = 0;
P.

Similar Messages

  • I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    I am trying to use motion tracking to have text follow a section of the background.The text box follows the motion path, but the text just sits there.  What am I doing wrong?

    Motion basically looks at the the source footage and it's timing (in the timing section of the Inspector) when analyzing for tracking.  Filters are basically ignored by the tracker.  Retiming actions, like time re-mapping, or retiming behaviors that are applied before the tracker should be used by the tracker.  Did you change the timing after doing the tracking?  If so this would also require you to re-track the shot.  Understanding that you found a workaround, describing the effects you applied would help to explain why you ran into problems.
    Cheers!

  • FM to select the file path for download into application server

    Hello,
    I need a FM to select the file path for download into application server. It is a F4 help .
    Its functionality should be simmilar to the one used for presentation server i.e. as fol
    CALL METHOD cl_gui_frontend_services=>file_save_dialog

    Hello,
    What about F4_DXFILENAME_TOPRECURSION? You can check other FMs of the group DX_FILE.
    BR,
    Suhas
    PS: I think these FMs are not released by SAP, so need to be cautious while using these

  • How do you add the motion path of a tracking point to a separate clone stamp?

    How do you add the motion path of a tracking point to a clone stamp without the clone stamp assuming the same initial/continuous positions of the tracking point?
    Is there a way to keep the clone stamp's initial position and then add the path onto it?
    I am using the clone stamp to remove unwanted duct tape that was used to keep lights on a wall.

    I have spent two days trying to find a solution to this exact same problem. I have seen some overly complex solutions that probably work but trying to figure out the explanations is like trying to understand someone describe drag coefficients of rotary wing aircraft. While I am sure they work, they are way above my comprehension. I wanted an intuitive and straight forward solution for something that shouldn't require some arcane technique to fix.
    What I did:
    1) I used the Clone Stamp tool to paint over the spot on the wall I wanted to remove.
    2) picked a more easily discernible point of reference for Tracking. In my case, I used a poster on the wall.
    3) As per the instructions here, https://www.video2brain.com/en/lessons/removing-an-object-with-clone-stamp, I pasted the Attach Point data from the Tracker into Clone -> Transform - > Position 
    However, that didn't work for me as the object I was painting was not the object I was tracking. The solution from the video was simply moving my cloned spot to the tracked object instead of leaving it where I wanted it. So...
    4)  I then manually adjusted the Anchor Point of the Clone back to the original spot I wanted to cover.
    I played footage and the cloned region successfully moved with the spot I was covering.
    This is what I was able to figure out. I'm not an advanced user. I only use After Effects every couple of months when I need to fix minor things in footage, so I've only learned to use what techniques I need for the job at hand. No doubt, experienced users may shake their heads at my simplistic fix. I'm sure my technique would be wholly inadequate for situations far more complex than fixing spots on a gray wall, which is why my eyeballs cross when reading suggestions that seem way more involved than one would expect for something as seemingly minor as this. It's just a spot! It should be super easy to remove, right? Well, that's what I was looking for and that's what I came up with. I hope it helps.

  • Photoshop won't select the internal path

    having outlined an image i then try and select the path to remove the background...however photoshop only recognises that there is an outside path - it doesn't select the complete internal path that has been created.
    and when placing in InDesign - again the program only recognises the clipping path as being the outside line and not the same path in the middle of the picture?

    Paths? Why? ID can work with native PS transparencies and layer masks. That aside, make sure you are defining the path modes correctly in the top toolbar or while creating them (Alt to subtract, Shift to Add, Alt+Shift to intersect).
    Mylenium

  • MPxIO, traffic manager, select the active path

    I have one lun with 2 paths, and I use MPxIO without loadBallance,.
    NOTE: I have v240 server with solaris 10 the latest that connected to the SAN.
    Two Question :
    1. How I can see which of the paths is the active path?
    2. Is the MPxIO can understand which path(from 2 paths to the lun) is the path througth the default controller, and make this path to e the active path?
    thanks

    For that array, Hitachi needs to provide a specific string to enter into the scsi_vhci.conf file, telling MPXIO how to deal with that array.
    It should be in the array Release Notes or Install Guide, along with any particular levels of microcode and array port settings needed. The scsi_vhci.conf entry will provide the string that a host scsi inquiry will return, along with the specific scsi options that the OS will need to talk to the array using multi pathing. Once those changes are done usually a boot -r will be required.
    Until that is done, Solaris will see both paths to the array as seperate and distinct arrays, so no multi pathing will be done.
    HTH
    Dom

  • Select the Gui_download path Editable

    Hi experts,
    As i had an doubt that from gui download the report and logic can be downloaded to pc. but, path location which i mentioned in gui download should be downloaded. As per path makes editable, am using the parameter as some file name and still it does make anything to select as per my system path.
    please kindly let me know any thing....
    Thank you,
    Regards,
    Raviram.

    Hi,
    You can use the DIRECTORY_EXIST method for both, PC frontend and application server, you will need to know the fully qualified name of the appilication server on your network in order for it to work.
    Please check this sample code.
    report ztest.
    type-pools: abap.
    data: rc type abap_bool.
    data: dir type string.
    parameters: p_file type localfile default 'C:'.
    start-of-selection.
    dir = p_file.
      call method cl_gui_frontend_services=>directory_exist
        exporting
          directory            = dir
        receiving
          result               = rc
        exceptions
          cntl_error           = 1
          error_no_gui         = 2
          wrong_parameter      = 3
          not_supported_by_gui = 4
          others               = 5.
      if rc = 'X'.
         write:/ 'The directory does exist'.
       else.
         write:/ 'The directory does not exist'.
       endif.
    Also you can check this FM as well.
    RZL_READ_DIR_LOCAL
    CONV_UTIL_CHECK_FILE_EXISTENCE
    CV120_DOC_FILE_EXISTENCE_CHECK
    CV122_DOC_FILE_EXISTENCE_CHECK
    DX_FILE_EXISTENCE_CHECK
    PFL_CHECK_OS_FILE_EXISTENCE
    Regards,
    Ferry Lianto

  • How can I mass move symbols with their motion paths without creating new keyframes?

    I want to move a lot of symbols all at once if they are off centered or just need to be moved around to see differenr styles across the document, but I can't seem to move a lot of the symbols at once, only one at a time slexting their motion paths. It's rather annoying when I have items coming in at different times and have to re line everything up one by one if I want to move things even over by 1 px. Every time I slecect all my symbols and try to move them it just creates a new keyframe that they follow. Is there any tool or certian way to select the symbols and/or thier motion paths and move them without creating new key frames?

    Hi,
    There's no direct way of moving all the symbols/ motion tweens begining at different frames altogether, but the following steps should help you do it -
    1. Select a motion path on stage, goto Properties panel > Options menu (top left corner) and enable - Always show Motion Paths.
    2. Enable - Edit Multiple Frames option in the Timeline.
    3. Adjust the frame-markers in Timeline to show all your symbols, motion paths etc.
    4. Now that you see all your symbols and motion paths together, Select-all and Move them together. Or, use Shift + click to selectively select the Motion paths/objects and move them.
    Let me know if you have any doubts..
    Regards,
    Nipun

  • Direct selection tool - how not to move the form/path?

    This thing keeps me working my stress ball: when I touch a path with the white arrow I am always first in a mode where the path can be moved. But I want to move a nod or handle - is there a place where I can set this tool to never move or or to never select the whole path? I have the normal selection tool for that! I think I oversee something. Thank you!

    orangestuff,
    Whichever way it works in each version should be consistent. If not, it may be time for a preference corruption removal, see the hint Move the folder here: http://www.bugge.com/Family-and-friends/Illy/illy.html
    This may be a reversible test to see whether you are forced to use older ways in newer versions.

  • I cannot see the yellow motion path in the composition window

    Yesterday the motion path was visible after unchecking and rechecking the motion path box in view options. But today it's not visible after trying several times the same thing. I'm trying to animate text using a path animation preset. I'm using an Imac with 24 gigs of ram and After Effects CC.
    I am very new to this program so I could be missing something very simple. Please help if you can.
    Thanks,
    Surya Mayee

    You may have pressed Ctrl/Cmnd + Shift + H and hidden all handles. Try resetting your workspace. Give us a screenshot of the whole project and don't scale it down. You can use this forum to upload the image by clicking on the camera icon. If the upload button does not light up then close the window and try again. Sometimes the upload window is buggy in Safari.
    If you are new plese go through these 3 basic tutorials: AE Basics

  • FR: Ability to move entire Motion Path (as in After Effects)

    If you like this Feature Request, please copy/paste on Adobe's Feature Request page to get your voice heard: www.adobe.com/go/wish
    *******Enhancement / FMR*********
    Brief title for your desired feature: Ability to move entire Motion Path (as in AE)
    How would you like the feature to work?
    The same way it currently works in After Effects: ability to move an entire motion path by selecting all of the motion path's keyframes before click-moving one of the selected keyframes in the Canvas/Program Monitor.
    Why is this feature important to you?
    This feature makes it so much more efficient to move a motion-animated asset to a new location without inadvertently changing the motion path.  This tremendous workflow efficiency works wonders in AE and could work equally well in Premiere Pro.

    When previewing, make sure that you're using RAM preview to get real-time playback:
    http://helpx.adobe.com/after-effects/using/previewing.html#use_ram_preview_to_play_video_a nd_audio
    See this regarding the issue with your output file stuttering:
    http://forums.adobe.com/thread/684381
    Most important, start here to learn the basics:
    http://adobe.ly/AE_basics

  • Motion path handles disappeared

    I've been working in After Effects for a little while now and am having some of my motion path handles not appear when they should. I'm working on a slideshow and they seem to appear for all of my other pictures. What I do is go in between the start and end point of a path and move my picture away from the main (straight) motion path I created which usually creates a new keyframe on my timeline and inserts a point on my motion path with two handles I can adjust to make the path curved. This time it just creates the point on the motion path and keyframe, but doesn't allow me to make the path curved. It's really strange and has happened to me before. The way I solved it earlier was to remove the point where it wasn't working and insert a new one, and it would magically turn on, but that doesn't seem to work now.
    I've only been able to find one other person that had a similar problem online, which was solved by going to view---->view options and enabling 'view handles'. This didn't solve my problem so I figured I would ask on here. Thanks in advance for the help.

    That worked, although it's a few extra steps that I shouldn't have to take (and haven't prior to this). I held down alt by mistake at first and it only gave me one handle, but if I just tap alt and then click--->drag away from the point, it does provide me with a handle in each direction, which is what I was ultimately needing. Here is a screenshot of that layer although it's pretty standard.
    When I selected a keyframe that was in between the beginning and end of the motion path, pressed G, and then hit alt it does exactly what I want it to, but usually it adds the handles automatically, and want it to always. This extra step is very annoying because I'm dealing with a lot of motion paths and plan to in the future as well.

  • Flash CS4 - motion paths

    Hi,
    Im confounded to why this is happening and when it looks so much like a program error, it is sold on the shelves as a final product.
    My frustration at CS4 is that the new motion paths are already on the object, identified by a dotted line which you can edit to change the direction of the motion. When I want an object to go from A to B and then on to C, trying to select the object and position it to B is impossible. I always seem to select a bezier point. After attempting to mvoe it to B and then C, zooming in to take a close look at the path its a mess, overlapping in many points and jsut a MESS.
    Am i doing something wrong?
    To get round the problem I've copied the object in it's location and made another layer and continued the object motion on to B or C.
    I'm animating a mouse curser over my visuals and I've now got multiple layers of the cursor object because of this pathing issue.
    Any advice would be gratefully received.
    thanking you

    The above advice is good. It sounds like you have created some kind of motion path, and you are wanting to further edit it. There are many ways to edit, and some will work out better than others. Editing a motion path differs greatly depending on what kind of path you have.
    1) If you started with a path where you have pasted, say, a stroke as your path (you drew something with the pencil or pen, and pasted it onto your tween), you will be dealing with a lot of auto-generated keyframes -- especially if you used a pencil line instead of a pen line. If you drag your object around, where those keyframes are will affect the resulting path. What to do: Try to modify the path using the Pen tools, or start with a pen drawn path. This way you have fewer keyframes to accomodate for. If you have a pencil-drawn path, try removing keyframes and then adjust the path using beziers. Alternatively, paste the motion path as a raw path on a new layer, adjust it by bending, and then repaste it onto the tween. 
    When you ask Flash to auto-keyframe a pasted path, there's really no way around this. Flash has to create keyframes for you, and isn't able to know how you may want to further edit it. So the above ways are necessary, and unfortunately it's a bit of work whatever way you go.
    2) You may have a path that you  have curved, but you want a linear path "down the road" (later on the tween). In this case, the motion tween is inserting curve property keyframes, because you have curved the path. To make the line straight, you need to convert the points to linear points. You can do this on the path or in the motion editor using the Convert Anchor point tool. Or, you can go in the motion editor, right-click the keyframes and choose "Corner point" or Linear Left/right as needed.
    3) You applied an ease and you're dragging the instance on the Stage. This can be tricky. What you've asked Flash to do when applying an ease is for motion math to take over an animate the position of the instance in relation to values (the original path). The instance is controlled by the ease, and Flash accomodates each time you move it. Oftentimes you can't really tell what's going to happen, especially on the Stage (Flash is doing what's mathematically correct and necessary, but it might not be what you actually want!). In this case you probably want to turn off the ease, create your motion path, and then re-enable the ease and see how that affects the path. Adjusting your work in the motion editor might be easier, as you can see the dotted eased values in the graph, which tell you what's actually going to happen to the motion (the "real" value post-ease).
    4) You used the transform panel or Free transform tool on the motion path, which gave wacky results and then you're moving the instance and things are getting worse. This is one area where motion paths can have less desirable results, as it's using a traditional tool not really designed for the new feature on a new feature. My recommendation is to avoid the transform panel, and use the Free Transform tool instead. In a nutshell, the Transform panel traditionally deals with shapes, and the motion path is not a traditional shape - so there are a lot of calculations swapping back and forth behind the scenes to try and give you what you want. Things can get wacky here, so if you already have something very complex (such as a pasted path with tons of keyframes), your transformations may not be what you actually wanted. Free Transform is better, or even better, manually adjust the beziers.  Another alternative is to, again, copy the motion path as a static raw path, transform it and make your adjustments, and repaste it onto your tween.
    Let me know if you need additional help, or are running into something else entirely.
    Thanks,
    Jen.

  • Custom speed not working in motion path behaviour of emitter

    I am trying ot make a custom speed motion path along an open spline. Any amount of adjusting of keyframes and percentages produce no movement at all along the path. The emitter is stuck at the beginning of the path. All the other speed options work except for custom, in the motion path behaviour. What's going on here?

    What's going on is a little complex.
    When you first add a Motion Path and select Custom Speed, you get a "default" 0% - 100% over the life of the behavior [basically the same as Constant]. If you try to add keyframes in between, it can mess things up pretty good. The results you get can be unexpected.
    If you "clear" the automatic default keyframing, then the Custom speed stays at 0% (there are no keyframes). If you move the playhead and change the Custom parameter, nothing "takes" since no original keyframe is set.
    In order to make a Custom Speed on a path, you need to first, clear the default keyframing (on the right edge of the column, click on the disclosure triangle and select Reset Parameter). Then, set the position you want your object to start at and Set a keyframe. Then you can advance the playhead and move the Custom Speed control to position the object on the path.
    HTH

  • How do you modify a motion path?

    I'm going through the Motion manual, and am in the Behaviors chapter. I can apply a motion behavior to an object, but the instructions for creating a curve don't seem to work. I can't create any bezier points either by double-clicking or option-clicking anywhere on the motion path (i.e., in the canvas??) as the manual instructs. I have looked through the archives, and I see that someone has asked this before, but the responses don't seem to answer the question. It doesn't seem to matter which selection tool I use. I know I can keyframe this, but I want to learn to use the Behaviors. I'm sure this is simple but I'm darned if I can figure it out...
    Thanks,
    Steve S.

    hi,
    have you checked that the Handles option is on in the View pop up menu?
    Also is the motion pth selected in the project? If so the tool mode changes automatically to an edit mode?
    Hope this helps.
    regards
    adam
    moojoose ltd

Maybe you are looking for

  • How long is the supplied USB to lightning cable

    What is the length of the supplied USB to lightning cable in the iPad air box?

  • IMac Fans continue to run after iMac puts its self to sleep Automtically

    My iMac fans continue to run when it puts its self to sleep using the energy saving preference pane in settings. The iMac sleeps normally, The Fans Turn Off, hard disk sleeps and all when i press the power button and do it manually but not when it do

  • Solution Manager PostProcessing after system copy

    Hello, I have made a system copy of a Solution Manager 7.01 system and I cannot find any Solman Specific postprocessing tasks. I'm wondering specifically regarding cleanup of SMSY and Solutions etc. Do anyone have such documentation or know if it is

  • JSF component displaying incorrectly

    I have a problem when i run my jsf application. The components don't display correctly. For instance, a button that is suppose to have the rounded edges and hint of blue color show up like a normal sqaure gray button. This only happens on my computer

  • I can not sign in to my account

    Hello, my name is Tinli San! Just now  I create Apple ID but it won't let me to sign in. It says You have not verified your account. Please help me