When-mouse-leave

db and dev 10g rel2 ,
hi all ,
i am trying to use when-mouse-leave for the first time , and i know that it fires when the mouse cursor leaves an item , and that is the functionality i want ,
i am trying to make an item invisible when i leave another one , so i did that ,
- two text items (t1, t2,t3) ;
using this trigger on a text item (t1) to make t2 invisible , when i leave t1 to go to (t3) ;
in the code i've written :
set_item_property('t2',visible,property_false) ;
it did not work , without any errors or messages ?. , -- this problem also happens with when-mouse-enter trigger ?
thanks

Post-text-item runs when cursor (focus) leaves the field. It runs when you click into another field, or use Tab or Enter to leave the field. I believe it also runs during query processing when data in the row is being populated by the fetch process.
When-mouse-leave in Client/Server Forms ran each time the mouse pointer rolled OUT of the field's perimeter. As you rolled the mouse pointer across the screen, LOTS of when-mouse-enter and when-mouse-leave triggers would run, if they were defined on all the fields, or at the block or form-level. We used it to pop-up a balloon-help display on items, if the user rolled the mouse into a field and waited ~half a second. When-mouse-enter / leave triggers do not run in web forms, so it will not cause excessive network traffic.
I cannot believe Oracle is so lazy that they haven't updated the online help.

