Hide the smart cursors in PSCS6

Hello,
I have not been able to find this in the view menu or preferences?
Is there anyway to hide the smart cursors that are now featured in PSCS6?
thanks
babs

Hello!
I am not near CS6 now, but thought I did check that...maybe I needed to restart PS.
Either way..That's exactly what I needed!
I am sure when I go home and do this, it will be perfect!
thanks!
babs

Similar Messages

  • Hide the mouse cursor for whole application

    I can hide a mouse cursor for my frame with following code:
    int[] pixels = new int[16 * 16];
    Image image = Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, pixels, 0, 16));
    Cursor transparentCursor =Toolkit.getDefaultToolkit().createCustomCursor(image, new Point(0, 0), "invisibleCursor");
    myFrame.setCursor(transparentCursor);What is the simple way to set the cursor invisible for all current and future childs of my frame?

    hi,
    write a new class for this: class CursorHandler
      private static Vector frames = new Vector ();
      public static void addFrame (JFrame f)
        frames.add (f);
      public static void setCursor (Cursor s)
        for (int i = 0; i < frames.size (); i++)
          JFrame f = (JFrame) frames.get (i);
          f.SetCursor (s);
    }then just do:CursorHandler.addFrame (this); //for all frames
    CursorHandler.setCursor (new Cursor (Cursor.WAIT_CURSOR)); //in any framegreetings,
    Stijn

  • How to hide the mouse cursor?

    I'm working in fullscreen and i want to hide the mousecursor. I know it must be very easy, in C++ it is, but I just can't find it!! Anybody plz?

    try this:
    BufferedImage bim = new BufferedImage(1,1,BufferedImage.TYPE_4BYTE_ABGR);
    setCursor(getToolkit().createCustomCursor(bim,(new Point(0,0)),"HiddenM"));
    Noah

  • Can I hide the mouse cursor/arrow/pointer

    I am running Opera in Kiosk Mode, and I was wondering if the mouse could be set so that when it wasn't moved for a short period of time, the arrow would disappear. If you would go over and touch the mouse, the arrow would show up. Kind of like when you watch a movie on your computer full-screen, the arrow fades away. Thanks.

    That is exactly what I do now, I bury it in the lower left hand corner. It can still be seen, and I can live with it, but I want to schedule the machines to turn on and off. When they do that, the default position where the mouse arrow appears is in the upper right hand corner, about 20 pixels in from the side edge, and 20 pixels from the top edge.

  • How to hide the cursor in text entry boxes

    I didn't see this answer in the forum, and it took a while to figure this out so I thought I'd post my
    solution.
    The issue is that a question requires that the user know where to click before typing, then type the correct value.
    The problem is that a text entry field shows the cursor; a dead give-away as to where the user is supposed to type.
    My solution is:
    1) Hide the text entry box (give it a name and uncheck 'Visible' in the options).
    2) Add a transparent button (with default text if needed) over the area where the user must click.
         - Set the 'Success' option to 'Show', and make the 'Show' item the name of your text entry box.
         - Disable all captions (unless they get points for clicking in the right place).
    3) Set the object timing so the button displays until clicked, then end the button display.  Start the display of the text entry field immediately after the end of the button display.
    The effect is that the user clicks the correct area, then the cursor displays in the correct location, ready for the text entry.

    Brilliant!
    You get a gold star for this idea.  Very original thinking.

  • Can I hide the cursor when screen sharing?

    I'd like to hide the cursor on the screen share device. Is that possible?

    You want to hide your cursor when sharing your screen?
    You could always hide the cursor in a corner of your monitor and then use keyboard commands to navigate your application, or, if you have second screen, leave your mouse cursor on the non-shared screen.
    There is no method of omitting your cursor from your screen share, as that is part of sharing your screen. There is the option to show the 'application' cursor, instead of the Connect Presenter cursor.
    Application cursor off:
    Application cursor on:

  • How can I hide the cursor?

    I want to hide the cursor if the mouse enter some Components or a JFrame.
    I tried to find methods to solve my problem, but I failed.
    Someone can tall me how to do? Thanks.

    One way to do this is to create a custom cursor based on a completely tranparent image. Then when you want to hide the cursor, set the cursor to the transparent one.
    ==================================================================
    * Create a 'hidden' cursor by using a transparent image
    * @return the invisible cursor
    Cursor createInvisibleCursor()
    Dimension bestCursorDim = Toolkit.getDefaultToolkit().getBestCursorSize(2, 2);
    BufferedImage transparentImage = new BufferedImage(bestCursorDim.width, bestCursorDim.height, BufferedImage.TYPE_INT_ARGB);
    Cursor hiddenCursor = Toolkit.getDefaultToolkit( ).createCustomCursor(transparentImage,
    new Point(1, 1),
    "HiddenCursor");
    return hiddenCursor;

  • Hide  the cursor when it not move?

    how to hide the cursor when it not move?
    i know how to creat a hide_cursor,but i want to hide it when the cursor not move and show it when it starts move again
    thank you!

    Create a javax.swing.Timer that has a 5 second initial
    delay, non-repeating. When it fires, it should hide
    the cursor (set to a blank cursor or whatever you have
    to do). Then on mouse motion events, you show the
    cursor and reset the timer.A good idea - is there no mouseNotMoved-event ?
    heres my sample-code:import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.MemoryImageSource;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class HiddenCursorListener extends MouseInputAdapter implements ActionListener {
         private static final Cursor HIDDEN_CURSOR =
              Toolkit.getDefaultToolkit().createCustomCursor(
                   Toolkit.getDefaultToolkit().createImage(new MemoryImageSource(16, 16, new int[16 * 16], 0, 16)),
                   new Point(0, 0),
                   "HIDDEN_CURSOR");
         private static final Cursor DEFAULT_CURSOR = new Cursor(Cursor.DEFAULT_CURSOR);
         private Timer timer;
         private int timerDelay=1000;
         private Window window;
         public HiddenCursorListener(Window win) {
              window=win;     
         public void mouseEntered(MouseEvent e){
              startTimer();
         public void mouseMoved(MouseEvent e) {
              showCursor();
         public void mouseDragged(MouseEvent e) {
              showCursor();
         public void mouseClicked(MouseEvent e){
              showCursor();
         public void actionPerformed(ActionEvent e) {
              hideCursor();
         private void hideCursor(){
              if (window.getCursor() != HIDDEN_CURSOR)
                   window.setCursor(HIDDEN_CURSOR);
         private void showCursor(){
              if (window.getCursor() != DEFAULT_CURSOR)
                   window.setCursor(DEFAULT_CURSOR);
         private void startTimer(){
              timer = new Timer(timerDelay, this);
              timer.start();
         public static void main(String[] args) {
              JFrame f = new JFrame("Hidden-Cursor-Test");
              f.setSize(500, 500);
              f.setLocationRelativeTo(null);
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              HiddenCursorListener lis = new HiddenCursorListener(f);
              f.addMouseMotionListener(lis);
              f.addMouseListener(lis);
              f.setVisible(true);
    }regards

  • E-Recruitment - Hide the details in Offer letter- Smart form

    Hi,
    We need to hide the details in offer letter for some users of E-Recruitment.
    I followed the below steps, but when click ‘Extend Offer’ Activity, flow does NOT stop at break point in custom smrtform and displays the all information.
    1)     Copied smart form ‘HRRCF_CS_EXA_OFFER_CONTRACT’ to’ ZHRRCF_CS_EXA_OFFER_CONTRACT’.
    2)     Made the configuration to call custom smart form.
    3)     Declared one global variable 'LG_ALLOW' in Initialization of Global Definition. Right now I’m passing ‘space’. Later I’ll write the logic to populate this field.
    4)     In ‘Condition’ Tab of ‘Main window’ I put the condition 'LG_ALLOW = X ‘.
    5)     Still I’m seeing the Main window information in E-Recruitment application, which is not expected.
    May I know why it behaves like this?
    Whenever we see the offer letter in E-Recruitment application, our customer smartform should trigger. Am I Right?
    My requirement is to hide the offer letter information to specific support team role assigned to users through check in the customer smartform. Please help me to achieve this.
    Do let me know, if you need anything else.
    Regards,
    ...Naddy

    Hi Naddy,
    I am still not fully clear. Do you talk about the dataoverview for the activity you get by clicking on the activity name in the activity list or do you talk about the display option for the correspondence you can call when you are in creating/ changing the activity?
    Best Regards
    Roman

  • Fonts changed to Arabic in the Transformation Values of Smart Cursors

    Something wierd has happened in my InDesign CS5. The fonts in the Transformation Values of Smart Cursors have changed to Arabic!!! How to I get them back in English? And can I choose the font?

    Gents, no wild goose chasing please
    The default font for your documents has nothing to do with the interface font.
    The interface font is a modified Myriad Pro, or perhaps its source was Myriad Web, the screen-optimized nephew -- and it's "modified" because it also contains characters for space, en-space, hard return, tab, etc., as well as tons of extra characters to display in the Find and Change box (you may never have noticed this before but the Find/Change edit fields can display an enourmous amount of characters). It probably contains some of the interface graphics as well.
    Daniel, why do you think this is Lucida Grande? I can't tell the difference, but here is how the Arabic numerals 0 to 9 appear in my Find/Change dialog:
    displayed with ID's "native" font, independent of any selection in the document. Do these match the ones on your screen exactly? If so, ID itself is confused. If not, there must have gone something wrong with your native font in ID. Either way: re-installing InDesign ought to fix it. Peter Spier can point you to the required steps to ensure a clean install, and how to safeguard your personal preferences first.

  • How do you hide the cursor in full screen visualizer?

    Using iTunes version 11.0.1 on new macbook pro with retina display.  Sure would like to use the visualizer full screen without the annoying cursor remaing on the screen.  Thanks in advance.

    John Stanowski wrote:
    When I want to change the color of text I highlight it first and it gets this "negative" color highlighting over it to show that it's, well, highlighted.
    Trouble is, I can't see how my text looks as I change the colors because it's being obscured by this highlighting effect.
    Rather like driving a car with a tent over your windshield.
    In Illustrator you can toggle this highlighting off with a command in the View Menu. But I haven't found anything in InDesign's Menu that does the same thing.
    So sorry for the newbie question, but can anyone clear this up?
    Very cool question, John!
    I wouldn't have had the chance to find out that you can do this by opening a new document window with Window > Arrange > New Window, and seeing the effect of the changes applied to the highlighted text in one window, appear in the other window without the obscuring selection highlight. You can even set one window to display in the Preview mode and the other in Normal or Preview.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts- 18   movies need to go-.

    How do I delete movies from iTunes library? I have moved them to the iCloud and now only seem to have the option to hide the icon in iCloud.  I am sure I chose poorly at the 'keep file' window.  Please help. My Brain hurts… 18 plus movies need to go….  Thank you.

    Instead of removing the music from the cloud or the iTunes library why not shuffle your music using a Smart Playlist which excludes the holiday music, or tracks that are not checked. For example, use this very simple Smart Playlist:

  • Is there a way to prevent a user from using the graph cursor legend to delete a cursor?

    I would like to have 2 cursors on a graph that can't be deleted by the user.

    Hi Dennis,
    I'm having this problem as well, and found your post. Are you referring to the Enabled State of the entire graph?  If so, this prevents the user from moving the cursor at all while the VI is running, which, of course, defeats the purpose of having a cursor at all.  Ideally, I would like to show the cursor palette and disable it's run-time shortcut menu.  This doesn't appear to be possible.   One workaround would be to hide the palle and instead include some indicators that show the cursors' values.  I'd prefer to show the palette to keep the program simpler.
    Any other solutions?
    Thanks,
    Alan
    Alan Blankman, Technical Product Marketing Manager and LabVIEW Developer
    LeCroy Corporation
    800-553-2769 x 4412
    http://www.lecroy.com
    [email protected]

  • Anyone notice the Smart Guides bug in CS5?

    ID CS5 has a Smart Guides bug when resizing frames to match the size of other frames.  When releasing the mouse after the Smart Guides pop up showing the sizes are equal the frame size changes.  When analyzing this it appears the frame does not resize to where the SmartGuides popped up but where the cursor is located.  There is also jumpiness between the position of cursor and where the Smart Guides pop up.  This behavior occurs vertically and horizontally.  While some jumpiness still exist, it works reliably when frames are aligned.  In other words, if a frame is resized to a point where two sides are aligned then the size of the frame does not change when the mouse is released.
    I have verified the bug in both Windows and Mac versions of IDCS5.
    None of the behavior exist with Smart Guides in ID CS4.
    Is anyone else experiencing this behavior?

    Thanks for checking Peter.
    I am using a laptop, Mac OSX 10.5.8, with ATI Radeon X1600.  The issue still existed wtih my Wacom tablet mouse and a Logitech mouse.  I also just uninstalled the program and reinstalled it and the issue still existed.
    This issue also exists on an iMac with Windows 7 running ID CS5 for Windows.
    Are you using a Mac by any chance?  The issue does not exist so much when the frames are aligned.  So, if you are trying it out and Smart Guides creates a line connecting the two frames you need to move them out of alignment.  Also, if your cursor is dead center over the edge of the frame all is ok.  What it's really doing is snapping to where the cursor is and not to where the Smart Guides popped up.  I'll be really surprised if you're not seeing it with a Mac.

  • How to hide the default windows inherit menu bar

    Dear All,
    I am using oracle Application server 10g with windows server 2003. with oracle 11g database.
    When ever I am accessing the application from client machine through browser i am getting the windows inherit menu bar at the top of the working space of the form.
    I want to hide that default menu bar from viewing the application users.
    Please help.
    Thank you in advance....

    actually vansul i have done this the default smart bar is removing by doing this
    but i want to hide the black window bar which is displayed even if by removing
    the default & smart bar.

Maybe you are looking for

  • When it comes to iTunes & what's purchaced I have a thought & questions.

    My thought is this. When I go though a product it should have at least some check points. IF there is some corruption of data? Why not look to replace it of the song is no good unless it was added via CD from the user. I like to keep my songs or play

  • Receiver determination did not find any receiver at all while using ICO

    Hi Experts, I'm getting this error in one of our sender SOAP channels. It's Web Service (SOAP) - PI - Proxy (SOAP) scenario using ICO. Have you come across this problem before? What should I check? Thanks in advance. Mahi

  • Cost of using GPS in india

    Hi i have a NOKIA 5800 express music handset , it came with a 90 days walk/drive navigation license , i want to know , what is the cost of buying / using the GPS service after the expiry of this 90 day license? thanks in advance. 

  • Non-Editable PDf

    Hello guys, I have printed a pdf from a program, but it isn't editabl the thing is i don't know exactly what am i doing wrong, but I have realized that some pdf's when u right click on them u get the option to insert text at cursor. while other's don

  • How to mount a device/filesystem at multiple mount points

    Hi, my device /dev/disk1s1 is auto mounted at /Volumes/UNTITLED. i want to mount the device again on different path like /Volumes/temp. so that i can have same device mounted at two different place. When i type " mount /dev/disk1s1 /Volumes/temp" in