Snapped cursor jumps when new plot added

I have an XY graph in while i have a "snap to point" cursor on. When I add a new plot to it.. the cursor moves plots.. but I would like it to stay still... if anyone knows.. why would this happen? not to mention.. how would I go about getting it to stay still. I have a attachment of what Im doing, on top is before adding a plot.. then below is when i added the plot.. (i have it set up so it changed the color of the plot when the cursor is snapped to its point, so thats what the color change is.)
Attachments:
xygraph19735.gif ‏52 KB

You may also try either setting the Active Plot Property of the graph to the original plot number before and after adding new data or read the cursor's index position prior to adding the plot and simply resetting it to that position after the data is loaded.
See the example attached.
2006 Ultimate LabVIEW G-eek.
Attachments:
Cursor.vi ‏50 KB

Similar Messages

  • Cursor jumps when typing in all applications

    As I type, in any application, the cursor jumps up and inserts itself into a line several lines above. It happens in Mail, Gmail, Pages, Notes, Text/Edit, Microsoft Word, and as I type this document. The problem has existed from when I first got the MacBook a month ago, and continues despite numerous suggested fixes by Apple Care. In addition to the trackpad I use a wireless optical mouse with the nano receiver plugged into computer’s USB port. Earlier I had the mouse in a USB hub; I stopped using the hub. No phones or electronic devices are close to the computer.
    When typing I don’t touch the trackpad, but the heel of both hands hovers over its top right and left corners.
    The cursor was jumping before I installed Office for Mac, and after it was un-installed during two OS re-installations; MS Word does not seem not to be the culprit. The problem is frequent but intermittent, and hard to isolate or find a trigger. Although not constant, it is distracting and time-consuming to untangle an affected paragraph. I need to use a mouse when typing, but also like to have the trackpad for scrolling and changing documents.
    On the advice of Apple advisors, I have:
    Erased and re-installed OS 10.9.5 (twice).
    Re-installed Pages, Numbers, Keynote.
    Re-installed Office for Mac (twice).
    Rebooted in safe mode.
    Re-set PRAM and cleaned out RAM.
    Repeatedly disabled/re-enabled trackpad. (SysPref>Accessibility), trying to isolate issue.
    Tried using another mouse.
    Tried using trackpad only, no mouse.
    Tried changing fonts.
    Monitored my typing to see if I am brushing any odd combination of keys (I type fast but make errors).
    Could it be a conflict between mouse and trackpad? Am I mistakenly hitting an odd key or key combination? Could it be related to the heat of my hands hovering over trackpad? Grateful for anything that leads to a solution.
    MacBook Pro (mid-2014), Retina display. OS 10.9.5 fully updated. 16GB RAM, 512 GB Flash

    I had the same problem. Visit http://support.toshiba-tro.de/KB0/TSB4700HI0007R01.htm and you'll find the solution. I hope so.
    mihailbs

  • Libraries dont update when new content added

    I have transferred my media files to the shared user folder so that multiple accounts on my imac can have access to them. When I did this the original connected library was fine but the other users libraries showed none of the content. So I proceeded to "add to library" in the other account and it added the whole content as expected. The problem is now if I add additional content to the files then I seem to need to go into each other accounts library and add to library. The original library is automatic but the other libraries don't update automatically. How do I get the other libraries on the other accounts to also update automatically when new content is added?
    thanks

    You have posted on the iTunes for Windows forum, you might do better on the mac forum.
    iTunes does not do folder watching, so only the library you used to add the content will be updated.
    There are 3rd party utilities that an deal with this, but I don't have a list for Macs. For Windows there is iTunes Library updater and iTunes folder watch.
    TuneRanger would probably do it, but it is not free and may be a bit more than you need.
    http://www.acertant.com/web/tuneranger/

  • Chnages required in Config when new PSA added

    Hi All,
    I want to know the changes those are required to made in the configuration when a new PSA added to the current system.
    Thanks in advance.
    Regards,
    Sekhar.

    Hi Sekhar,
    The changes those are required in configuration when a new Personnel Sub Area added are:
    Changes in Enterprise Structure and Time Management Settings as
    Enterprise Structure: creation of new PSA
    Assignment of Pay scale structure to Enterprise structure
    Define Personnel Subarea Grouping for Primary Wage Type
    Define Groupings for the Public Holiday Calendar
    Group Personnel Subareas for the Work Schedule
    Generate Work Schedules Manually
    And let me know which modules you are having in your project, so that I can provide specific module help for you.
    Regards,
    Srinivas.

  • Cannot edit a field that is "Standard Report Column" when new row added

    Hi everyone,
    I have created a master-detail form from the wizard and within the detail report region source I have used apex_item.xxx API
    example;
    select C1, C2,
    CASE when C2 ='N' then
    apex_item.select_list_from_query(3, C3,'select a1 d, a2 r from table1', 'ENABLED', 'NO',null,null, 'f03_#ROWNUM#')
    else
    apex_item.select_list_from_query(3, C3,'select a1 d, a2 r from table1', 'DISABLED', 'NO',null,null, 'f03_#ROWNUM#')
    END C3
    from table;
    All columns C1,C2,C3 are defined as "Standard Report Columns".
    The results allows the column C3 field to be enabled or disabled for input depending on a condition.
    The problem is when you hit the default button "Add Row" to add a new row. The row is non-editable and is populated with null values.
    What I want is to allow input when a new row is inserted into the multi-row detail form.
    Can any one help?
    Is there a way to change the Display As field for the new row columns to "text field" from "standard report column" dynamically?

    I think you will need to use the old way of adding rows instead of the new one. I remember having headaches trying to get it working.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    http://apex.oracle.com/pls/otn/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494
    -------------------------------------------------------------------

  • Why content of a vector element changes when new element added

    in my program, i instantiate 2 Vector objects. one is TV(temporary vector), the other one is V. they all get instances of Class vElement as elements to them(of course, casted to Object first).
    Class vElement only cantains an int n, an int[] array.
    i create a text file: input.txt
    in this text file, there are 2 rows of content:
    1 2 3 1001
    4 5 6 1002
    at the beginning when the program runs, each row of input.txt will be read into a respective instance of vElement, that is, e.g. n = 1001, array = {1, 2, 3}.
    and then the 2 instances would be casted as Objects and added to V as elements
    then TV starts to get a new vElement from some methods generats 7 8 9 1003
    after that, V will add TV's newly-got element as its 3rd element.
    what is dramatical is that, the array of V's 1st element { {1, 2, 3} 1001 } will change to be the same as its 2nd one{{4, 5, 7} 1001 } after the 3rd element added to V from TV, yet, 1001 will not change to be 1102.
    this problem has challenged and tortured me for quite some days. who can help to conquer it?
    thanks a lot more!!

    I had the same problem. I believe this is because Vector stores references of everything it is added into it. My problem was solved by creating a new array everytime I had to add an element to Vector.
    Instead of:
    My_vector.addElement(My_array)
    I did:
    String[ ] Prov_array = new String[My_array.length];
    System.arraycopy(My_array,0,Prov_array, 0,My_array.length);
    My_vector.addElement(Prov_array);
    Might not be the best solution but it solved the problem.

  • Layer Overides lost when new layers added to linked AI file

    OK, so I'm working on complex site plans. 3-4 alternate designs each with different phases. It actually all setup well in Illustrator so turning on and off the right set of layers gives the desired view for everything I need. The problem was that when I make changes, I had to keep manually switching layers around, export scene, switch layers again, and repeat over and over.
    The reason each phase doesn't stand on its own is that there are a lot of shared elements and I only want to have to update it one place, vs. multiple copies. Illustrator doesn't seem o have layer comps like Photoshop, but I fond that I could get pretty much what I wanted by placing the file in Illustrator and using import options to set layer override. Now when I update everything is great, Just go to ID file and say export to jpgs.
    So now to the problem. When I add a layer to my Illustrator file (lets say for new design option) InDesign says something like layers changed, I'm going to throw away all of your layer overrides. This is not good. Why can't it just ask me if I want all new layers on, off, or better yet bring up those layers like original import and let me decide for each instance what I want to do with them.
    So as is once it throws away my layer overrides, I've found that you can't directly add back layer overrides. It only allows this at import. So I have to re-import the file (20 times - once for each page) and manually re-set all of the layers overrides. If I have old link selected when I replace it then at least it is correctly located, but still a pain.
    So I guess good work practice when I know I'm going to do this is to add an extra 10 place holder top level layers. Then they will be their waiting when I need them, but just won't be able to re-name them.
    I assume maybe InDesign has same issue with Photoshop Layer override, but at least there I could setup named Layer Comps which would solve this problem (assuming that layer comps addresses added layers better).

    I use this all the time for packaging proofing (I send out a proof page with two examples of the art, one with just the artwork layers showing and a smaller thumbnail with no art but the dieline, windows and opaque white printer showing)
    To speed things up with Object Layer Options, I set a keyboard shortcut and turn the display performance way down.
    I don't think it would help in your situation, but grouping layers in AI makes any changes you make to that set of layers in AI "invisible" to InD, so it doesn't scrap your layer overides, but it also means you have no ability to do anything in InD except turn on or off the entire layer group.
    Yours
    Vern

  • Cursor jumping when typing in browser - cured by opening pages

    Hello,
    When typing in a browser window (Chrome, Safari, and Firefox) my cursor was jumping around. This made all my words jibberish. If I typed extremely slowly, I could get it to work. Did a restart with no success. Unplugged my computer from the internet and plugged back in to see if that would have an affect. Problem persisted. I did not power down the modem as a family member is working on a project with a severe time crunch. Out of curiosity, I opened Pages to see if my words would get jumbled there. No issues. Tried browsers again. Now they work. I am concerned about a virus because earlier today I downloaded Ubuntu for my sister whose Windows laptop has some serious issues. Not sure if this was a coincidence or if someone over at Ubuntu is playing games with me. Any opinions about what happened/is happening would be appreciated. A virus scan with VirusBarrier Plus found no issues.
    Thanks in advance,
    John

    When you have a problem with a Mac, a "virus" should be the last thing you suspect, not the first. That's the Windows way of thinking.
    "VirusBarrier" is completely worthless and you should get rid of it.
    From the browser menu bar, select
    Edit ▹ Substitutions
    and uncheck Text Replacement.

  • IPhone apps keep moving when new ones added

    My sons iPod touch is on my account. When he adds an app it used to go on the last page of my iPhone but now they end up installing on the second page and then move other apps around.
    Is there a setting to keep them only adding on my last page.
    Thanks so much,
    Phil

    From another thread...
    I think I have this figured out now... I have too many darned apps. My pages are all full. Rather than installing on a page that doesn't exist, it installs on the second page so it can be found. I combined a bunch of icons on my last page in a single group and then installed a new app. Lo and behold it installed on the last page. Does that sound like a reasonable explanation?

  • Cursor Jumps when typing an email reply

    This is a weird thing once in a while while typing in a reply email on my Iphone 4 The cursor will jump down for no reason wiping out the text below. I since shut of the keyboard shortcut and it seems to be fine but I was wondering if anyone else is seeing this. Thanks

    iphonefan111111 wrote:
    ... The cursor will jump down for no reason wiping out the text below.
    Does the cursor always drop to the bottom? If so, perhaps your hitting the text when trying to type the top row of keys.
    Regarding troubleshooting, try resetting your iPhone by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

  • Cursor jumps when typing

    I see a bit of chatter on this here and on the web, but no solutions that I can find.
    When typing in a document, in wordpad for instance, the cursor (and text entry point) will suddenly jump elsewhere.  Typically up a couple of lines.  Since it happens while typing, I end up corrupting the document.
    Disabling the touch pad does not solve the problem.
    Clues?
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество
    Solved!
    Go to Solution.

    Just throwing a thought into the pot; I note that the touchpad has been turned off and the cursor is still "jumping", is the press to select function for the trackpoint also turned off?
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Refreshing the panels when new content added?

    Hey, guys. My first post here; hope I'm not too much of a JNewbie for you. :)
    I'm getting my feet wet in Swing, working on an invoice program for work. I want it to look like a regular invoice, with fields for SKU, description, cost per unit, units, and total per line item. Right now, I have those five fields in a Jpanel that I add to the bottom of the layout.
    The problem is that I need the ability to go to File => Add New Item... and have another JPanel with those five fields add to the bottom so a 2nd item can be added to the form below the first. I tried making a function that adds them to the panel, using the same type of syntax that the generated code (using a form builder in NetBeans) did. I don't see the lines get added.
    My thought is that there is some function I need to call to redraw or refresh the panel so that the new components start drawing. However, my Great Javadoc Adventure has turned up no clues.
    Can anyone please give me a hand with making this happen, or at the least coming up with an alternate solution that will achieve similar results?
    Thanks much.
    Jaeden Stormes
    [email protected]

    I tried revalidate() , but no change.
    Here's the function I'm using to try to add the item...
    private void NewLineItem()
    javax.swing.JPanel jLine = new javax.swing.JPanel();
    jLine.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
    jItemCode.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemCode, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 110, -1));
    jCourseDelivery.setHorizontalAlignment(javax.swing.JTextField.LEFT);
    jLine.add(jCourseDelivery, new org.netbeans.lib.awtextra.AbsoluteConstraints(110, 0, 240, -1));
    jItemQuantity.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemQuantity, new org.netbeans.lib.awtextra.AbsoluteConstraints(350, 0, 110, -1));
    jItemRate.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemRate, new org.netbeans.lib.awtextra.AbsoluteConstraints(460, 0, 100, -1));
    jItemAmount.setHorizontalAlignment(javax.swing.JTextField.CENTER);
    jLine.add(jItemAmount, new org.netbeans.lib.awtextra.AbsoluteConstraints(560, 0, 100, -1));
    jLineItemSection.add(jLine);
    jLineItemSection.revalidate();
    pack();
    JLineItemSection is a JPanel inside my frame.
    Any suggestions? I think the way I am using the AbsoluteContraints is screwed up, as I'm having a lot of trouble with the layouts in general. The form editor in NetBeans (at least, the version in 3.6) needs a LOT of work.

  • RT- not flagging violations when new tcode added to role

    Hi,
    I am using Access Enforcer and Compliance Calibrator and maintaining roles through PFCG. What I am finding is- AE picks up violations of role assignments to users as does Risk Termiantor. However if I add a new transaction code to a role through PFCG that causes a violation not in the role itself but when combined with other roles that the user already has on their account, this is not being flagged. Therefore I could have an unmitigated risk going undetected until I next run CC, which would pick it up. Has anybody else experienced this? Does Risk Terminator not pick up violations at user level when a role is updated?
    1) create role ztest1 with tcode IW32
    2) create role ztest2 with tcode MIGO
    3) assign both roles to user- testuser
    4) Edit ztest1- add tcode ME21N. Click Save
    5) Risk violation for user not flagged
    Thanks

    "I should perhaps add that I'm working here with .doc files (not .pages files) and that I edited the info.plist of Pages to give it the role of 'editor' instead of 'viewer' for all ".doc" files. Mainly to ensure that if I work on a .doc file which I want to remain a .doc file, I don't have to Save As (.doc copy) all the time but can just save in the normal way. Could this interfere with the above problem?"
    Here is your problem. Every time you open a .doc to Pages it is a new document. When you work on in Pages it is a Pages file and not a .doc file. If you want to work in PAges save the file as the generic .pages and do the export for .doc. Keep that name and next time you Save as Word or export as word in the same location the .doc file will be overwritten with the new one. and you'll only have on .doc file and one .pages file.
    If you want only have .doc files don't use Pages.

  • Event registrati​on refnum breaks when new event added

    I am using dynamic event registration to handle events from my UI in another VI.  Whenever I add a new event, the event registration refnum breaks and I have to recursively go through the code and replace all instances.  Is there a method of passing event registration refnums so that this does not happen?  Should these be made a strict type def?
    Solved!
    Go to Solution.

    Hello,
    I have the same problem, but i have no solution...
    Why it don't works? I added an examble...
    I created a Cluster with an enum an variant. I edit the enum with a second item, then the wire brakes.
    But it is a type def.
    Can anyone help me?
    Attachments:
    Event_Reg_Refnum_main.vi ‏6 KB
    Event_Reg_Refnum_subvi.vi ‏6 KB
    Control 2.ctl ‏4 KB

  • Replicat goes down. when new table added to source

    Hi I am using a 10gR2 setup on Linux (using em’s) and then a 11g. I have a goldengate setup. Everything seems to be working fine except when we add a table at the source it doesn't get replicated on the target? and the replicat gets abbened-ed when restarted
    my extract param
    –extract ext1 param file–
    extract ext1
    TRANLOGOPTIONS LOGRETENTION DISABLED
    –connection to database–
    userid XXXXXXXX, password XXXXXXXX
    –hostname and port for trail–
    EXTTRAIL /u02/gg/dirdat/ea
    discardfile /u02/gg/discard/ext1_discard.txt,purge
    DDL INCLUDE ALL
    table SCOTT.*;
    table HR.*
    package SCOTT.*;
    my replicat param is
    replicat rep1
    –source and target definitions
    ASSUMETARGETDEFS
    –target database login –
    userid XXXXX, password XXXXXXX
    –file for dicarded transaction –
    discardfile /mnt/gg/discard/rep1_discard.txt, append, megabytes 10
    –ddl support
    DDL INCLUDE ALL
    DDLERROR DEFAULT IGNORE RETRYOP
    –Specify table mapping —
    map SCOTT.*, target SCOTT.*;
    Thanks for the help
    Edited by: Aj05 on Feb 15, 2012 1:49 PM

    rep1.prm: REPLICAT REP1 starting.
    2012-02-16 08:47:48 INFO OGG-00996 Oracle GoldenGate Delivery for Oracle, rep1.prm: REPLICAT REP1 started.
    2012-02-16 08:47:48 WARNING OGG-00869 Oracle GoldenGate Delivery for Oracle, rep1.prm: Failed to retrieve column list handle for table SCOTT.NEWTABLE.
    2012-02-16 08:47:48 ERROR OGG-00199 Oracle GoldenGate Delivery for Oracle, rep1.prm: Table SCOTT.NEWTABLE does not exist in target database.
    2012-02-16 08:47:48 ERROR OGG-01668 Oracle GoldenGate Delivery for Oracle, rep1.prm: PROCESS ABENDING.
    2012-02-16 08:58:19 INFO OGG-00987 Oracle GoldenGate Command Interpreter for Oracle: GGSCI command (oracle): stop manager.
    2012-02-16 08:58:21 INFO OGG-00963 Oracle GoldenGate Manager for Oracle, mgr.prm: Command received from GGSCI on host 10.23.11.136 (STOP).
    2012-02-16 08:58:21 WARNING OGG-00938 Oracle GoldenGate Manager for Oracle, mgr.prm: Manager is stopping at user request.
    2012-02-16 08:58:34 INFO OGG-00987 Oracle GoldenGate Command Interpreter for Oracle: GGSCI command (oracle): start manager.
    2012-02-16 08:58:34 INFO OGG-00983 Oracle GoldenGate Manager for Oracle, mgr.prm: Manager started (port 7809).
    2012-02-16 08:58:35 INFO OGG-00967 Oracle GoldenGate Manager for Oracle, mgr.prm: Manager performing AUTOSTART of ER processes.
    2012-02-16 08:58:35 INFO OGG-00975 Oracle GoldenGate Manager for Oracle, mgr.prm: REPLICAT REP1 starting.
    2012-02-16 08:58:35 INFO OGG-00964 Oracle GoldenGate Manager for Oracle, mgr.prm: REPLICAT REP1 started automatically.
    2012-02-16 08:58:35 INFO OGG-00995 Oracle GoldenGate Delivery for Oracle, rep1.prm: REPLICAT REP1 starting.
    2012-02-16 08:58:36 INFO OGG-00996 Oracle GoldenGate Delivery for Oracle, rep1.prm: REPLICAT REP1 started.
    2012-02-16 08:58:36 WARNING OGG-00869 Oracle GoldenGate Delivery for Oracle, rep1.prm: Failed to retrieve column list handle for table SCOTT.NEWTABLE.
    2012-02-16 08:58:36 ERROR OGG-00199 Oracle GoldenGate Delivery for Oracle, rep1.prm: Table SCOTT.NEWTABLE does not exist in target database.
    2012-02-16 08:58:36 ERROR OGG-01668 Oracle GoldenGate Delivery for Oracle, rep1.prm: PROCESS ABENDING.

Maybe you are looking for

  • How can I make links clickable on all PDF viewers/readers?

    I have an InDesign document that's been built to be 'interactive' when printed as a PDF: along the top of each page are links that allow you to skip ahead in the document to specific pages. The links are created using boxes over the relevant text tha

  • Safari Auto-fill's Bookmarks

    Hey. So everytime I type something into the URL bar of Safari, it brings up "Bookmarks and History" in the pop-down suggestion box. I have links to future gifts and work stuff in there, so I'm trying to figure out how to get "Bookmarks and History" t

  • What do i do, because that really is annoying me.

    I wanted to watch a movie in bed on my new macbook pro with retina display but then i realized it didnt have the slot in the side that the disc goes in. What do i do becuase this is really annoying me.

  • Why do I have items waiting to be downloaded when I already have those items?

    Every time I open iTunes I get alerted I have items to download but I already have those items in library. Now I have a lot of duplicates.   Why does it do this? How to fix?

  • ListRest Function in SQL

    Hello, I have a table with a file name like mainstreet_233232. Now I have another column in the same table as listing number. I want to replace the existing value of the listing number with the numbers in the file name. Here is my query <cfquery name