Tooltip in log panel in JDeveloper

This is just a cry from the heart...
Please, PLEASE, P-L-E-A-S-E someone, anyone who can, remove the unfortunately eternaly recurring tooltip from the log panel in JDeveloper. It is absolutely USELESS (the equivalent in the status bar would be so much less aggressive) and UNBELIEVABLY A-N-N-O-Y-I-N-G. Move the mouse, reappears... move the mouse, reappears... just like an annoying fly when you are trying to eat in peace.
Pretty, pretty please... anyone...
Thank you. Feels good to talk about it.
Mikey

FWIW, I find it annoying too, but I believe it's present for accessibility.
Thanks,
Brian

Similar Messages

  • Writing to the Message Log panel`

    Is there any way to write to the Message Log panel from a transform script?

    Try this:
    Packages.oracle.dbtools.crest.swingui.ApplicationView.log("your text");
    Philip

  • How to see debug logging  message on jdeveloper Console?

    How to see debug logging  message on jdeveloper Console?

    The debug info is not even created unless debugging is switched on.
    Adam

  • Logging Panel (help!)

    Hi everyone,
    I want to add a logging panel to my frame. I want to use it in order to diplay text messages displayed by the program rather than printing it to the console.
    I don't know how to direct the text to this panel. Would plz tell me how to do this? or give me a reference to read?
    Many Thanks,
    Somaya

    I can't really understand why you want to redirect System.out/System.err ("printing to the console") if you are using a frame. Why print to the console instead of using GUI components only?
    However odd it may seem, I thought it would be a fun experiment so I created a panel class you can use:
    import javax.swing.*;
    import java.awt.*;
    import java.io.OutputStream;
    import java.io.PrintStream;
    import java.io.IOException;
    * Panel class that can intercept and redirect System.out and/or System.err to internal scrollable JTextArea.
    public class OutErrInterceptingPanel extends JPanel
        * @param interceptErrStream decides whether or not to intercept and redirect System.err to text area
        * @param interceptOutStream decides whether or not to intercept and redirect System.out to text area
       public OutErrInterceptingPanel(boolean interceptErrStream, boolean interceptOutStream)
          JTextArea logArea = new JTextArea();
          logArea.setEditable(false);
          setLayout(new BorderLayout());
          add(new JScrollPane(logArea), BorderLayout.CENTER);
          //Use fake/intercepting OutStream to connect PrintStream(-s) to JTextArea...
          OutputStream wrapper = null;
          if (interceptErrStream)
             wrapper = new StreamWrapper(logArea);
             System.setErr(new PrintStream(wrapper));
          if (interceptOutStream)
             if (wrapper == null)
                wrapper = new StreamWrapper(logArea);
             System.setOut(new PrintStream(wrapper));
        * Acts as an OutputStream but it intercepts all write calls and adds data to a JTextArea instead...
       private class StreamWrapper extends OutputStream
          private JTextArea outputSource;
          public StreamWrapper(JTextArea aOutputSource)
             outputSource = aOutputSource;
          public void write(int b) throws IOException
             //Convert and append to JTextArea (Note that append method is thread safe)
             if (b < 0)
                outputSource.append("?"); //Replace invalid char with a question mark
             else
                char[] chars = Character.toChars(b);
                for (int i = 0; i < chars.length; i++)
                   outputSource.append(Character.toString(chars));
    public void write(byte[] b) throws IOException
    for (int i = 0; i < b.length; i++)
    write(b[i]);
    public void write(byte[] b, int off, int len) throws IOException
    for (int i = off; i < off + len; i++)
    write(b[i]);
    And of course I also created a GUI application for testing the panel:
    import javax.swing.*;
    import java.awt.*;
    public class TextAreaLogger extends JFrame
       public TextAreaLogger(JPanel logPanel)
          super("Sample Application on how to use OutErrInterceptingPanel");
          getContentPane().add(new JLabel("See OutErrInterceptingPanel in action below:"), BorderLayout.NORTH);
          getContentPane().add(logPanel, BorderLayout.CENTER);
       public static void main(String[] args)
          //Create GUI on the event dispatching thread
          try
             SwingUtilities.invokeAndWait(new Runnable()
                public void run()
                   //Create intercepting panel (intercept System.out only) and use it in GUI
                   JPanel logPanel = new OutErrInterceptingPanel(false, true);
                   TextAreaLogger frame = new TextAreaLogger(logPanel);
                   frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   frame.setSize(450, 400);
                   frame.setVisible(true);
          } catch (Exception e)
          //Print 25 lines to System.out 25 lines to System.err
          for (int i = 1; i <= 25; i++)
             System.out.println("This is a line "+ i +" written to System.out");
             System.err.println("This is a line "+ i +" written to System.err");
    }My implementation may not be the best way of redirecting System.out and System.err to a text area, but it sure was fun to do! =)
    Note. If I completely misinterpreted what you wanted help with - if all you really wanted was to know a litle bit about JTextArea - you may find this link useful (and you should probably just ignore the code above):
    http://java.sun.com/docs/books/tutorial/uiswing/components/text.html

  • Example of localize tooltip for HTML panel

    Hi,
    is someone know where I can find examples of localized tooltip for HTML panel.
    It 's easy for a button or a link. But I don't know how to do it with tooltips.
    Many thanks.
    Sebastien

    The Spry site version is fixed (plus another quote error I
    found while i was at it..).
    The LiveDoc version will take a bit longer to get the fix
    live.
    Thanks,
    Don

  • Logging language in Jdeveloper 111102 ADF ADFv /ADFc

    Greetings
    I've noticed that - when running Jdeveloper on English (American) Windows XP SP2 on a Danish (as in Denmark) PC, setup to use Danish Locale / formatting etc, but use English in Menu's Dialogs etc. - then the logging Pane for Default Server in Jdeveloper runnning ADF / JSF development changes language when it comes to deployment.
    See example below, where Jdev/WL starts up fine in American, and then when It deployes changes its logging language to Danish.
    Where can I control this? I would like to have all my logging in English.
    WARNING: A duplicate definition for the feature "AdfRichPivotTable" has been found at zip:C:/o/MW111102/jdeveloper/system/system11.1.1.0.31.52.05/DefaultDomain/servers/DefaultServer/tmp/_WL_user/LOVdemo/4q12mm/war/WEB-INF/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 11. A feature with the same name was originally defined at zip:C:/o/MW111102/jdeveloper/dvt/lib/dvt-faces.jar!/META-INF/adf-js-features.xml, line 11. This may indicate that multiple copies of the same jar file are present on the class path. Ignoring the new feature definition.
    ADF Library non-OC4J post-deployment (millis): 62
    Application Deployed Successfully.
    Elapsed time for deployment: 59 seconds
    ---- Deployment finished. ---- Apr 15, 2009 10:52:10 AM
    Run startup time: 61093 ms.
    [Application LOVdemo deployed to Server Instance DefaultServer]
    Target URL -- http://127.0.0.1:7101/LOVdemo/faces/McAccounts.jspx
    +15-04-2009 10:52:23 oracle.adfinternal.controller.faces.lifecycle.JSFLifecycleImpl setLifecycleContextBuilder+
    WARNING: ADFc: Udskifter implementeringen af ADF-sidelivscyklussen med 'oracle.adfinternal.controller.application.model.JSFDataBindingLifecycleContextBuilder'.*
    +15-04-2009 10:52:23 oracle.adfinternal.controller.util.model.AdfmInterface initialize+
    INFO: ADFc: BindingContext er til stede. Bruger ADFm-API'er til DataControlFrames.*
    *+15-04-2009 10:52:23 oracle.adfinternal.controller.metadata.provider.MdsMetadataResourceProvider <init>+*
    INFO: ADFc: Controller-caching af MDS-metadataressourcer er ENABLED.*
    +15-04-2009 10:52:24 oracle.adf.controller.internal.metadata.MetadataService$Bootstrap add+
    INFO: ADFc: Indlæser bootstrap-metadata fra '/WEB-INF/adfc-config.xml'.*

    Does it help if you start JDeveloper with:
    jdev.exe -J-Dide.user.dir=<Path>
    and have the path point to a directory that has no spaces in the path?

  • Control tooltip on parent panel

    In the enclosed picture there is a parent panel and a child panel.
    I have added tooltip to row of picture buttens. The tooltips are displayed for those buttons that is to the
    left of the child panel. It seems as the child panel is above the tooltip.
    Anything I can do rather then resize one of the panels
    Regards Per
    Attachments:
    Untitled.png ‏40 KB

    I'm not sure I completely understand the premise of the question. While it's true that the position of the tooltips cannot be controlled, I'm having a hard time understanding how the tooltips could be overlapped by something else, given that they are floating windows, as Wolfgang pointed out.
    I considered the possibility that you meant "overlapped by another child panel" or "overlapped by another too-level panel". If the tooltip was going to be covered by a child panel, it should definitely display above that panel:
    (In these screenshots, "Text Message" is the control with the tooltip).
    If you meant a top-level panel, then this is a bit trickier to reproduce, since in order for the tooltip to trigger, the panel that holds the control with the tooltip must be the active panel. Therefore, the only way that another top-level panel could overlap that region would be if the other panel was floating. In that case, you have two floating windows. But when I tested it, the tooltip was still on top (I guess because it was created last):
    So, I'm not sure how you were able to cover up a tooltip. Could you maybe post a screenshot, so that I can understand it better?
    Thanks,
    Luis

  • Control tooltip on a panel overlapped by another panel.

    I have asked this question before but I try again.
    Is there any workaround so that the tooltip can be displayed when the location where the tooltip normaly displays is overlapped by another panel ?
    Could I control the position to either left/right instead of below ?
    Solved!
    Go to Solution.

    I'm not sure I completely understand the premise of the question. While it's true that the position of the tooltips cannot be controlled, I'm having a hard time understanding how the tooltips could be overlapped by something else, given that they are floating windows, as Wolfgang pointed out.
    I considered the possibility that you meant "overlapped by another child panel" or "overlapped by another too-level panel". If the tooltip was going to be covered by a child panel, it should definitely display above that panel:
    (In these screenshots, "Text Message" is the control with the tooltip).
    If you meant a top-level panel, then this is a bit trickier to reproduce, since in order for the tooltip to trigger, the panel that holds the control with the tooltip must be the active panel. Therefore, the only way that another top-level panel could overlap that region would be if the other panel was floating. In that case, you have two floating windows. But when I tested it, the tooltip was still on top (I guess because it was created last):
    So, I'm not sure how you were able to cover up a tooltip. Could you maybe post a screenshot, so that I can understand it better?
    Thanks,
    Luis

  • Info about logging.xml in JDeveloper weblogic domains? JDK Logging Control

    Is there any documentation on the file <DomainDir>/config/fmwconfig/servers/<ServerName>/logging.xml?
    It seems to control JDK 1.4 logging for my weblogic server and overrides settings from the logging.properties file.
    This is important new behaviour!
    Is it documented somewhere?

    I see some message about a proxy. Have you checked that you can use the proxy from you network?
    If not you should turn the proxy off.
    Timo

  • Tooltip with HTML Panel onmouseover

    Can the tooptip constructor be called from a javascript
    function called on a mouseover event. OR should it be used during
    the page load it self.in the <script> tags with in the
    body

    Sorry but the tooltip is plain text only in Web Dynpro.  The rendering isn't designed for any formatting and the WD Framework would safe encode (and render useless) any attempt to inject anything but text into the tooltip.
    >would it be possible to create a component to show this kind of information when the mouse hovers over any ui element in the screen
    No.  There is no server event in Web Dynpro for onHover.  You would need a full click event (from a button or LinkToAction) in order to trigger such a popup component.

  • FMS displays Chinese in Live Log panel

    hello, i have studied fms for several months. i use the code as follows:
    application.onAppStart=function(){
         trace("中文");
    the live long in fms administration console shows the result : "undefined".
    what should i do to solve the problem?

    i have just made a mistake. I should save the main.asc file as "utf-8" encoding. Then the trace("中文") takes effect immediately.

  • How do I Hide open accordion panels, tooltips, etc. in Design view in Muse

    I am adding tooltips and accordion panels in Muse.  The problem is that, when I am editting the site in Design view, I cannot get the tooltips and panels to close... and so any other objects, text, etc is hidden by the open tooltip / accordion panel... I worked around this somewhat by creating another element in the accordion panel that contains no text, and so shrinks the whole accordion when that element is active, but this is cumberson, and I can find no comparable work-around for tooltips...

    AppleScripts can be saved as run-only, which will keep a casual user from seeing the code, but there isn't a way to keep plain text from being seen.  You should never place sensitive information in plain text in your script/application, or even use them with global variables, since those are also saved with the script.
    The security shell utility can be used to get a password from the system keychain, for example:
    getKeychainPass("Apple") -- example
    on getKeychainPass(itemName)
      return text 2 thru -2 of (do shell script "security 2>&1 >/dev/null find-generic-password -gl " & quoted form of itemName & " | awk '{print $2}'")
    end getKeychainPass

  • Variable OffsetX for tooltip/HTML Panels

    I have a sample web page which uses the tooltips with HTML
    panels:
    http://www.fctu.org.uk/repfinder/tooltip.asp
    I have adjusted the position of the tooltip using the offsetX
    but is it possible to have multiple placements on the same page
    please; although the reasoning isn't apparent from this sample page
    I'd like some of the tooltips to appear to the left of the curser
    and some to the right. I've seen the example for doing this with
    ordinary tooltips, but can't quite equate that through to this.
    Many thanks

    Ok, I've checked the site linked here with Safari.
    It works normally, so I'm thinking it's a Chrome problem.

  • Livepkgr Admin panel logs

    Hi,
    Is "livepkgr" application access log not recorded the way it records "live" application?
    In my FMS, when I broadcast in "rtmp://<myip>/live", whenever someone connects to the stream, the logs appear in the live logs panel of admin console. But when I am streaming at "rtmp://<myip>/livepkgr" nothing is logged when someone access the stream from the website. It shows when fmle connects, and when someone connects from a site including their urls and IP
    Is it possible to make livepkgr logs the same way live does?
    Thanks

    I am assuming you are talking about This might be because there are not same kind of traces in Application code and hence not logging of such kind for livepkgr. If you are on Interactive Edition this should not be issue as you can modify and put your own traces but if you are on Streaming Edition - this can be issue. We can file bug for the same.

  • How to configure logging for Utils buildFacesMessage

    hi
    Please consider this example application created using JDeveloper 11.1.1.3.0
    at http://www.consideringred.com/files/oracle/2010/UtilsBuildFacesMessageLoggingApp-v0.01.zip
    (note, there is no ErrorHandlerClass configured in DataBindings.cpx)
    Running the trySomeFailingMethod.jspx page and entering a value starting with "err" will result in an exception being thrown and a message shown.
    For such scenario the "IntegratedWebLogicServer - Log" panel shows
    <Utils><buildFacesMessage> ADF: Adding the following JSF error message: unable to work with [err not ok value] as pFirstParam
    utilsbuildfacesmessageloggingapp.model.exception.MyRuntimeException: unable to work with [err not ok value] as pFirstParam
         at utilsbuildfacesmessageloggingapp.model.MyServiceImpl.someFailingMethod(MyServiceImpl.java:27)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:567)
    <Utils><buildFacesMessage> ADF: Adding the following JSF error message: unable to work with [err not ok value] as pFirstParam
    utilsbuildfacesmessageloggingapp.model.exception.MyRuntimeException: unable to work with [err not ok value] as pFirstParam
         at utilsbuildfacesmessageloggingapp.model.MyServiceImpl.someFailingMethod(MyServiceImpl.java:27)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:567)
    question:
    - (q1) How do I configure this "Utils buildFacesMessage" to avoid (or change) the logging of the exception (stacktrace) on the "IntegratedWebLogicServer - Log" panel?
    many thanks
    Jan Vervecken

    Thanks for your reply Timo.
    Yes, indeed, that is basically "logger" configuration in
    [...]\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\config\fmwconfig\servers\DefaultServer\logging.xml
    But an important part of my question (q1), which is not very clear, is how to determine what to configure, in this case "oracle.adf.controller.faces.lifecycle.Utils".
    But reviewing the log_handler configuration in logging.xml pointed me to ...
    [...]\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer-diagnostic.log
    ... which has more detailed information about which code is logging the message
    [DefaultServer] [WARNING] [] [oracle.adf.controller.faces.lifecycle.Utils] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: 0000IjULgG87y0YjLpyGOA1Ckc_900002a,0] [APP: UtilsBuildFacesMessageLoggingApp] [dcid: 4a36ca961f645018:-3ebf9ae5:12bd7e7fe26:-8000-0000000000000174] ADF: Adding the following JSF error message: unable to work with [err not ok value] as pFirstParam[[
    utilsbuildfacesmessageloggingapp.model.exception.MyRuntimeException: unable to work with [err not ok value] as pFirstParam
         at utilsbuildfacesmessageloggingapp.model.MyServiceImpl.someFailingMethod(MyServiceImpl.java:27)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [...]So, configuring a logger for "oracle.adf.controller.faces.lifecycle.Utils" works, but there does not seem to be level that just logs the exception message without the stack-trace. It would have been convenient to have a better overview of the (other) log messages without it being cluttered with large stack-traces.
    regards
    Jan Vervecken

Maybe you are looking for

  • HT204400 Apple TV  Could Not Sign In

    Could Not Sign In.    ConnectionManager::invoke::Failed  to find service connection URL. I get this message on my screen what's wrong But everything still seams to work except for this annoying message..?

  • Where can I find a download for Acrobat 7 standard?

    I have a key that will no activate.  (Can't reach server).  I was directed to a download of Acrobat 7 Pro in which the key is invalid.  Is there a download link for Acrobat 7 STD? Mike

  • Viewing photos (JPG) on a Touchpad

    Can I ask where are you supposed to put  photos which I have transferred across using USB Mode. it doesnt seem to show them even after a reboot. I just put them in separate folders in the root  directory Also does anyone know of an app that will view

  • Project manufacturing - Question about process

    Hi All, I am trying to represent the following scenario in a project: Finished Product (FP) ---RM1 (raw material 1) ---RM2 ---semi-finished assembly 1 (SF) RM3 RM4 We have to assemble FP in the project. If I assign only FP as a material component in

  • Sparc T5-2 servers

    Hi All, How good is the new sun sparc T5-2  in handling single threaded jobs in Oracle database. Any documents or Links will be of great help. Thanks.