Can I change the cursor.

Hi:
Recently, on of our users asked if it would be possible to make the current context (current item where cursor is located) in the form easier to tell. Now, I believe I can accomplish this by writing probably a couple of triggers (possibly PRE-TEXT-ITEM/POST-TEXT-ITEM) at the form level and then use DISPLAY_ITEM to set the display attribute for the item.
My question is: Is it possible to set some registry or Windows property to change the appearance of the cursor?
If the answer is no, has anyone out there implemented the code needed to accomplish this and would you be willing to share it. We are still in Client/Server, no java yet.
Thanks in advance,
Thomas

Torsten,
I don't want to leave fields red when you leave them -- the color is supposed to change back to normal when user leaves the field. But I have a WVI trigger that re-validates, and if it is not valid, turns it back to red. If I have a pair or more fields that are edited together (in a WVR trigger), I allow user to leave the first field and go to the next in the pair, but if user leaves the record, validation tries again and the field turns red again. This method works quite well for our needs.
I think there is a little bit of additional code necessary, like storing the old
background for the current item somewhere...You DON'T need to store it. Setting the Displayitem NULL effectively returns the item back to its defined attributes.
Kevin,
I tried doing without the PTI, and using WNII only. BUT--that doesn't work in a multi-record scrolling block. You have to store the record of the item, and navigate back to the original record number, and if the record has scrolled out of view, you have to scroll the records to the prior view, then back to the current view. The PTI method requires one line of code, and the other requires dozens.

