Mouse position gets reset randomly from slide to slide

Hi,
I have a software demo that I'm working on (Captivate 5). From slide to slide, usually Captivate uses the start position of the mouse based on the end position of the mouse on the previous slide. But sometimes it seems to lose that position, and starts the mouse at the top left of the screen. Is there any way to change that starting position, or fix this little bug?
Thanks,
Joel

I'm having a similar problem.  I've found that my mouse position changes to top left on all slides immediately following a FMR slide.  I've tried to manually reposition the mouse origin by drag-and-drop and right-click/align to..., but neither work.
I've installed the 12/10 patch.
Any suggestions?
Thanks.

Similar Messages

  • A Playlist based on last played date gets reset randomly

    The playlist I use most of the time is one that shows music that hasn't been played in the past 120 days.  Lately, at random intervals, the playlist gets reset as if iTunes has forgotten what I played the past day or so.  So some songs are having their last played date set back to an earlier time (or maybe a random earlier time, I can't be sure).  It looks to me like it's not just what has been played the past day or so that is being affected, but songs that have been played earlier, but not all of them.
    I've tried restoring the iTunes Library.itl and iTunes Music Library.xml files from a backup of the previous evening, and when I open iTunes things look OK, but within a minute after starting up the playlist will get reset again. Any thoughts on why this might be happening and how I can hopefully fix things so it won't happen?  Thanks very much for any ideas anybody can offer.

    Hi,
    Thanks for you replay and documentation, but it doesn't give me excatly the functionality I'm after. The only MTD calculation code the document provides is the calculation of the following functionality:
    "Month to Date (MTD) u2013 From the 1st of month to u201CKey Dateu201D - for current year." This doesn't give the the functionality I want, which is to retrieve a given vaule for a Key Figure for the last dates of the months in a year to calculate MTD and YTD.
    This way I have created the query is to have multiple hidden Key Figures that calculates the MTD and YTD.
    In Columns in Query Designer it will look something like this:
    Selection: MTD January--> Date = 31.01.2008, Key Figure (Always Show)
    Selection: YTD January --> Date= 31.01.2008, Key Figure (Always Show)
    Selection: MTD February --> Date= 29.02.2008, Key Figure (Always Hide)
    Formula: MTD February --> MTD February - MTD January (Always Show)
    Selection YTD February --> Date = 29.02.2008, Key Figure (Always Show)
    And so on....
    This is off course a simplified version, but it shows the core of the solution. What I want to achive here is that the dates used to get the Key Figures (last date of a month) is calculated as flexible as possible, so that the users can go back and forth in time without worrying about the leap year problem and so on. I have now used an offset from the last date of last year and this is good for all the normal years, but when it is a leap year the query will use wrong dates to get the key figure vaule for the last date of each month.
    Any ideas on how to achieve this without creating 12 different Customer Exit variables (one for each end date of each month)?
    Thanks
    Regards
    Oddmar Lid

  • Mouse position based alpha

    The script is little buggy and cant seem to figure it out.
    When I mouse over set boundary of x,y, mouse position triggers
    easing alpha from 0 to 100%.
    Following bugs seems to happen:
    - On continuous mouse over with in that position, it fades
    away on its own and ceases to work until i go in and out of that
    area repeatedly.
    - On mouse out, there is a pause that depends on how long I
    have I have it mouse over.
    - Sometimes, after mouse over, it doesnt fade away on mouse
    out.
    I have made the links absolute so i could control multiple
    movie. And with in these movies, there are buttons that has its own
    separate actions (loadmovie).
    take a look at the script and let me know of any suggestions.
    Thank you
    speed = 30;
    testmovie.onEnterFrame = function() {
    if (_root._xmouse>20 && _root._xmouse<150
    && _root._ymouse>290 && _root._ymouse<327) {
    testmovie._alpha += speed;
    } else if (testmovie._alpha>0) {
    testmovie._alpha -= speed;
    };

    Try this, you keep adding to the alpha value on your mouse
    over even when it is past 100.
    testmovie.onEnterFrame = function() {
    if (_root._xmouse>20 && _root._xmouse<150
    && _root._ymouse>290 && _root._ymouse<327) {
    if(testmovie._alpha< 100){
    if((testmovie._alpha + speed) > 100){
    testmovie._alpha = 100;
    } else {
    testmovie._alpha += speed;
    } else if (testmovie._alpha>0) {
    testmovie._alpha -= speed;
    };

  • Quartz Composer Photo Booth initialize mouse position or number slider

    I am new to this forum so I hope this is the correct place to ask this question.
    I am trying to develop a quartz composition for a Photo Booth effect that uses the mouse position or the numeric slider (see the 'Dent' effect in Photo Booth). I have been able to access data created by the mouse or the slider, my problem is that Photo Booth seems to 'reset' the mouse position or slider position to .5 (in a range from 0 to 1) when you first select the effect. I need to figure out if there is away to set the default from .5 to 0.
    An example would be if I selected an effect in Photo Booth, I want to have the slider appear all the way to the left (0) as apposed to being in the middle (.5)
    Thanks for any help.

    I am new to this forum so I hope this is the correct place to ask this question.
    I am trying to develop a quartz composition for a Photo Booth effect that uses the mouse position or the numeric slider (see the 'Dent' effect in Photo Booth). I have been able to access data created by the mouse or the slider, my problem is that Photo Booth seems to 'reset' the mouse position or slider position to .5 (in a range from 0 to 1) when you first select the effect. I need to figure out if there is away to set the default from .5 to 0.
    An example would be if I selected an effect in Photo Booth, I want to have the slider appear all the way to the left (0) as apposed to being in the middle (.5)
    Thanks for any help.

  • Get mouse position during Custom UI Draw event?

    I am building a Custom UI for one of my plugin effect.
    I want to get the mouse position during the Custom UI Draw event (PF_Event_DRAW), but cannot manage to get it.
    From what I understand, it seems we can only get the mouse position during the events PF_Event_DRAG, PF_Event_DO_CLICK, and PF_Event_ADJUST_CURSOR.
    I tried to use PFAppSuite4::PF_GetMouse() too, but this resulted in the error message "After Effects error: internal verification failure, sorry! {PF_GetMouse can only be called during valid events.}".
    Therefore I want to store the mouse position during PF_Event_ADJUST_CURSOR, and use it later during PF_Event_DRAW.
    Where can I store those values in a "clean" way (ensuring there will not be conflicts if two instances of the same effect are running, etc)?
    Or is there an easier method to get the mouse position during a Custom UI Draw event?

    //SequenceDataVars is the name of your data structure
    //this is how you create the sequence data
    out_data->sequence_data = PF_NEW_HANDLE(sizeof(SequenceDataVars));
    SequenceDataVars *seqData =
    (SequenceDataVars*)PF_LOCK_HANDLE(out_data->sequence_data);
    //and now you can store stuff in it.
    seqData->var1 = 7;
    //after it's created, on other calls, you just do a simple cast
    SequenceDataVars *seqData = *(SequenceDataVars **)out_data->sequence_data;
    seqData->var1 = 100;
    //this is how you delete it. (if you don't delete it, it will be saved with
    the project, and loaded on the next session. (if you want)
    PF_DISPOSE_HANDLE(out_data->sequence_data);
    there's more to know, so look up SequenceSetup, SequenceSetdown, ect in the
    sample project.

  • DnD - Get Drop Mouse Position

    I want to Drag some image file from a JList, and then drop it on a JPanel. The dropping on the panel functions. The problem is, i would like to get the position of the mouse, when the item is dropped on the panel. I use the panel to visualize graphics with Graphics2D, and the image dragged from the list should then be displayed at the position on the panel, where it is dropped. So how could i get this position? I have added a MouseListener to the panel, but it does not react on the mouse events which are caused by the DnD action.

    I am really helpless... Is this a stupid question or does nobody know the answer?
    I just want to get the mouse position of the drop, after a drag and drop.
    I found a MouseDragGestureRecognizer Class, but i am not able to implement. Actually i have just a JList, from which Strings are dragged, and a JPanel, on which the Strings are dropped.
    The drag and dropping functions, but i need the mouse position on the JPanel, when the String is dropped.

  • Get screen coordinates from 3d position

    Hi,<br />When I use 3d JavaScript camera's getScreenFromPosition method, the screen Y returned is always 0. The following is the test code. Did I miss anything? Is there another way to get screen coordinates from 3d?<br /><br />I'd appreciate any help.<br /><br />Xintai<br /><br />// test code ==========================<br />function v3dToScreen(v,w,h)<br />{<br />   console.println("\n v=" + v + "  w = " + w + "  h ="+ h);<br />   cam = scene.cameras.getByIndex (0);<br />    <br />   screenV = cam.getScreenFromPosition(v, w, h);<br />   console.println( " converted: mx=" + screenV.x + "    my=" + screenV.y);<br />   console.println(screenV.toString());<br />   //console.println( " pdf mouse X=" + host.mouseX + "   pdf mouse Y=" + host.mouseY);<br />}<br /><br />console.println ("Click a 3D object to test getScreenFromPosition()");<br /><br />myMouseHandler = new MouseEventHandler();<br />myMouseHandler.onMouseDown = true;<br />myMouseHandler.onEvent = function(event)<br />{<br />   if(event.isMouseDown) {<br />    console.println("====== MouseDown =======");<br />    console.println("isMouseDown           = " + event.isMouseDown );<br />    <br />    for ( i=0; i<event.hits.length; i++ )<br />    {<br />         console.println ("   hits[" + i + "].position   = " + event.hits[i].position );<br />        <br />        if (event.hits[i].target != undefined)<br />        {<br />                        v3 = vent.hits[i].position;<br />                        v3dToScreen(v3,event.canvasPixelWidth,event.canvasPixelHeight);<br />        }<br />    }<br />   }<br />}<br /><br />runtime.addEventHandler(myMouseHandler);<br /><br />// end of test code ==========================

    Hi Xintai,
    This is a feature i would also like to use. I've tried using the script that you've provided but i cant get it to work. I assume this is the javascript (.js file) that you embed into the pdf? Is this all that's needed?
    If you've managed to get this working, could you let me know how you did it?
    Thanks
    George

  • Have a error in getting the values from database randomly

    Hi to all
    I am new member to this community and new to java programming, i am the one of them who got benefited through this site , with that hope i am asking u to clear my doubt.
    Actually i want to get the data from database randomly, i dont have problem either in database connection and generating random number,its working fine. but when i have to get the data from database with generated random no using absolute function , i am getting an exception
    eg : rs.absolute(2);
    i could not move to the second row of my result set.
    not only absolute function whatever the function i am using except next method, getting exception.
    my code :
    package practical;
    import java.util.*;
    import java.sql.*;
    public class gen {
         Connection con;
         Statement s;
         ResultSet rs;
         public void get(int t)
              try
                   rs.absolute(t);
                   String question=rs.getString("question");
                   System.out.println("Random question : "+question);
              catch(Exception e)
                   System.out.println("get error");
         public void ran()
              Random r=new Random();
                   for(int i=0;i<10;i++)
                        int j=r.nextInt(10);
                        System.out.println("random value : "+j);
                        if(j!=0)
                             try
                                  get(j);
                             catch(Exception e)
                                  System.out.println("ran error");
         public void connect()
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   con=DriverManager.getConnection("jdbc:odbc:ds","sa","server");
                   s=con.createStatement();
                   rs=s.executeQuery("select question from qa");
                   ran();
                   con.close();
              catch(Exception e)
                   System.out.println("error");
         public static void main(String... strins)
              new gen().connect();
    }

    but i acheived through the code which is pasted below but i have to close the database connection for every iteration.
    package practical;
    import java.util.*;
    import java.sql.*;
    public class gen {
         Connection con;
         Statement s;
         ResultSet rs;
         public void get(int t)
              int c=0;
              while(c!=t)
                   try
                   rs.next();
                   c++;
                   catch(Exception e)
                        System.out.println("next error");
              if(c==t)
              {     try
                        String question=rs.getString("question");
                        System.out.println("Random question : "+question);
                   catch(Exception e)
                        System.out.println("iteration error");
         public void ran()
              Random r=new Random();
                   int j=r.nextInt(10);
                   System.out.println("random value : "+j);
                   if(j!=0)
                        try
                             get(j);
                        catch(Exception e)
                             System.out.println("ran error");
         public void connect()
              try
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                   con=DriverManager.getConnection("jdbc:odbc:ds","sa","server");
                   s=con.createStatement();
                   rs=s.executeQuery("select question from qa");
                   ran();
                   con.close();
              catch(Exception e)
                   System.out.println("error");
         public static void main(String... strins)
              for(int i=0;i<10;i++)
                   new gen().connect();
    }

  • HT5312 I keep getting an email from Apple telling me that my Apple Id has been successfully reset when I did not reset them.  Started early June 2013 and in a month i have had to reset it three times. Apple support was not helpful.  Any suggestions?

    I keep getting an email from Apple telling me that my Apple Id has been successfully reset.  I did not reset it.  Since early June 2013 to now i have had to reset it 3 times.  It is not an easy one to remember either. Initally I thought it was some pfishing expedition but no purchases have been confirmed by my visa.  My kids use my Apple Id to download APs and I am informed when this happens.  Nothing strange happening on the financial site at all. Just frustrating as we have to keep updating the ID to use messenger, I cloud etc on all of the devices.  I called Apple Support and the girl initally said she knew nothing about this but then spoke to someone else and they are aware of this ongoing problem and are working on it.  Any suggestions? Are others having the same problems?

    If the system didn't ship with Mountain Lion originally and you didn't purchase Mountain Lion yourself, then you will need to purchase. A purchase by the system's original owner cannot be transferred to you.
    Unless you have another system on which you have purchased Mountain Lion, you will need to first install Mac OS X 10.6.8 on the iMac, for which you'll need either the original installation disks, if the iMac came with 10.6, or a retail copy of 10.6. Install 10.6 and upgrade to at least 10.6.6, and then you can buy Mountain Lion from the Mac App Store, presuming of course that the imac can support Mountain Lion. See:
    http://www.apple.com/osx/how-to-upgrade/
    Regards.

  • Is it possible to get the position of a charcter from a string ?

    Hi !
    Is it possible to get the position of a charcter from a string ?
    Example:
    @VAR contains the following text "ABCDEFGHIJKLM"
    I'am seaching for FGH, it start on pos. 6 en ends on pos 8.
    How can I get these numbers 6 and 8 ?
    So, I can use them in the MID(text,start,len) function.
    Thanks!

    Hi Sooraj,
    I'll explain more in detail:
    From a web-service I get a variable called @Spec.
    This variable contains the following:
    "MOTORTYPE[CR]D-QW1234[LF]PART[CR]1234-FRD-X[LF]"
    or
    "MOTORTYPE[CR]ABC[LF]PART[CR]E-435[LF]"
    I need the values behind MOTORTYPE[CR] and behind PART[CR]
    But you’ll see that the positions of these values are different each time.
    If there is a way to get the (start) position of "MOTORTYPE[CR]" or "PART[CR]" and the (end) position of the first "[LF]" behind that,
    then I could use the MID() function to get the correct values.
    The values will be displayed in a table view (between other fields).
    An ABAP-call/function won’t work . . . how should I invoke this within a table column/field object ? (system action ?)

  • I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawa

    I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawal or what!! Lol

    Hi there,
    Firstly, try a hard reset. Hold the sleep/wake and home buttons together until the Apple logo appears.
    If this doesn't work, try restoring your device. Put it in recovery mode if iTunes doesn't recognise it, and restore it from there. I have linked to instructions below.
    Recovery Mode and Restore - Apple
    Let me know if this helps,
    Nathan

  • I recently restored my iPhone 4s from back-up after being reset. An app that I had turned off in back-up did not show up in my recent resoration. I forgot to turn that app back on. Would there be any way I would be able to get the data from that app?

    I recently restored my iPhone 4s from back-up after being reset. An app that I had turned off in back-up did not show up in my recent resoration. I forgot to turn the app back on. Would there be any way I would be able to get the data from that app onto my phone? Is it possible to put an old back-up on my phone?

    LukaPetranovic wrote:
    Hello anita4323.
    I hope this will help you with your problem:
    Back up and restore your iPhone, iPad, or iPod touch using iCloud or iTunes - Apple Support
    You can restore your backup whenever you want from iTunes or iCloud, depending where you made it.
    Let us know if you succeeded or need any further help.
    I believe you are missing the point. The OP has already restored from back up, but failed to include a specific app in the back up and is trying to recover data for it, which in this case is not possible.

  • I just reset my computer How do i get the music from my Creative Zen Touch onto my computer aga

    Hi, I just had to reset my computer and i lost all my music... how do i get the music from my Creative Zen Touch onto my computer so i can listen to music again on my computer?

    itsVASH,
    Basically you do the reverse of how you got it onto the player to begin with. You will open up mediasource, select the Zen Touch in the left hand source window, select PC Music Library on the right hand side. Select your songs and press the arrow pointing to the right.
    Jeremy

  • Zooming image from mouse position(like in  windows vista photo gallery)

    hello all;
    here's my situation, hope someone can help..
    i wanna Zoom an image, which zoom from my mouse position
    like in windows photo gallery in windows vista
    so i do this..
    g2.translate(iMoux,iMouy);       
            g2.scale(zoom, zoom);       
            g2.translate(-iMoux,-iMouy);       
            g.drawImage(icon.getImage(), iSposx, iSposx, d.width/2-iValue, d.height-iBawah, null);
            g.drawImage(icon2.getImage(), d.width/2, iSposy, d.width/2-iValue, d.height-iBawah, null);the problem come when i move my mouse to the different location (like from top right to bottom left)
    the zoom image displayed in the screen like jump from latest location to new location
    anybody can help me...a clue how to do that?
    thx appreciate your help guys
    mao
    Edited by: KingMao on 31 Mei 08 14:27

    Hi Frank.
    Thanks for the response.
    Agreed, the pertinent question is why can't my colleague edit the JPG exported by Aperture. It's probably also worth pointing out, the same problem occurs with JPGs exported from iPhoto.
    The Windows software usually plays nicely with JPGs by all acounts, just not the ones I send - which I do via eMail or my public space on Mobile Me incidently.
    So, another key question is: all settings being equal (color profile, quality, etc.) are the JPGs as produced by iPhoto and Aperture indistinguishable from those produced by other apps on other platforms - i.e. does the use of JPG enforce a common standard?
    If that is the case, I suspect ours might be a permissions issue.
    According to the Microsoft support page on editing in Windows Live Photo Gallery, the inability to edit a picture is commonly caused by unsupported file type, or read-only attribute set on the file.
    Unfortunately, he and I are not in the same place, and he's not particularly au-fait with this type of problem solving. Hence, before involving him, I'd like to know:
    1. it's possible (i.e. someone else does it), and,
    2. what's involved (at my end and/or his).
    Thanks again,
    PB

  • My Mac keeps randomly scrolling down in various software and i have to unpaid and repair mouse to get it to work again.

    When trying to work, my MAC suddenly starts scrolling to the bottom of whatever i'm working on - Word, Excel, Outlook, Safari.  Batteries are fine.  Have to unpair and pair the mouse to get it to work.  Not a problem, but when i have to do that 5 times in 10 minutes, not acceptable.  Also, the "i" button on the keyboard doesn't work sometimes.  Both are wireless MAC products.

    okay, you know this is for the Mac pro (desktop mac) rather than the MacBook pro, right? That being said, sounds like you have a problem. Turn off your screensaver, if it's on. if it's a hardware problem, eg the GPU, then take it in. If it's software, try running disk Utility and repair permissions. Failing that, get out your original install dvd's, boot up from them, and try "Archive and Install"
    John B

Maybe you are looking for

  • Backup doesn´t save it all!

    I used the backup-function of V8 to create a copy of all 20.000 Photos and the catalog-items on a second PC. After that I lost all Uper-Levels of my File-Structure. Example: Photos Live Phase 1                                                         

  • How to trigger data recording to a text file for multiple channels for a certain voltage threshold?

    I am working with 6 channels, from each of which I am obtaining voltage values ranging from 0.6-6 V.  I am using the DAQ Assistant to acquire and write the data to a text file.  However, I only want the data to be written to the text file when the di

  • Is it normal for the iPhone 5 to stay only 12 hours without charge?

    Hey I bought the iPhone since around 3 months and since that time so far the battery lives only for around 12 hours without 3G and around 6 hours with 3G and I can bearly listen to music for 2-3 hours max if I turn everything off while on the website

  • How can the 8.5 Crystal (upgraded version) be installed on a Win7 64-bit PC

    My client has bought a laptop with Windows 7 64-bit.  They are trying to install CR 6.0 so they can install CR8.5 witch is an upgrade, but they seem to be running into a problem.  Is this a possible and how do you do it?

  • Managing event viewer remotely in windows 2003

     Same user is configured as administrator on all the servers in one domain at windows 2003 server. However, the account is not the domain admin.  Can security logs be managed or cleared remotely from any of these servers? Will this require any specif