Similar Messages

  • WHEN-MOUSE-LEAVE Not Working

    hi,
    I am using Oracle 9i Forms on windows 2000 Server.
    My Form [32 bit] Builder Version is : 9.0.2.7.0
    I am facing a problem using the WHEN-MOUSE-LEAVE Trigger.
    I have applied this trigger on an ITEM in a DATA BLOCK but the Trigger is not fired when i leave the item using the mouse.
    Can any one guide me, as i may be missing something important.
    Thanks.
    Samir Farooq.

    Are you running on the web ? Mouse movement triggers are disabled on web forms as they generate too much network traffic.

  • WHEN MOUSE LEAVE in Client based

    Hello,
    I am upgrading some forms and facing some porblem while using WHEN_MOUSE_LEAVE trigger. Actually this trigger is not wokring. Could anyone please help me out in this matter.
    Forms Verison : 6.0.8.12.1 (6i)
    Many Thanks in advance.
    Khushi
    email : [email protected]

    Hi Duncan,
    Yeah, I have put in debug codes at different points as have said. But form is not executing the WHEN-MOUSE_LEAVE trigger. With this I have also used WHEN-MOUSE-ENTER trigger, which is being executed properly.
    Example: I have created one BUTTON with WHEN-MOUSE-ENTER and WHEN-MOUSE-LEAVE triggers, so when mouse enters on that button I am getting the results, but it not executing WHEN-MOUSE-LEAVE trigger, when mouse leaves that button.
    Please help!!
    Thanks & Regards
    Khushiram Sheoran

  • Triggering rollouts when mouse leaves stage

    Ever since I can remember, I have been frustrated by the fact
    that when the users mouse leaves the stage, the flash player
    doesn't properly trigger an event. That means any buttons at the
    edge of the stage stay in a rolled over state and any custom
    cursors you've created hang around idley when the user leave the
    stage. Can we please get something to solve this problem now that
    we're on a new architecture?

    In AS3 there is a Stage Class which has a mouseLeave event.
    "Dispatched by the Stage object when the mouse pointer moves
    out of the Flash Player window area."
    Within that event you should be able to properly set the
    state of your application or any controls.
    Hope that helps,
    -Ken

  • (FP Bug?) - Mc's/Sprite's events triggered when mouse leaves SWF area

    Hi guys,
    I wonder if somebody had a similar problem and can help out. I have a button on y=0 (may be either Movieclip or Sprite) with two events: ROLL_OVER and ROLL_OUT. Now when the mouse pointer leaves the SWF area, both of these events get triggered, even if the button is not hovered at all. There is no MOUSE_LEAVE event defined nor anything like that (see the code below). I realized that changing the y position of the button helps, strangely small numbers don't - if I set y=1 the bug still occurs, but y=20 solves the problem. What the hell? This happens only in Firefox on Mac, Safari seems to work alright. (FF 5.0.1 and 6 tested, on OSX 10.6.8 and 10.7)
    I uploaded a video to youtube in case somebody would be interested of seeing this from Windows (where I assume this doesn't happen, but cannot test at the moment - please leave feedback if you could - http://www.youtube.com/watch?v=YKWl50v_MIo - first 10 seconds are kinda crappy, sorry)
    Is this a Flash Player bug or am I missing something really badly here? Thanks!
    package {
        import flash.display.Sprite;
        import flash.display.Stage;
        import flash.display.StageAlign;
        import flash.display.StageScaleMode;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.display.MovieClip;
        import flash.text.TextField;
        public class Main extends Sprite {
            private var field:TextField;
            public function Main() {
                stage.align = StageAlign.TOP_LEFT;
                stage.scaleMode = StageScaleMode.NO_SCALE;
                //Set up the textfield
                field = new TextField();
                field.x = 200;
                field.y = 200;
                field.border = true;
                field.width = 200;
                field.height = 100;
                field.wordWrap = true;
                addChild(field);
                //Create and set up the MovieClip or Sprite - the MovieClip/Sprite must have content,
                //cannot be empty, otherwise the bug doesn't appear!
                var b:MovieClip = new MovieClip();
                b.graphics.beginFill(0xCCCCCC);
                b.graphics.drawRect(0, 0, 50, 50);
                b.graphics.endFill();
                addChild(b);
                b.y = 0;
                b.addEventListener(MouseEvent.ROLL_OVER, rollOverHandler);
                b.addEventListener(MouseEvent.ROLL_OUT, rollOutHandler);
            private function rollOverHandler(e:MouseEvent):void {
                field.appendText("Over"+new Date().getTime()+"\n");
                field.scrollV = field.maxScrollV;
            private function rollOutHandler(e:MouseEvent):void {
                field.appendText("Out"+new Date().getTime()+"\n");
                field.scrollV = field.maxScrollV;

    Yep, strange thing. I filed a report so feel free to vote. https://bugbase.adobe.com/index.cfm?event=bug&id=2944625

  • Detect when mouse leaves movie

    I need an actionscript element that will detect when the
    users mouse has left the swf movie. I cannot use js or anything
    else as i need to 'reset' the swf when the mouse exits. If there is
    an alternative solution to this problem, please let me know.
    Thanks!

    you can use javascript to capture the mouse position and
    determine when it's outside your swf , but as of how to do that, i
    have no idea. look in help or documentation (javascript
    communication).

  • Triggers (When-mouse-leave; When-Validate-item; When-mouse-move)

    Hi everyone,
    I would like to validate some fields in my form before pressing the Save buttom.
    I have several numeric fields where I would like to check if their values equal ''0'', If yes I replace the 0 by an other value, else I do nothing.
    I used the W-M-L, it works sometimes but not all the time. I would like to use the right trigger that will fire everytime.
    Suggestion?
    Charly

    I 'm using this version version of form.
    Forms [32 bits] Version 10.1.2.0.2 (Production)
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    here is the code bihind my Save buttom
    if (button = 'SAVE') then
    do_key('COMMIT_FORM');
    Charly

  • WHEN-MOUSE-ENTER ? Developer 10g release 2

    Developer 2.1
    WHEN-MOUSE-ENTER
    but developer 10g release 2 not exists this trigger
    ?

    Hi!
    Can somebody tell me why triggers WHEN MOUSE LEAVE and WHEN MOUSE ENTER don't execute on web?
    What shall I use instead?
    null

  • Mouse Leave Trigger Problem

    hi,
    I am using Oracle 9i Forms on windows 2000 Server.
    My Form [32 bit] Builder Version is : 9.0.2.7.0
    I am facing a problem using the WHEN-MOUSE-LEAVE Trigger.
    I have applied this trigger on an ITEM in a DATA BLOCK but the Trigger is not fired when i leave the item using the mouse.
    Can any one guide me, as i may be missing something important.
    Thanks.
    Samir Farooq.

    Are you running on the web ? Mouse movement triggers are disabled on web forms as they generate too much network traffic.

  • Mouse Leave animation being played when going down past 50% of object

    I'm new to Adobe Edge and I'm not really familiar with either CSS or javascript but I'm getting better. I've been trying to work on the navigational menu for my website for two weeks and the progress is very slow. I finally got the dropdown menu to happen correctly, except one thing. When I scroll down on the "AccomButton" and move the mouse past the 50% point of the object, the animation for the "up" occurs. I have it set to do this on "mouseleave". This seems to be the only instance in which the "up" animation is occuring wrongly. If I hover on any of the top 50% of the "AccomButton", it stays in the down or "stop" position.
    Your help will be very much appreciated as my head hurts from banging it on the table the past two days!
    Sorry, I forgot to add the code:
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseover", function(sym, e) {
             // insert code to be run when the mouse hovers over the object
             // play the timeline from the given position (ms or label)
             sym.play("drop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_HolstonButton}", "click", function(sym, e) {
             // insert code for mouse click here
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheHolstonRoom", "_self");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_TennesseeButton3}", "click", function(sym, e) {
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheTennesseeRoom", "_self");
             // insert code for mouse click here
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // play the timeline from the given position (ms or label)
             sym.play("up");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseenter", function(sym, e) {
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
             // insert code to be run when the mouse enters an element
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
    })(jQuery, AdobeEdge, "EDGE-379000071");

    I'm new to Adobe Edge and I'm not really familiar with either CSS or javascript but I'm getting better. I've been trying to work on the navigational menu for my website for two weeks and the progress is very slow. I finally got the dropdown menu to happen correctly, except one thing. When I scroll down on the "AccomButton" and move the mouse past the 50% point of the object, the animation for the "up" occurs. I have it set to do this on "mouseleave". This seems to be the only instance in which the "up" animation is occuring wrongly. If I hover on any of the top 50% of the "AccomButton", it stays in the down or "stop" position.
    Your help will be very much appreciated as my head hurts from banging it on the table the past two days!
    Sorry, I forgot to add the code:
    (function($, Edge, compId){
    var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes
       //Edge symbol: 'stage'
       (function(symbolName) {
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseover", function(sym, e) {
             // insert code to be run when the mouse hovers over the object
             // play the timeline from the given position (ms or label)
             sym.play("drop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_Accommodations}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_HolstonButton}", "click", function(sym, e) {
             // insert code for mouse click here
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheHolstonRoom", "_self");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_TennesseeButton3}", "click", function(sym, e) {
             // Navigate to a new URL in the current window
             // (replace "_self" with appropriate target attribute for a new window)
             window.open("www.theriveroverlook.com/TheTennesseeRoom", "_self");
             // insert code for mouse click here
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseleave", function(sym, e) {
             // insert code to be run when the mouse leaves an element
             // play the timeline from the given position (ms or label)
             sym.play("up");
          //Edge binding end
          Symbol.bindElementAction(compId, symbolName, "${_AccomDrop}", "mouseenter", function(sym, e) {
             // stop the timeline at the given position (ms or label)
             sym.stop("stop");
             // insert code to be run when the mouse enters an element
          //Edge binding end
       })("stage");
       //Edge symbol end:'stage'
    })(jQuery, AdobeEdge, "EDGE-379000071");

  • I updated my iMac to lion and now when i leave my desktop and it goes into stand by it like a picture is taken of the screen and when i want to log in the mouse point removes pixels so i can get to the user login screen this never happened ith snow leopar

    i upgraded my iMac to lion and now when i leave my desktop and it goes into stand by mode, its like a picture is taken of the actice desktop and when i want to log in the mouse point removes pixels so i can get to the user login screen this never happened ith snow leopard. does anyone else experience this and is there a fix?

    I have an iMac 8, 1 that I upgraded Leopard to Snow Leopard.  It was totally updated with the latest from Apple when I bought and tried installing Lion.  The upgrade failed, shot my OS and I couldn't boot.  Had the constant spinner on a grey screen..  did a format of the drive, hdd repair and everything came back clean... got back to Snow Leopard and all the updates on it again and then retried the Lion thing... same bs... dead duck.  Crashed my system one too many times.  I can't see where a few small changes, mostly app related can be classified as an OS upgrade and is not compatible with my iMac.  I have the stuff running on my Mac Pro but have yet to notice anything impressive.  I've always used F3 and really didn't require Mission Control.  Just open you app folder for launch pad... duh?  I use the hot corners anyhow.  As far as Safari is concerned... as a power user, Apple missed the boat on that for me.. full screen etc.. Wow.  I don't like the new Mail either..
    As you can see/read, I'm less than impressed with this release from Apple but I own so many of their products that I will have to put up with it for now... somehow the MS logo should apply to this release Steve.

  • JPopupMenu : how can I know when the mouse leaves the popup?

    Hello,
    I need to know when the mouse leaves a JPopupMenu or more precisely when no items are overlighted. Adding a mouselistener to the popup does not work because the JMenuItems themselves capture the mouse.

    Actually, I added a MouseListener that extends MouseAdapter to the component that owns the popup, and the same MouseListner to the popup itself. I have only overriden the MouseEntered method to let me know that the mouse is no more over a JMenuItem. It's now working fine, but I don't like that kind of programming.....
    I need that to do a toggleButton with a popup menu that would remember the last item selected when the mouse leaves the popup. (Because once a choice is made, the selected "tool" appears as an icon in the button and that icon is updated when the items of the popup are overlighted. So that when the mouse leaves the popup, the selected tool has to reappear as an icon in the button and the associated item has to be armed.)

  • How control can be customized so that it changes its picture when mouse moves over it

    How control can be customized so that it changes its picture when mouse moves over it. As it happens in other develpment enviroments that one can customized the look 'n feel of any thing during the mouse movement over that very thing. Moreover can any body plz tell me that how one can modify the funtionality of a control by him self (not selecting the available functionalities of controls and indicators)

    The attached LV 7.1 code uses an event configured to trigger on two controls when a "Mouse Enter" or a Mouse Leave" event occurs. Depending on the type key focus is either assigned or removed.
    Please elaborate on the Q re: customizing a control.
    Ben
    PS Do NOT change the boolean to an indicator, save, run, change to control, save run again. That is bad.
    Forgot to attachMessage Edited by Ben on 05-05-2005 09:30 PM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    MouseOver.vi ‏28 KB

  • When-mouse-enter forms 10g

    Hi, everybody.
    I have a problem with forms 10g (web) in any sub-version. The problem is that the events when-mouse (enter, leave, ...) does not seem to get fired.
    Is there anything I can do to solve the problem (a parameter to be set, anything to do in the form).
    Any help will be appreciated,
    Thank you.

    -> Why it is still documented? Will we get back a client server forms?
    I wish! But I am sure it is hopeless. They probably need to leave the when-mouse-enter documentation for backward compatibility -- old forms compiled and running in the Web Forms environment. The traffic would be horrendous. I have WME and WML triggers running, and on some forms, rolling the mouse across the canvas causes a lot of flickering -- item prompts flicker. And then there is the mouse-x,y-pos and when-mouse-move. Those are supported in 6i Client/Server, too. I used it to create a drag and drop functionality. Man, does THAT cause some massive trigger firing!!! Trust me, it would NOT work in a web environment.
    And yes, "Hai" is apparently something like an abbreviation for Hello -- a little more formal and polite than Hi. Its use still puzzles me, but apparently that is the reasoning of those who use it.        ?:|

  • When-Mouse-Click does not fire if When-new-item-instance exists

    We are using Forms 6i Patch 12.
    The When-Mouse-Click trigger (at block level) is not getting fired when a When-new-item-instance trigger exists on a given item on which mouse is clicked.
    We need to synchronize keyboard and mouse events such that if the validation on certain key items fails, the cursor should go to one of the specified items as per the validation rules.
    The validation rules are different on leaving from different items. Complex validation rules require cursor to go to a different item than the current item on which the validation fires.
    Since go_item cannot be used in when-validate-item, we are using a combination of key-next-item and when-mouse-click.
    But, this strategy seems to fail if mouse is clicked over an item having a when-new-item-instance trigger.
    Also, we need the When-mouse-click trigger to fire before When-new-item-instance.
    Any pointers to solving the firing of trigger or strategy will be appreciated!
    Regards,
    Sanjiv

    This solution we have tried and it works also.
    However, we end up in another problem in the form. For overall picture, please see my latest post for "Forms Valid status" at Forms Valid status
    Regards,
    Sanjiv

Maybe you are looking for

  • Error in excise invoice - Exports

    Dear All In creation of excise invoice for Export through J1IIN(Sale thru Factory) after selecting UTILIZATION(F6) the value of BED, Higher edu cess and Sec Edu Cess is disappearing. Before Utilization (F6) the value of BED, Higher educ cess, Sec Edu

  • Webi Error

    BusniessObject Edge 4 Window 2008 R2 When I try to schedule a Webi report I get this error.      "An internal error occured while calling 'processDPCommandsEx' API. (Error: ERR_WIS_30270)" Could someone please help. Thanks! Achett13

  • HP Officejet Pro 8500 will not recognize changed ink cartridge

    Replaced with just purchased new (out-of-the-box) Cyan XL ink cartridge as prompted but still received error message to replace cartridge.  Message will not change no matter that I tried: a. power printer off/on several times. b. removed/returned all

  • How do i fix 502 bad gateway on macbook pro

    hi my laptop keeps saying 502 bad gateway can you please help me lucas

  • Reporting Agent Settings - Authorizations

    Hey All, We have created a ton of settings in the Reporting Agent, but we could not determine which users would be defined under Authorizations.  We've determined that all the same users should fall under all Reporting Agent settings. Does anyone kno