Writing on the screen using a stylus is really poor

I have a Twist and I teach using this laptop.  When I teach, I will often write on the laptop screen.  For instance, in PowerPoint you can use the Pen functionality to write on the slides and the audience can see what you have written as you write.  I have always used a Bamboo Tablet to do this.  However, I assumed the Twist touchscreen would make the Bamboo tablet obsolete.  However, the writing on the Twist touch screen is terrible... unless I am missing something.
When I write using the Bamboo tablet, I can get nice smooth letters.  When I write using the touchscreen the letters get squared off.  The touchscreen is unable to handle it.  PLease see below.  The red was written using a capacive stylus with the touchscreen.  The stylus was a Jot Classic by Adonit.  The blue was written using a tablet that plugs into the usb port.  The tablet was a Bamboo Tablet and the stylus that cam with it.  Do you see how the red letters tend to have a lot of straight lines while the blue is nice and smooth.  Is this just a limitation with using the touch screen that I will have to live with?   I have seen other claim they do note taking on the Twist.  I can't believe that after my experience.  What am I missing?

The Bamboo has a much higher sensitivity to pen input compared to the Twist. I think that what you are seeing is a result of the difference in the ability to detect the pen between the two. To make the Bamboo tablet obsolete, you would probably need to purchase an x230t, ThinkPad Tablet 2, or other product with a digitizer that supported a pen. The Twist is only really designed to be poked at with fingers.
You might have better luck with a larger capacitive stylus since the Jot classic has a very fine tip. 
When asking for help, post your question in the forum. Remember to include your system type, model number and OS. Do not post your serial number.
Did someone help you today? Press the star on the left to thank them with a Kudo!
If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help others with the same question in the future.
My TPs: Twist 2HU: i5-3317U Win 8 Pro, 4GB RAM 250GB Samsung 840 | T420 4177CTO: i5-2520M, HD+, Win 7 Pro x64, 8GB RAM, Optimus, 160GB Intel 320 SSD, Intel 6300 WiFi, BT 3.0 | T400 2764CTO: P8700, WXGA, Win 7 Ult x64, AMD 3470, 8GB RAM, 64GB Samsung SSD, BT, Intel 5300 WiFi | A20m 14.1" PIII 500 (retired). Monitors: 2x Dell U2211h IPS 100% sRGB calibrated w/ Spyder3.

