Mouse clicks and path not exporting to flash

Hey Guys, I've just started using Captivate v5 and all seems to work fine but when I export to Flash CS5, the mouse animates as linear and the click effect doesn't appear. If I preview from captivate the paths and clicks are there. If I click the mouse icon on the slides, they are all set to flash blue circle and straight pointer path is unchecked. The slides do not contain live film either, just screenshots. If I go into the movie in flash, the tween is there but no motion path. Any ideas?  Thanks

Yeah, when I export to flash it opens the doc as AS3. Also, I noticed the default click effect does work, but when I change to any of the custom ones it gets ignored by flash.

Similar Messages

  • Mouse click and drag through turntable animation

    Hi all,
    First - thanks for taking the time to look through and possibly helping me with this question.
    I'm just getting to grips with flash cc actionscript 3.0 - so I apologise in advance to my not so technical jargon.
    In the past I have used actionscript 1.0 to create an interactive html file that contains a turntable animation of a 3D model. Users can mouse click and drag to the left or right to 'spin' the model around - however what they are really doing is scrubing through the timeline which contained 360 images of it from 360 degrees. Similar ideas can be found here: Interactive Thyroidectomy
    Now annoying I can't use the old code any more as I'm working in the latest flash cc actionscript 3.0
    So how do I do the same thing but in actionscript 3.0?
    So I've worked this bit out so far
    On my main stage I have two layers - actions layer and another layer with my movie clip (movieclip_mc)
    In the actions layer so far:
    movieclip_mc.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    movieclip_mc.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
    function onMouseDown(event:MouseEvent):void
      movieclip_mc.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
      //I should put something in here about mouseX  - but no idea what
    function onMouseUp(event:MouseEvent):void
      movieclip_mc.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(event:MouseEvent):void
    //I have to put something in about total frames - width of movieclip_mc etc but I'm not sure how   
    // this is what someone else did on another forum - but I'm not sure what it means:
         var delta:int = backgroundClip.mouseX - clickedMouseX;
       var wantedFrame:uint = (clickedFrame + delta * clip.totalFrames / backgroundClip.width) % clip.totalFrames;
       while (wantedFrame < 1)
      wantedFrame += clip.totalFrames;
      clip.gotoAndStop(wantedFrame);
    Also I think i need something in the beginning like.....:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var clickedMouseX:int;
    var clickedFrame:uint;
    var backgroundClip:Sprite = getChildByName("background") as Sprite;
    var clip:MovieClip = getChildByName("animation") as MovieClip;
    clip.stop();
    clip.mouseEnabled = false;
    .....but I'm a bit confused about what all of it means
    So I understand the principle but no idea how to actually make it work - Could anyone help explain it to me or help with the code?
    Thanks so much to anyone who can offer some help
    Catherine

    Hi Ned,
    sorry to bother you again on this subject -
    the script...
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    worked fine - but when you click and drag on the movie clip it didn't always get to the end of the movie and never carried on through the frames back to the beginning like i wanted it to (such as this one does Interactive Thyroidectomy)
    So I went back to the older 2.0 script and played with it a bit to be :
    function onMouseMove(event:MouseEvent): void {
      changeDistance = movieclip.mouseX - startX;
      travelDistance = startFrame + changeDistance;
      if (travelDistance > movieclip.totalFrames) {
      movieclip.gotoAndStop (travelDistance % movieclip.totalFrames);
      } else if (travelDistance < 0) {
      movieclip.gotoAndStop (movieclip.totalFrames + (travelDistance % movieclip.totalFrames));
      } else {
      movieclip.gotoAndStop (travelDistance);
    .... which almost works but it is very stuttery to mouse over and then it has this output error..
    mouseDown
    ArgumentError: Error #2109: Frame label 2.3500000000000227 not found in scene 2.3500000000000227.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 3.6499999999999773 not found in scene 3.6499999999999773.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 4.949999999999989 not found in scene 4.949999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 6.25 not found in scene 6.25.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 7.600000000000023 not found in scene 7.600000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 8.899999999999977 not found in scene 8.899999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 11.5 not found in scene 11.5.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 12.850000000000023 not found in scene 12.850000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 14.149999999999977 not found in scene 14.149999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 15.449999999999989 not found in scene 15.449999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 16.75 not found in scene 16.75.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    mouseUp
    I've obviously put some code in the wrong place - could you help me find out what it might be?
    I haven't labelled any frames odd numbers such as 15.4499999999999989 or labeled scenes than number either.
    I can send you my scene if that would help?
    Thanks very much for your time Ned
    (p.s Or maybe if it is easier you might offer some guidance as to how i can change the action script
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    to allow it to be more like Interactive Thyroidectomy

  • Using Firefox 3.6 after a few mouse click/ keyboard input the firefox window is no more active, mouse click and keyboard input is inactive ; then I click on the taskbar and the keyboard is active again during a few click then it stops again etc.

    Using Firefox 3.6 after a few mouse click/ keyboard input the firefox window is no more active, mouse click and keyboard input is inactive ;
    to solve it I click on the taskbar and the keyboard is active again during a few click then it does not work any more and I click again on the task bar etc.
    after several repetitions, I have to call the task manager alt+del+ctrl, then come back to the firefox window to be able to use keyboard and mouse again

    Attaching the picture for the tab shape I want...

  • T410s clicks and taps not registering

    Ever so often mouse clicks start being ignored. Instead of registering the click the active window appears to loose focus. Sometimes I'll still be able to use the trackpad buttons or tap the touchscreen. Other times none of these will work. Sometimes switching windows (Alt+Tab) or right-clicking appears to fix the problem, or it fixes itself after a while. Other times I'm stuck using the keyboard until I reboot.
    This is a problem that started just a few days ago. Can't correlate it with a specific update. I reverted the UltraNav driver (for Windows 64-bit) from 15.0.24.0 to 15.0.18.0, but that didn't help. I also don't see the SynTPEnh.exe process hanging or using CPU as other people have reported recently.
    Anyone else experienced something similar or have any suggestions?

    Two things:
    From testing, I've notice that some time the mouse click events did not fire, especially in fast rate clicks (say, in games like bejeweled).
    Switching from "mouse click" to "mouse down" events seems to work better.
    You can always separate the graphics from the "hit" area of the button. you can:
    a. use an almost transparent movieclip (alpha of 1/100) that is placed above the graphics (and listen to its event, not the graphics).
    b. use a simple button and place a large rectangle in the "hit" state of the button.
    btw, using method 2b, you can have one graphic file for all the UI, as it's just a background for the real buttons.

  • I have Windows XP 32 bit and can not get Adobe flash player to load!!! Do not know what version I ha

    I have
    Windows XP, 32 bit and can not get the flash player to load
    . Do not know what version I had to start with. When I
    try to load the 10.3 version it gets to 50% then tells me
    to close the Internet explorer and bartshel!
    If i do this then there is nothing left to load.
    I tried to save it to my desktop but then itt says no active thread foun
    d. How do I load it without my Internet being open and a
    dobe site up and running when it tells me to close them?

    Thanks the address you gave me gave me what I needed but still had alot of trouble with the game. Come to find out it was my browser IE8 that was causing all the problem. So I changed to google chrome and loaded the regular version of Flash player and have been able to get on the game. Now i have trouble with my plugins can you send me a link to find Adobe flash player plugin 9.0.124.0?
    Date: Tue, 6 Sep 2011 19:39:16 -0600
    From: [email protected]
    To: [email protected]
    Subject: I have Windows XP 32 bit and can not get Adobe flash player to load!!! Do not know what version I ha
    Hi,
    Could you download the appropriate version of the installer from the following page?
    http://forums.adobe.com/thread/889580?tstart=0
    Once downloaded, please quit all of your browsers and launch the installer.  If it still fails, please restart your system and try again.  Let me know how it goes.
    Thanks,
    Chris
    >

  • Scripting a mouse click and drag

    does anyone know how to script a mouse click and drag. I tried XTools. No luck. What about Cliclick. I had tons of success with TextCommands but I dont know how to get OSAX plugin code to work. Thanks in advance.
    I am trying to move a desktop clock (QuartzClock) from the center of the screen to the side.

    I tried (unsuccessfully) to find a mouse move and click solution in Applescript.
    My search brought me to this site: http://www.geekorgy.com/index.php/2010/06/python-mouse-click-and-move-mouse-in-a pple-mac-osx-snow-leopard-10-6-x/
    The following python script will move an object from position 60.100 to 60.300
    #!/usr/bin/python
    import sys
    import time
    from Quartz.CoreGraphics import * # imports all of the top-level symbols in the module
    def mouseEvent(type, posx, posy):
    theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
    CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
    mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
    mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
    mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
    mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    currentpos=CGEventGetLocation(ourEvent); # Save current mouse position
    mouseclickdn(60, 100);
    mousedrag(60, 300);
    mouseclickup(60, 300);
    time.sleep(1);
    mousemove(int(currentpos.x),int(currentpos.y)); # Restore mouse position
    See also:
    http://developer.apple.com/mac/library/documentation/Carbon/Reference/QuartzEven tServicesRef/Reference/reference.html
    http://developer.apple.com/graphicsimaging/pythonandquartz.html
    Tony

  • My MX892 is clicking and can not draw paper - I get a load paper error message - any suggestions?

    My MX892 is clicking and can not draw paper - I get a load paper error message - any suggestions?

    Hi keciakh,
    To try and get the paper to feed, with a flashlight or other bright light, please check the paper feed area of the printer and verify that there are no paper jams or obstructions in the printer that may be causing the error.   Once this has been done, please look inside of the printer where the inks are located and ensure that there are no obstructions in there that may be causing the print head not to move freely.  Next, please remove and reseat all of the ink tanks in the printer.  Once all of these steps have been performed, please follow the steps below to perform a roller cleaning on the printer:
    You need to prepare: three sheets of A4 or Letter-sized plain paper  
    1. Make sure that the power is turned on. 
    2. Open the paper output tray gently. 
    3. Select Roller cleaning.
    (1) Press the MENU button.
    (2) Select Setup, then press the OK button.  The setup menu screen will appear.
    (3) Select Maintenance, then press the OK button.  The Maintenance screen will appear.
    (4) Select Roller cleaning, then press the OK button.
    The confirmation screen will appear.
    (5) Select Yes, then press the OK button.
    (6) Select the paper source to clean (Rear tray or Cassette), then press the OK button.
    4. Clean the paper feed roller without paper.
    (1) Follow the message to remove any paper from the paper source you selected in (6) of step 3.
    (2) Press the OK button.  The paper feed roller will rotate as it is cleaned.
    5. Clean the paper feed roller with paper.
    (1) Make sure that the paper feed roller has stopped rotating, then follow the message to load three or more sheets of A4 or Letter-sized plain paper in the paper source you selected in (6) of step 3.
    (2) Press the OK button.  The machine starts cleaning. The cleaning will be complete when the paper is ejected.
    (3) When the completion message appears, press the OK button.  The screen will return to the Maintenance screen.
    Reference
    To access other available functions, use the mode buttons or the MENU button.
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Hi..i have a problem with adobe muse..i can t open it.i double click and is not opening..help please

    hello!!i have a problem with adobe muse..i can t open it.i double click and is not opening..i don t think it s a problem from computer because adobe is the only i can t open ..a few hours ago i could open,and now i can t anymore..please help

    Can you open the application from programs list ?
    Also, please verify if the application is installed correctly and if not then probably a re-installation would be required.
    For Immediate support its always recommended to join our Live chat team.
    Thanks,
    Sanjit

  • When installing CS3 Design Premium it instals Version Cue server and shared components, but I get the message "Errors: 6 component (s)" and dose not install, Photoshop, Flash, Illustrator, Indesign or Creative Suite Premium

    When installing CS3 Design Premium it instals Version Cue server and shared components, but I get the message "Errors: 6 component (s)" and dose not install, Photoshop, Flash, Illustrator, Indesign or Creative Suite Premium

    Thank you Bturko in the future only migrate/copy/transfer your documents and settings.  Adobe applications especially are not designed to be transferred from one computer to another.  It is possible to recover however.  I would recommend the following steps:
    Run the uninstaller located in Applications/Utilities/Adobe Installers
    Run the CC Cleaner Tool to ensure complete removal - Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.
    If you need to download a fresh copy of the installation files they can be downloaded at Download CS3 products.
    Run the installer and reinstall Creative Suite 3.

  • Disable right mouse click and IE6 galleryimg on af:objectImage

    hi,
    Could anyone tell me how I can disable right mouse click and IE6 galleryimg on af:objectImage?

    Hi Jagannath,
    Try like this.. Double click on application -> go to parameters tab, in parameters give WDDISABLEUSERPERSONALIZATION and value 'X'. It will disable user settings, you get window when right click but no user settings available.
    check this for more help...
    http://help.sap.com/saphelp_nw70/helpdata/en/7b/fb57412df8091de10000000a155106/content.htm
    Thanks,
    Kris.

  • Mouse/mousepad clicks and taps not always recognised.

    I've noticed recently that I have an issue with both my magic mouse and my mouse pad, effecting both left and right clicks on the mouse and mousepad, and taps on the mousepad too. I've noticed the issue across many of the main applications I use, such as Mail, Adium, but is more apparent in Safari, or other browsers, where mouse clicking is used more.
    The issue is that not all mouse/mousepad clicks and taps are recognised on the first click, even when the mouse icon changes with link rollovers etc. It is more apparent when changing between application windows or after opening a new window/tab/page in Safari. Closing/minimising windows is effected etc, as is selecting items on the Dock. In all cases when this happens, a second click/tap always works.
    I'm guessing that it is a problem with Finder, maybe caused by another program or something. It's really annoying actually!
    Any ideas?

    ChloeHeather wrote:
    The mouse has fresh batteries is fully connected to the computer and the cursor moves as normal. 
    But when I click (either right or left) the computer ignores me. 
    I can only assume that:
    * mouse is somehow broken - although clicks feel okay, or
    * computer is somehow broken and can't tell clicks are being made
    So, what do I do?
    Buy a new mouse for £50?  Or adjust something in the computer?   No idea which is best, and HP won't help as the computer is just over one year old. 
    Try moving the USB receiver closer.
    You could also try uninstalling and reinstalling the drivers from Device Manager, then the original driver then the updated driver from your Update page on the HP Website.
    Also try running a virus scan using Malwarebytes if you can, Malwarebytes Home Page
    I have more HP devices than you'd expect.
    1 HP TouchPad 32 GB with Android
    2 HP Touchsmarts (310-1000z and IQ527)
    2 HP Printers (J6480 and J5750)
    1 Laptop (HP DV6253CL)
    Have at least some experience in each of those devices, and i'll do my best to help you.
    Kudos if I helped!

  • Captivate 4 not exporting to Flash CS4 correctly

    When I export from Captivate 4 to Flash CS4 it doesn't place the imported objects on their own timeline. Instead, it places each object into a movie symbol, which has its own timeline. The problem is that when I save it as a .swf in Flash and then I open it in After Effects none of the highlight boxes are visible.
    As you know, After Effects does not see Flash symbols that are buried below the main timeline.
    I opened up a project I worked on a year ago (with a different computer) and the Flash files had the exported Captivate items on the main timeline with the object on its own layer. Those files work fine in After Effects.
    Can anyone tell me if they are having the same export issue with Captivate 4 not exporting its elements in Flash on the main timeline (as seen in the help file: http://help.adobe.com/en_US/Captivate/4.0/Using/WS5b3ccc516d4fbf351e63e3d119e9582981-7fff. html)?
    Thanks!

    I found the solution here (http://labnol.blogspot.com/2004/09/export-captivate-movie-to-macromedia.html). I'll reprint the steps here:
    1. Close Flash CS4 if it is open.
    2. Open Windows Explorer.
    3. Navigate to:
    C:\Program Files\Adobe\Captivate
    4. Copy the RDMFISTUB.dll file.
    5. Navigate to:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash CS4\en\Configuration
    Note: The 'Local Settings' folder by default is hidden. If you are unable to locate the 'Local Settings' folder you can unhide it by opening Windows Explorer, select Tools > Folder Options > View, and select the option to 'Show hidden files and folders'.
    6. Create a new folder called Importers. Your final path should look like this:
    C:\Documents and Settings\username\Local Settings\Application Data\Macromedia\Flash 8\en\Configuration\Importers
    7. Paste the RDMFISTUB.dll into the Importers folder.
    8. Open Flash CS4.
    9. Create a New Flash Document. Save the document (or Flash may freeze when importing)
    10. Select File > Import > Import to Stage.
    11. Browse to and select the CP file.
    12. Click OK.
    Here is a comparison picture of the results. Without the steps above the imported Captivate assets will reside inside of a movie symbol (one for each slide). This is labeled "incorrect" in the image. I want each asset on a new layer in the root timeline. This is labeled "correct" in the image.
    I want to go from Captivate to Flash to After Effects (because Captivate generated Flash files are unreadable in After Effects). For full disclosure, I used Captivate 3 in the steps above, but I hope this is a solution for Captivate 4 as well (I decided to stick with Captivate 3 because it worked in a project I used a year ago).
    Message was edited by: EliteEraser

  • A script that captures the coordinates of the mouse clicks and saves them into a file

    Hello,
    I'm trying to create a cartoon taking a movie (I've chosen blade runner) as base. I've got the real movie and I've exported all the pictures using VirtualDUB. Now I have a lot of images to modify. I would like to modify the actors faces with the faces generated by Facegen modeller. I'm thinking how to make the whole process automatic because I have a lot of images to manage. I've chosen to use Automate BPA,because it seems the best for this matter. I'm a newbie,so this is my first attempt using Adobe Photoshop and Automate BPA. I wrote a little script. It takes a face generated with Facegen modeller and tries to put it above the original actors faces. But it doesn't work very good and I'm not really satisfied,because the process is not fully automated. To save some time I need to write a script that captures the coordinates of the mouse when I click over the faces and that saves them into a file,so that Automate BPA can read these coordinates from that file and can put the face generated with Facegen Modeller above the original face. I think that Automate BPA is not good for this matter. I think that two coordinates are enough,X and Y. They can be the coordinates of the nose,because it is always in the middle of every face. It is relevant to knows how big should be the layer of the new face,too. This is the Automate BPA code that I wrote :
    <AMVARIABLE NAME="nome_foto" TYPE="TEXT"></AMVARIABLE>
    <AMVARIABLE NAME="estensione_foto" TYPE="TEXT"></AMVARIABLE>
    <AMSET VARIABLENAME="nome_foto">br</AMSET>
    <AMSET VARIABLENAME="estensione_foto">.jpeg</AMSET>
    <AMVARIABLE NAME="numero_foto" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_x" TYPE="NUMBER"></AMVARIABLE>
    <AMVARIABLE NAME="coord_y" TYPE="NUMBER"></AMVARIABLE>
    <AMWINDOWMINIMIZE WINDOWTITLE="Aggiungere_layer - AutoMate BPA Agent
    Task Builder" />
    <AMWINDOWMINIMIZE WINDOWTITLE="AutoMate BPA Server Management Console
    - localhost (Administrator)" AM_ONERROR="CONTINUE" />
    <AMENDPROCESS PROCESS="E:\Programmi_\Adobe Photoshop
    CS5\Photoshop.exe" AM_ONERROR="CONTINUE" />
    <AMRUN FILE="%&quot;E:\Programmi_\Adobe Photoshop CS5\Photoshop.exe&quot;%" />
    <AMPAUSE ACTION="waitfor" SCALAR="15" />
    <AMSENDKEY>{CTRL}o</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMINPUTBOX RESULTVARIABLE="numero_foto">Inserire numero FOTO di
    partenza -1</AMINPUTBOX>
    <AMINCREMENTVARIABLE RESULTVARIABLE="numero_foto" />
    <AMPAUSE ACTION="waitfor" SCALAR="1" />
    <AMMOUSEMOVEOBJECT WINDOWTITLE="Apri" OBJECTNAME="%nome_foto &amp;
    numero_foto &amp; estensione_foto%" OBJECTCLASS="SysListView32"
    OBJECTTYPE="ListItem" CHECKOBJECTNAME="YES" CHECKOBJECTCLASS="YES"
    CHECKOBJECTTYPE="YES" />
    <AMMOUSECLICK CLICK="double" />
    <AMPAUSE ACTION="waitfor" SCALAR="10" />
    <AMSENDKEY>{CTRL}+</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="20" />
    <AMSENDKEY>l</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="659" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="546" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="429" MOVEY="281" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMSENDKEY>v</AMSENDKEY>
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="131" MOVEY="99" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSEMOVE MOVEX="99" MOVEY="162" RELATIVETO="screen" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMMOUSECLICK CLICK="release" />
    <AMPAUSE ACTION="waitfor" SCALAR="2" />
    <AMINPUTBOX RESULTVARIABLE="coord_x">Inserire coordinata X</AMINPUTBOX>
    <AMINPUTBOX RESULTVARIABLE="coord_y">Inserire coordinata Y</AMINPUTBOX>
    <AMMOUSEMOVE MOVEX="200" MOVEY="200" RELATIVETO="screen" />
    <AMMOUSECLICK CLICK="hold_down" />
    <AMMOUSEMOVE MOVEX="%coord_x%" MOVEY="%coord_y%" RELATIVETO="position" />
    <AMMOUSECLICK />
    and this is a short video to explain better what I want to do :
    http://www.flickr.com/photos/26687972@N03/5331705934/
    In the last scene of the video you will see the script asking to input the X and the Y coordinates of the nose. This request is time consuming. For this reason I want to write a script that captures automatically the coordinates of the mouse clicks. The only thing to do should be click over the nose and the script should make the rest. As "c.pfaffenbichler" suggested here : http://forums.adobe.com/thread/775219, I could explore 3 ways :
    1) use the Color Sampler Tool’s input with a conventional Photoshop Script.
    2) use After Effects would provide a better solution.
    3) Photoshop’s Animation Panel might also offer some easier way as it might be possible to load two movies (or one movie and one image) and animate the one with the rendered head in relation to the other.
    Since I'm a totally newbie in graphic and animation,could you help me to explore these ways ? Thanks for your cooperation.

    These are the coordinates of the contours of the face that you see on the picture. Can you explain to me how they are calculated ? The coordinates of the first colums are intuitive,but I'm not able to understand how are calculated the coordinates of the second one.
    Thanks.
    1 COL     2 COL (how are calculated these values ?)
    307.5000 182.0000 m
    312.5000 192.0000 l
    321.5000 194.0000 l
    330.5000 193.0000 l
    335.0000 187.0000 l
    337.0000 180.5000 l
    340.0000 174.0000 l
    338.5000 165.5000 l
    336.0000 159.0000 l
    331.5000 153.0000 l
    324.5000 150.0000 l
    317.0000 154.0000 l
    312.5000 161.0000 l
    309.0000 173.0000 l
    307.5000 182.0000 l
    Message was edited by: LaoMar

  • Mouse clicks and keystrokes

    When I edit mouse click in mouse properties, it
    doesn't always make the sound when it's checked (ticked), and
    sometimes makes a mouse click sound when it's not ticked. If you
    run it through again, it often responds differently. The same thing
    happens with keystroke sounds, though less frequently. Is this a
    common problem, is it my computer, or is there some way of fixing
    this problem?

    Keyboard shortcuts were often missed.  For example, I tried this sequence many times. 
    0: (setup:  text editor is scrolled to first line and cursor is at the beginning of the first line)
    1: Click on text editor window to focus it.
    2: press SHIFT-DownArrow to move cursor down one line and select the first line
    3: press CMD-X to cut the line.
    Automator never would capture those key strokes. 
    But today I has a break through.  This sequence does work:
    0: (setup:  text editor is scrolled to bottom of the file and the cursor is placed below the last line.)
    1: Click on text editor window to focus it.
    2: press SHIFT-UpArror to move cursor up one line and select the last line.
    3: press CMD-X to cut the line.
    about 70% of the time this did get recorded correctly (I did maybe 3 recordings and one failed to select).  Once it got recorded correctly it worked reliably. 
    So it seems to be able to capture some sequences but not others.  Both sequences work very reliably when I type them but automator can only capture the last sequence. 
    Thanks for the suggestions.  This tool is better than nothing but not anything I would recommend.

  • Click and Drag not working with the trackpad....

    Well, this is an unexpected problem.
    Just this morning, it seems my computer is refusing to let me click and drag with the trackpad button. I can click and hold, but when I move my cursor, say in a menu, nothing is highlighted. For sliders for volume, clicking and dragging does nothing. I can't highlight text. It's getting very annoying. It won't work when I tell just the trackpad to click and drag as well (not using the button).
    My hands have been a little "waxy" since I've been sick, but the mouse works perfectly otherwise, so I don't think that's the problem at all. Any suggestions? Please tell me my 'book isn't goin' bad. >>;;

    That seemed to work! After shutting down and taking out the battery, I cleaned my keyboard and computer, too. Seems to work now Thanks!
    Wonder why it did it...a glitch, prolly...

Maybe you are looking for

  • Já testei todos os meus plugins e não consigo assistir os vídeos que preciso. O que posso fazer?

    Estou com 8 plugins no meu computador Linux: Adobe Reader 9.5 Div X Web Player IcedTea ITunes Quick Time Shockwave Flash VLC Multimedia Windows Media Player Já testei e atualizei um por um e ainda não consigo assistir os vídeos que preciso. Vale ress

  • Duplicate songs in my 4S but not in iTunes.

    I have duplicate songs in my iPhone 4S. But everything is normal in library. I have unchecked the "Sync Music" and then tried to syncronize. I thought that this would delete all songs from my iPhone, so after that I would add my songs again and I wou

  • All Day Event 2 weeks long stops mid-way through (in Week View)

    I created a new all-day event that spans 2 weeks: July 6 - July 19. In Month View, it shows as a continuous line covering the 2 weeks. But in Week View, the event stops after the 10th day, on July 15...then shows up again when I click to the next wee

  • How to Display Record Count on Search page?

    Hi I am new to OAF and one of the requirement is to display record count on Search page . I followed the same steps in Emp Search page as an example and created my search page. I followed the following steps 1) I created a transietn Attribute in VO b

  • JAXB : ClassCastException while using generated java objects

    Hi, I am using JAXB for unmarshalling my xml to set of java objects. It is working but when i use one child object and cast it i am getting ClassCastException. java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.ElementNSImpl cannot