Similar Messages

  • Can i change the cursor icon when hover over an active link by another one ?

    Can i change the cursor icon when hover over an active link by another one ?

    i have multiple links,so is there a way to have the custom cusrsor work on all links in a page and not just one?......you can see here i have 3 links..but only the top one changes to the crosshair cursor when rolled over  http://prntscr.com/5oxkj6
    actually it seems its not working on multiple instances of the same button.
    nvm found out why,lol...it was because i ndidnt have an actual link associated with the other instances of the button....all good now:)

  • How can I change the cursor look an my mac

    Can I change my cursor look an a mac

    Do you want to change the look for aesthetic reasons, or to make the cursor easier to see?
    As X423424X indicates, you can use System Preferences to change the size.
    You can also install a utility such as MouseLocator to aid in making your cursor easier to find
    Mouse Locator (free download)
    <http://www.macupdate.com/app/mac/17513/mouse-locator>
    There are other similar utilities that perform a similar service.

  • How can i change the Cursor for the hole frame?

    I think this is quite a simple question:
    I would like to change the cursor for the hole Frame, while the programme is reading data from database.
    but with frame.setCousor(...) i get a compiler-error.
    Thank you

    I think this is quite a simple question:
    I would like to change the cursor for the hole Frame,
    while the programme is reading data from database.
    but with frame.setCousor(...) i get a compiler-error.
    Thank youHello,
    there shouldnt be any compiler-error.
    Post some code and we will help.
    docs:
    /**Sets the cursor image to the specified cursor.
    This cursor image is displayed when the contains method for this component returns true for the current cursor location,
    and this Component is visible, displayable, and enabled.
    Setting the cursor of a Container causes that cursor to be displayed
    within all of the container's subcomponents, except for those that have a non-null cursor.*/
    public void setCursor(Cursor cursor)regards
    tim

  • I am on a Mac and just upgraded to Firefox 8. The cursor has become a permanent open hand and I can't click on links or CoolPreviews anymore. How can I change the cursor back to hand with pointed finger or arrow?

    Upgraded from Firefox 3.6 to 8 on Mac OS X
    Firefox crashed 3 x upon new upgrade and cursor is now a permanent open hand making it difficult to access links and CoolPreviews.
    I want to change this or overwrite the new Firefox with my old one which was slow but at least worked.
    I will do this through Time Machine.,
    Any advice?

    Upgrade your browser to Firefox 8 and check
    * getfirefox.com

  • How can I change the colour of the cursor in a spry menu?

    Hi there,
    I am trying to change the cursor on my horizontal drop down menu as it doesn't go with the rest of my design.
    I need the cursor to be #544107 on off state and then #835e1c on hover state. Is this possible? I've tried various things but nothing has worked for me.
    My CSS is below:
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        width: auto;
        font-family: "Times New Roman", Times, serif;
        font-weight: normal;
        text-decoration: none;
        border: 1px solid #faeed7;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        width: 7em;
        float: left;
        font-family: "Times New Roman", Times, serif;
        font-weight: normal;
        text-decoration: none;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        z-index: 1020;
        width: 8.2em;
        position: absolute;
        left: -1000em;
        background-color: #faeed7;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
        left: auto;
        font-family: "Times New Roman", Times, serif;
        text-decoration: none;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
        width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
        position: absolute;
        margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
        left: auto;
        top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #faeed7;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
        display: block;
        background-color: #edbf61;
        padding: 0.5em 0.75em;
        color: #544107;
        text-decoration: none;
        font-family: "Times New Roman", Times, serif;
        font-weight: normal;
        border-top-color: #faeed7;
        border-right-color: #faeed7;
        border-bottom-color: #faeed7;
        border-left-color: #faeed7;
        border-color: #faeed7;
        border-top-width: 1px;
        border-right-width: 1px;
        border-bottom-width: 1px;
        border-width: 1px;
    Thank you for any help.
    M

    Hi M,
    in addition, you only can use programs "outside" of your DW. I suggest to "Google" for them, as I did and found for example this:
    http://www.cursors-4u.com/ and while examining this website my cursor changed immediately.Hans-G.

  • Interactive SVG : Can't change the mouse cursor to pointer

    Hello I am having issue with the interactive SVG file I have followed the example from adobe tv and edgedocks and created my own project and everything is working just fine, now my question is how to change the cursor that hovers over the svg into pointer, I tried the box inside adobe edge animate and everything but not working even jquery or javascript nothing is really working and I can't get the id from the svg itself so I can target it with jquery so could somebody help me with that, Thanks

    you can use css to change the cursor in the init function with
    sym.$("selectedPartTxt").css({'cursor':'cursormode'});
    change cursormode to one of these:
    http://www.w3schools.com/cssref/playit.asp?filename=playcss_cursor&preval=all-scroll
    add this to the element that needs the cursor asshown above (element chosen from edgecommmons example).

  • How can I change the tag name in cursor statement?

    Hi
    I have two tables: TableA and TableB. I want generate a XML file using XSU12 from these two tables, the XML structure like:
    <ROWSETA>
    <ROWA num="1">
    <A1></A1>
    <A2></A2>
    <A3>
    <A3_ROW num="1">
    <B1></B1>
    <B2></B2>
    </A3_ROW>
    <A3_ROW num="2">
    <B1></B1>
    <B2></B2>
    </A3_ROW>
    </A3>
    </ROWA>
    </ROWSETA>
    How can I change the tag name and attribute for "A3_ROW"?
    Thanks in advance!
    null

    In short, you can't.
    You can use the column alias as you're already doing to change the name of the "A3" part of "A3_ROW" but you cannot change the "_ROW" part of "A3_ROW". This is added automatically.
    You can combine the results of XSU with an XSLT stylesheet (made very simple if you're using XSU by working with Oracle XSQL Pages) to change the name of any element or completely restructure the XML output into a target XML, HTML, or text format.

  • How can i change the color of the graph in agreement of the program's condition

    Hi,
    I am using labview 5.1 in my graduation's project final. (sorry by my english, but i am ina hurry)
    How can i change the color of the graph in agreement of the program's condition?
    I am developing a VI to control the temperature of termistors,but i have another sensor too.
    In a graph i have the situation of the termistors,but i want to change the color of the graph when the sensor is active.
    Thanks a lot
    Rafael Wajnsztajn - Brasil

    To change the color of the line itself, you can use the attribute Plot>>Plot Color.
    To change the color of the points, you can use the attribute Cursor>>Cursor Color.
    To select the color, you should have a color box constant inside the Numeric>>Additional Numeric Constants palette.
    This is all in LV 7.0. I'm not sure how it similar it is in 5.1.
    One important thing is to place the attribute node inside a case structure which will execute only when your condition has been filled.
    If this didn't help you, I suggest you post the relevant piece of code, or at least an image of it (no BMPs, please).
    Try to take over the world!

  • How do i change the cursor on a jtable header when clicked for sorting?

    here is my question, how do i change the cursor on a jtable header when I click the header for sorting?
    I think it is suppose to be in the fragment of code where the header listener is implemented for sorting, but I'm not quite sure what is the exact component that holds everything so that i can change the cursor...
    below is what I've tried, but it doesn't seem to work... thank you
    public void addMouseListenerToHeaderInTable(JTable table) {
    final TableSorter sorter = this;
    final JTable tableView = table;
    tableView.setColumnSelectionAllowed(false);
    MouseAdapter listMouseListener = new
    MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
    TableColumnModel columnModel =
    tableView.getColumnModel();
    int viewColumn =
    columnModel.getColumnIndexAtX(e.getX());
    int column =
    tableView.convertColumnIndexToModel
    (viewColumn);
    System.out.println("column = "+column);
    if (e.getClickCount() == 1 && column != -1) {
    System.out.println("Sorting ...");
    Cursor oldCursor =
    tableView.getRootPane().getCursor();
    System.out.println("oldCursor.getType()
    = "+oldCursor.getType());
    if (oldCursor.getType() !=
    Cursor.WAIT_CURSOR){
    JComponent parentPane =
    tableView.getRootPane();
    parentPane.getContentPane().setCursor
    (new Cursor(Cursor.WAIT_CURSOR));
    parentPane.setCursor(new Cursor
    (Cursor.WAIT_CURSOR));
    Cursor newCursor =
    parentPane.getCursor();
    System.out.println("newCursor.getType
    () = "+newCursor.getType());
    int shiftPressed = e.getModifiers(
    &InputEvent.SHIFT_MASK;
    boolean ascending = (shiftPressed == 0);
    //System.out.println("tableView.getRootPane()
    is "+tableView.getRootPane().getRootPane());
    sorter.sortByColumn(column, ascending);
    tableView.getRootPane().setCursor(new Cursor
    (Cursor.DEFAULT_CURSOR));
    //System.out.println("Done sorting");
    JTableHeader th = tableView.getTableHeader();
    th.addMouseListener(listMouseListener);
    }

    Hi,
    Try setting the cursor for the table header.
    table.getHeader().setCursor(Wait_Cursor);
    Bala.

  • Changing the cursor to the hourglass. Any ideas?

    I posted this in the Actionscript 3 Forum so I'm sorry about
    the double post.
    I've got a frame in my Flash AIR app that loads some data and
    I'd like to change the cursor to the hourglass in Windows (watch on
    the Mac) while the data loads. Anyone have any ideas? It seems like
    it should be simple, but I just can't seem to find a solution for
    it.

    Yeah, you can't do that. This is a top request of mine, glad
    to see I'm not alone. File an Enhancement Request -- see me
    signature.
    The workaround is to attach a custom graphic within Flash (or
    your HTML app) to the mouse location. The limitation of course is
    that this isn't system level, so you need to rely on custom
    graphics, and the graphic obviously won't be able to go outside the
    Flash/app frame. You can hide the mouse, thus effectively replacing
    the mouse cursor with your custom graphic, but I'd do that with
    caution: poor app performance or hangs will make the user think
    their mouse is hanging, which is a really bad feeling, and there
    are some other situations that can get hairy (mouse stays hidden
    outside of the app frame, sometimes, so cursor has completely
    disappeared!) For an hourglass or similar it makes sense to just
    attach right beside the cursor.
    Marco, the stopwatch you've seen is probably the one used in
    the Flex framework. It uses the custom attached graphic
    workaround.

  • Is there a way to change the cursor hotspot systemwide on Mountain Lion?

    Hello community.
    Is there a way to change the cursor hotspot on Mountain Lion, systemwide?
    Like editing the original cursor file (or downloading one) and replacing the original one?
    Reason: when I enlarge the arrow, the "absoulute" tip (top of the white outline) gets distant from the internal tip (top of the black core), so sometimes the white outline needs to stick out if I want to click the approprate area - because the hotspot is on the internal tip. To me it's counter-intuitive. I would prefer to have the hotspot on the absolute edge of the cursor (tip of the white outline). This is not debatable - this is my private preference, and I've read today that it's not only mine - there is a number of users who want the same.
    I know it's always been like this on Macs, so please avoid questions like "why to you want that", answers like "get used to it" or any kind of hostility, for these are useless. The quiestion is how can I change it, if possible.
    Thanx guys!

    I don't know how you get to the System folder in Mavericks; and even if I found the folder with the alternative cursors in it, I would have no way of switching to any of them.  The designers have obviously not anticipated that anyone would wish to do this.
    The System Preferences has an adjustment under Accessibilty which allows the user to change the size of the cursor, but nothing else.
    So I guess that there is no way to make the change without actually re-engineering the System somehow.
    If someone can find a way, I will be most pleased to be enlightened; only please make the directions explicit.

  • How can i change the settings of play/pause in Elements 13?

    Hello!
    How can i change the settings of play/pause in Elements 13? I definitely need cursor back to the "start play" point each time i hit stop (spacebar), like it works in Sony Vegas or in most of audio editing software. Can somebody help?
    Thanks!

    invasion 21
    The following is a copy of the reply that I posted to your question earlier today in the Adobe Premiere Pro Forum
    invasion21
    You are in the Adobe Premiere Pro Forum. What is your program? Is that Premiere Elements 13? If so, you are in the wrong forum where
    Premiere Pro answers may not be appropriate for your Premiere Elements (any version) question.
    You are not going to find what you are looking for in Premiere Elements preference settings.
    You write
    I WANT it playhead jump back to start play position, when i hit spacebar for pause.
    You can maneuver yourself into that through Edit Menu/Keyboard Customization/Applications/ and its Help category which by
    default shows
    Go to Timeline/Clip Start, using Home
    and
    Play/Pause Toggle, using Space
    But, you may find it is best to leave well enough alone. Explore and experiment with changing the keyboard shortcuts for the commands and decide what works for you.
    ATR

  • Changing the Cursor Width

    Hai all,
    I have an application in which I am not able to see the Keyboard cursor clearly. Can anyone help me in increasing the Keyboard Cursor width through Oracle Forms 6i.
    Thanks....
    Bye..
    Badari Hareesh.

    Hi,
    as far as I know, this is not possible. On teh Web chances would be to write a PJC that changes the cursor, but this too is more a work around than a feature.
    Frank

  • Changing the cursor shape

    how can i change the shape of a cursor to "hand" when the mouse rolls over specific text item. i have tried the cursor_style property but it returns only some of the cursor styles plus the are just behind the mouse clik trigeers so it chnges the shape when the mouse is cliked while i want it to change when mouse just rolls over the specific text item.as done in hyperlinks .

    Which form version you are using?
    Forms 6, has got cursor styles which are HAND, MOVE not documented in help.
    SET_APPLICATION_PROPERTY(CURSOR_STYLE,'HAND');
    regards

Maybe you are looking for

  • Problem in choosing Long Description Attribute in AWM

    While creating a dimension,both Short Description Attribute and Long Description Attribute can not be checked in simultaneously.Even though I tried to check both the options while creating but during data mapping it is showing only short description

  • Date and time embedded in DV movie: how to get it into iMovie?

    Hi, I've been trying to find an answer to this question using Google, but was not succesful, so here goes. I am a fairly new Mac user (yup, I moved over from The Dark Side, at least when at home). Last year, I made a family movie using Ulead VideoStu

  • How to create hierarchy across more than one dimesion

    Hi experts,  How to create hierarchy on more than one dimension in SSAS.please guide me. Thanks

  • Adding new field in search screen (In drop down field)

    Hi, I have added a new field as search criteria in searching sales order. (means in drop down this field will be displayed.). But, now I want to restrict the operators to only 'IS'. Can anybody help me, how to do this. Thanks, Sandeep

  • Error when create new apex_collection

    Hi everyone, I try to create a process as below apex_collection.create_collection_from_query( p_collection_name => base_collection, p_query => "SELECT ASAT_DATE, ADMINISTRATION_UNIT_ID, PROJECT_ID, SUM(TOTAL_BOOKED_HOURS) as TOTAL_BOOKED_HOURS FROM C