Similar Messages

  • Writing on the canvas using mouse

    Hi,
    In my application, i use mouse to write some text on a panel or canvas. The code works fine when i write slow on the panel or canvas, but if you started to write fast you miss some of the mouse events , so all i can get is dots, not a continuous line. That is my problem. How can i get around this problem. Any suggestions here
    thanks in advance

    Hi,
    I am developing a touch screen based application,
    where the user will be writing on the screen ( panel,
    canvas ) using mouse or the touch screen pen. I need
    to save what he draws on the panel or canvas to a jpg,
    jpeg, gif file. The image i stored will used later.
    So i need help to convert the drawing on the panel or
    canvas into a image. Any suggestions in this regard
    is appreciated.
    thanks in advanceFirst of all, your app sounds cool! Second, there are literally hundreds of posts, just like this one, that have been answered more times than I can count. Just do 2 searches in the forums:
    1. how to capture a gui component into an image format
    2. how to save an image as a jpg

  • I am looking for an application that would allow me to open a word doc, and take notes in the .doc using a stylus pen.  I'd then like to convert those notes to text, and then be able to copy / paste those notes into an email.  Does this app exist?

    I am looking for an application that would allow me to open a word doc, and take notes in the .doc using a stylus pen.  I'd then like to convert those notes to text, and then be able to copy / paste those notes into an email.  Does this app exist?  It seems like we were doing these same types of things with Palm Pilots years ago, one would think this would work with iPads?

    I don't believe it will open a Word document, but Writepad allows for handwritten conversion of notes to text and then to email. Might help you some of the way...

  • Problem outputting to the screen using  FileDescriptor.out

    I have the following program that reads prime numbers from a binary file. The issue is that the numbers are not printing to the screen using
    FormatWriter out = new FormatWriter(
           new BufferedWriter(
           new FileWriter(FileDescriptor.out)));The numbers are being read from the file as if I unblock the line
    // System.out.println(primes[j]); the numbers are printed to the screen.
    I have pasted the code below and the code that creates the prime numbers file.
    Thanks for any help.
    package readprimes;
    import java.io.*;
    public class ReadPrimes {
       public static void main(String[] args) {
           File myPrimes;
           DataInputStream primesIn;
            try{
                String directory = "C:/JunkData";
                String fileName = "Prime.bin";
                myPrimes = new File(directory, fileName);
                 primesIn = new DataInputStream(new FileInputStream(myPrimes));
            catch(FileNotFoundException e){
                return;
            catch(IOException e){
                return;
        FormatWriter out = new FormatWriter(
           new BufferedWriter(
           new FileWriter(FileDescriptor.out)));
            long[] primes = new long[6];
            boolean EOF = false;
            while(!EOF){
                int index = 0;
                try{
                    for(index = 0; index < primes.length; index++)
                        primes[index] = primesIn.readLong();
                       catch(IOException e){
                return;
    //             catch(EOFException e){
    //                 EOF =  true;
                for(int j = 0;j < index; j++){
             //       System.out.println(primes[j]);
                    out.print(primes[j]);
                    out.println();
    out.close();
    package readprimes;
    import java.io.PrintWriter;
    import java.io.*;
    public class FormatWriter extends PrintWriter{
        private int width = 10;
        public FormatWriter(Writer output){
            super(output);
        public FormatWriter(Writer output, int width){
            super(output);
            this.width = width;
        public FormatWriter(Writer output, boolean autoflush){
            super(output, autoflush);
            public FormatWriter(Writer output, boolean autoflush, int width){
            super(output, autoflush);
            this.width = width;
    Class that creates the prime number file
    package bufferedoutput;
    import java.io.*;
    public class TryPrimesOutput {
       public static void main(String[] args) {
           long[] primes = new long[200];
           primes[0] = 2;
           primes[1] = 3;
           int count = 2;
           long number = 5;
           outer:
           for(; count < primes.length; number +=2L)
               long limit = (long)Math.ceil(Math.sqrt((double)number));
               for(int i = 1; i <count && primes<= limit; i++)
    if(number%primes[i]==0)
    continue outer;
    primes[count++] = number;
    try
    String dirName = "c:\\JunkData";
    String fileName = "Prime.bin";
    File myPrimeDir = new File(dirName);
    if(!myPrimeDir.exists())
    myPrimeDir.mkdir();
    else
    if(!myPrimeDir.isDirectory())
    System.err.println();
    return;
    File primesFile = new File(myPrimeDir, fileName);
    primesFile.createNewFile();
    DataOutputStream primesStream = new DataOutputStream(
    new BufferedOutputStream(
    new FileOutputStream(primesFile)));
    for(int i = 0; i <primes.length;i++)
    primesStream.writeLong(primes[i]);
    primesStream.close();
    catch(IOException e){
    System.out.println("IOExcetoptj");

    Indeed. It isn't obvious to me what the result of new FileWriter(FileDescriptor.out) would result in, but your test appears to show that it doesn't result in something which can be used to output to the console.

  • Clearing the screen using java

    hi
    how to clear the screen using a java program

    for (int n = 0; n < 24; n++) System.out.println();
    Even better: don't clear the screen. The program I ran before your program printed out very important things. If your program throws away those important things then I will not like you or your program.

  • While no applications are running, something is writing to the HD, using all available space

    Very strange issue - This a White Mac Book, probably 6 years old, running 10.8.4 with 4g ram, 160G HD.
    There's some process writing to the hard drive while no applications are running, using all the available disk space. I can watch the available space become less and less. At the same time, everytime I try to move anything to the trash, I get a prompt to authenticate. Once a password is entered, the files don't get put into the trash, but become deleted right away.
    Things I've done to attempt to correct:
    Flash P-Ram - no effect
    fsck -fy from single user - disk structure is ok, no errors.
    Run verify and repair permissions from the recovery partition. Had no effect.
    There is no AV app installed, but there's no space to install to check for viruses. Whatever is writing to the disk uses any available space which won't allow anything to be installed.
    Can't create a new user as there's no disk space.
    Only option I see is reinstalling the OS which I'm trying to avoid if I can.
    Any thoughts/Suggestions? Thanks.

    If you haven't done so, try a Safe Mode boot ..
    Startup your Mac in Safe Mode
    A Safe Mode boot takes a longer than a normal boot so be patient.
    Once you are in Safe Mode, click Restart from the Apple () menu.
    If that doesn't help, try locating a diagnostics log file.
    Open the Console app located in HD > Applications > Utilites
    Select:  System Diagnostic Reports  on the left.
    Copy and paste the most recent kernel panic or crash log in your Reply.
    Hopefully that will narrow down the problem.

  • 5530 xpressmusic - unlocking the screen using a sw...

    Hi, this is my first post.
    I have a 5530 xpressmusic. According to the manual,when the keyguard has been applied it can be unlocked either by sliding the keyguard lock switch on the right hand side of the phone, or by briefly pressing the on/off switch then swiping the screen. I can't get this second method to work.  I've installed the latest version of the firmware.
    Scouring these forums and the internet I can find no reference to anyone else having this problem.  Is it just my phone? Using the keyguard switch all the time is a bit of a bind; and I worry how robust it will be in the long term.

    Hey jimmyireland, I've had major problems with the swiping ever since getting my phone in October 2009. At least 4 times out of 10 when I swipe to answer, the phone answers fine, then when I come to end the call I can't. The phone totally locks up, no keys work. The only cure is to switch it off and on. Not much fun ! I called the helpdesk last week and they said this is a 'known fault' and if you upgrade to the new software version (11.0.54) then it should be fixed, I have this now, and will let you know if it helps or not.

  • Icons on the screen using a Mac mini

    I have a Mac mini with a Time Capsule connected to it. The onscreen icon for the TC is just a white box instead of the symbol that is in the dock. How do you change the icon?
    I have the same issue with the Plex icon.
    Any ideas out there?

    Here's a screen shot. The tabs used to be at the very top of the window, but now they aren't.

  • Can I capture the screen using Premiere 11?

    Hi guys
    I was thinking of doing a short training video regarding some software and the settings.
    I wanted to capture what appeared on the screen and add it to imported movie clips.
    Is it possible to capture Windows screen activity in Premiere 11 - or can you recommend a good HD screen capture program?
    Thanks

    I used Camtasia to create these free 8 part Basic Training tutorials for Premiere Elements.
    http://forums.adobe.com/thread/537685?tstart=0

  • How need to take screen shot of the screen using java.awt.Robot from javafx

    1) I am displaying a Stage which is having an image and shapes in it and wanted to take the screen shot as and when i move the shape( which moves the stage ).
    I am trying to java.awt.Robot, but i am getting headless exception. I used
    @Override
    public void start(final Stage primaryStage) {
    // creating some images and shapes
    Platform.runLater(new Runnable() {
    @Override
    public void run() {
    // update();
    public void update() {
    if (stg.isShowing()) {
    ScreenCapture.capture(stg.getX() + 2, stg.getY() + 2, (int) boundsOfCircle.getBoundsInParent().getWidth(), (int) boundsOfCircle.getBoundsInParent().getHeight());
    magnifierImageView.setImage(new Image(SCREEN_SHOT_FILE));
    public static void capture(final double x, final double y, final int width, final int height) {
    EventQueue.invokeLater(new Runnable() {
    public void run() {
    try {
    System.out.println("x ="+x +" y = "+y +" width "+width +" height ="+height);
    Robot robot = new Robot();
    } catch (Exception e) {
    System.out.println("exception arised while taking the screen shot ");
    e.printStackTrace();
    The above code throws headless exception.
    2) The second issues is have a image & i am dividing the image into different rows and cols( images of same size ). This is i am doing using awt. and i wanted to load those different images into
    javafx images . I am facing the issues when i try to load the images into javafx.

    hi,
    click on print screen button in your keyboard.
    open a word document and do Ctrl V .
    *Reward points if it helped

  • Capturing The Screen using apple+shift+4

    hey if anyone knows how to change the setting so when i capture the screen, it doesnt save the image as a pdf, i want it to be a jpg, i couldnt figure it out, please if anyone knows help!

    You're Welcome Ian!
    I notice that you have marked your question as answered, but have not utilized the Helpful or Solved options. That may be intentional, but, if you are not aware of the benefits, of using that function, here is some information.
    When you mark the appropriate posts as Helpful (5 pts) 2 available, or Solved (10 pts) 1 available, you are Thanking the contributors, by awarding them points.
    In threads with multiple replies, it also alerts other readers, to which answers may have been helpful, or solved the issue.
    This info, and more, can be viewed by clicking on
    ? Help & Terms of Use, located under your login name, on all "Discussions" pages.
    What are question answers?
    ali b

  • What is the box "Address" at the bottom of the screen used for?

    There is a box in the tool bar on the bottom of the screen marked Address for which there does not seem to be an explanation. What is its use?

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Is this a toolbar?
    *Firefox menu button > Options
    *View > Toolbars (press F10 to display the hidden Menu bar)
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Scrolling - I want my site to be central on screen, so I have pined it, yet if the screen using to view is smaller than mine, it wont scroll? even though it shows scroll bars.

    I have designed a wide site so the background fills the screen on all size monitors. However because I have pined it to the top and central it wont scroll on smaller screens. How do I keep the site central when first opened and allow it to scroll vertically?
    Link to live site below.
    Thanks
    Chris
    home

    Hi Chris
    That is a default behavior where the page content is wider but the resolution or browser window is smaller, then browser will add auto scroll.
    I have checked the site with a lower resolution and I can scroll down the page vertically and horizontally , is that you see the issue with any specific resolution or browser ?
    Thanks,
    Sanjit

  • The initial use of firefox was really fast. Why would it slow down? Takes way too long to load a web page.

    After adding bookmarks from IE it seems to have slowed down considerably.

    I don't have any netflix add ons or extensions installed. I only have necessary plug ins installed. I have turned off all add ons and restarted so this issue is not related to an add on, plug in or extension. I also can rule out my dsl provider as I have hooked my pc up to other family members connections with the same provider on the same server and it did the same thing, However their pc has no issue. I have taken my pc to 3 technicians and there are no problems they can find with my registry or any infections or spyware. The PC does the same thing on their connections.All hardware passes every test they can throw at it. I have tried other browsers and reinstalling this one as well and the same thing happens. This really is mind boggling. I have ATT/uverse beta 6.0. There should be no delay in starting up my browser. After startup, it works great no problems but the speed starting up is on par with old fashioned dial up right now. I have 3 gigs of ram available and I have 85 percent capacity left on hard drive , processor speed of 3.4 with dual core processor. Makes no sense at all.

  • I updated my iPhone to the iOS6 and now I have really poor wifi.

    I have really poor wifi once I updated my phone to the iOS 6 software.
    I was wondering if any one else is experiencing the same problem, thanks

    I have the iPhone 4s just did the IOS update 6.0.1 wifi was cutting in &amp; out now I have nothing can't even toggle on or off

Maybe you are looking for