TOOLTIP FOR BUSSINESS GRAPHICS

hi Experts,
I am using Bussiness Graphics UI Element in Webdyn Pro
chart type is Lines
i want to display tool tip value wehenever i place mouse over point in graph
my conext structure is
--series
points
---valuex
---value y
i am getting ploted line graph
if i set tooltip for point as---series.point.x
its not displaying the tool tip
r there any coding we need to do
pls can anybody clear my doubt
r there any setting we need to make in chart designer
or any event for mouse over
thanks

hi,
In that case, create an extra context attribute in that node, and dynamically assign values(text that you wanted to display as tooltip) to it.
Then, map that context with the series element.
Enable the "label" of the businessGraphics from the chart designer.
The result will be that, although u will not get tooltip, but in the labels, you can display what you wanted.
Regards,
Hanoz

Similar Messages

  • Tooltip for bussiness graphics ui element

    hi Experts,
    I am using Bussiness Graphics UI Element in Webdyn Pro
    chart type is Lines
    i want to display tool tip value wehenever i place mouse over point in graph
    my conext structure is
    --series
    points
    ---valuex
    ---value y
    i am getting ploted line graph
    if i set tooltip for point as---series.point.x
    its not displaying the tool tip
    r there any coding we need to do
    pls can anybody clear my doubt
    r there any setting we need to make in chart designer
    or any event for mouse over
    thanks

    hi,
    In that case, create an extra context attribute in that node, and dynamically assign values(text that you wanted to display as tooltip) to it.
    Then, map that context with the series element.
    Enable the "label" of the businessGraphics from the chart designer.
    The result will be that, although u will not get tooltip, but in the labels, you can display what you wanted.
    Regards,
    Hanoz

  • Authorisation For Bussiness Graphics

    Dear All ,
    Hi I am getting the problem that Bussiness Graphice which i have used in my Webdynpro application are working fine in one of the Id but not in the other .
    It is the authorisation problem can anybody tell the desired object .
    Thnks
    Sahil

    Hi,
    goto SU53 and check for the authorization.
    if you are not authorized ask your basis guy to provide the same roles for the other id also.
    Thanks,
    Sree.

  • Tooltip for mousedragged

    I did a program in applet..I want to set tooltip for the drawing..i.e.,when the oval is dragged its new co-ordinates should be displayed by using the tooltip..How can i do this..
    .import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.geom.Ellipse2D;
    import java.awt.geom.Line2D;
    import java.awt.geom.Point2D;
    import java.text.DateFormat;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Calendar;
    import java.util.Date;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.BorderLayout;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import javax.swing.BorderFactory;
    import javax.swing.border.Border;
    public class mouseevent extends JApplet
          private static final int BALL_DIAMETER = 40; // Diameter of ball
        //--- instance variables
        /** Ball coords.  Changed by mouse listeners.  Used by paintComponent. */
        private int _ballX     = 450;   // x coord - set from drag
        private int _ballY     = 50;   // y coord - set from drag
        /** Position in ball of mouse press to make dragging look better. */
        private int _dragFromX = 0;    // pressed this far inside ball's
        private int _dragFromY = 0;    // bounding box.
        /** true means mouse was pressed in ball and still in panel.*/
        private boolean _canDrag  = false;
        JLabel label;
        String s= "aswedfrtyhgqwsadrftlopqasnhfgrchildnode1";   
        int width = s.length();   
        int border = 2;    int margin = 10;   
        int rectx = margin+border,recty =margin+border+63;   
        int rectwidth = 8, rectheight = 6;   
        int imgborder = 10;   
        int imgline1 = 300;  
        int labellocx = rectx+imgborder+13;  
        int labellocy = recty+imgborder-1;   
        int circlex = rectx+rectwidth;
        int circley = recty+rectheight;  
        int x =rectx+rectwidth+10;  
        int y = recty+rectheight+10;
        int x1 = x+17; 
        int y1 = y+20;  
        int titlebarx= 300;
        int titlebary = 40;  
        boolean title = true;
        String date[] = {"0","4","8","12","16","20","24"}; 
        String day[] = {"Mon","Tue","Wed","Thu","Fri","Sat"};
        int width1 = 180;
    //    int f2= x+168;
        int n =180;
    //    int dayx = 385;
        long From ;
        long To ;
        ArrayList dateList;
         int rect1x= 300;
        int rect1y = 100;
        int rect1width= 50;
        int rect1heigth = 50;
        boolean candrag = false;
        public void init()     
            Container cont = getContentPane();   
            cont.setLayout(new BorderLayout());
            // to see the scrollpane, the scrollpane has to be smaller        
            // then the component held within its viewport             
            setPreferredSize(new Dimension(300, 300));             
            JScrollPane scroll = new JScrollPane();              
            getContentPane().add(scroll, BorderLayout.CENTER);        
            scroll.getViewport().add(new Imagepanel());       
    private class Imagepanel extends JPanel implements MouseListener,MouseMotionListener
            JScrollPane scroll = new JScrollPane();      
            Rectangle rect = new Rectangle(rectx,recty,rectwidth,rectheight);
            Rectangle rect1  = new Rectangle(rect1x,rect1y,rect1width,rect1heigth);
            Ellipse2D.Double circle = new Ellipse2D.Double(_ballX,_ballY,BALL_DIAMETER,BALL_DIAMETER);   
            Ellipse2D.Double circle1 = new Ellipse2D.Double(x+10,y+10,4,4);    
            boolean selected = false;  
            boolean selected1 = false;     
            int w ;     
        Imagepanel()       
            // setting the component to be largenr than the scrollpane           
            // just so we'll see scrollbars.
            setPreferredSize(new Dimension(32710,32710));      
            scroll = new JScrollPane();     
            add(scroll);                 
            addMouseListener(this);       
            addMouseMotionListener(this);
            setBorder(BorderFactory.createLineBorder(Color.BLACK, border));          
        protected void paintComponent(Graphics g)         
            int n = 168;
            int x = 300;
            int x1=300;
            int x2=x;
            int daydx=(width1/2);
            int dayx =(daydx+x);
            int f2= x+n;
            From = new java.util.GregorianCalendar(2007,01,01).getTime().getTime();
            To = new java.util.GregorianCalendar(2007,06,30).getTime().getTime();
            double Difference = To-From;
            long days = Math.round((Difference/(1000*60*60*24)));
            int noday = (int)days;
            Date fromDate = new java.util.GregorianCalendar(2007,01,01).getTime();
            Date toDate = new java.util.GregorianCalendar(2007,06,30).getTime();
            super.paintComponent(g);            
            Graphics2D g2 = (Graphics2D) g;             
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);       
            Font font = new Font("Ariel",Font.PLAIN,11); 
            Font font1 = new Font("Ariel",Font.PLAIN,9);
            g2.fillOval(_ballX, _ballY, BALL_DIAMETER-20, BALL_DIAMETER-20);
            g2.setBackground(Color.GRAY);
            //drawing the tilte bar     
            g2.setBackground(Color.WHITE);  
            g2.drawLine(imgline1,0,imgline1,getHeight()); 
            g2.setPaint(new Color(0,128,192));
            g2.fillRect(imgborder,imgborder,290,45);
            //g2.drawLine(margin,margin,titlebarx,titlebary);              
            //drawing the root node and labeling      
            g2.draw(rect);
            g2.setPaint(Color.WHITE);
            g2.drawLine(margin,margin,titlebarx,titlebary); 
            g2.drawString("RESOURCE",40,40);       
            g2.drawString("TIME",200,25);
            g2.setPaint(Color.green);
            g2.drawString("sadasd",344,22);
            g2.draw(circle);
            rect.setLocation(rectx,recty);      
            rect.setSize(rectwidth,rectheight);
            g2.setPaint(Color.BLACK);
            g2.drawString(" aswedfrtyhgqwsadrftlopqasnhfgrchildnode1",rectx+rectwidth+05,recty+rectheight);               
            for (int i = 0;i<noday;i++)
            Calendar  c = Calendar.getInstance(); // current date
                c.add(Calendar.DATE, i); // add one day
                SimpleDateFormat sdf = new  SimpleDateFormat("MM/dd/yy"); // use the pattern: day_of_month
                String str = sdf.format(c.getTime()); // fromat the date to string
                System.out.println(str); // print it at the console
                for (int j=0;j<6;j++)
                    g2.setFont(font1);
                    g2.drawLine(x1,40,x1,35);
                    g2.drawString(date[j],x1,35);
    //              g2.drawString(day[j],dayx,20);
                    g2.drawString("24",f2,35);
                    f2+=width1;
                    x1+=30;
    //              dayx=+170;
                g2.drawRect(x,10,width1,30);
                x+=width1;
                g2.drawString(str,dayx,20);
                dayx+=180;
            for(int k=0;k<n;k++)
                for(int l=0;l<6;l++)
                Calendar c = Calendar.getInstance(); // current datem
                c.add(Calendar.DAY_OF_WEEK, k); // add one day
                SimpleDateFormat sdf = new SimpleDateFormat("EEE"); // use the pattern: day_of_month
                String str = sdf.format(c.getTime()); // fromat the date to string
                System.out.println(str); // print it at the console
                g2.drawString(str,dayx,5);
    //          g2.drawString(day[l],dayx,20);
                dayx+=180;
            //dividing the drawing panel      
            //drawing for the click event       
            if(selected)       
                Color color = Color.orange; 
                g2.fill(circle);
                g2.draw(circle);          
                //              g2.drawRoundRect(x+30,y+15,200,12,5,5);        
                g2.drawString("aswedfrtyhgqwsadrftlopqasnhfgrchildnode1",x+15,y+5);     
                g2.drawRect(300,y,100,15);      
            if(selected1)      
                g2.setFont(new Font("Arial",Font.PLAIN,12)); 
                g2.fill(circle1);
                g2.draw(circle1);           
                g2.drawString(" aswedfrtyhgqwsadrftlopqmasnhfgrchildnode1",x1+15,y1+5);  
        public void update(Graphics g)    
            paint(g);   
        public void mouseClicked(MouseEvent e)          
            //imagePaneMouseClicked(e);              
        private void imagePaneMouseClicked(MouseEvent e)        
            Point p = e.getPoint();         
            if (rect.contains(p))                  
                if (!selected)              
                    selected = true;        
                    repaint();               
            if(circle.contains(p))     
                if(!selected1)           
                    selected1 = true;    
                    repaint();           
            if(rect.contains(p)) 
                if(e.getClickCount() == 2)    
                    selected = false;  
                    repaint();      
        public void mousePressed(MouseEvent e)        
             int x = e.getX();   // Save the x coord of the click
            int y = e.getY();   // Save the y coord of the click
            if (x >= _ballX && x <= (_ballX + BALL_DIAMETER)
                    && y >= _ballY && y <= (_ballY + BALL_DIAMETER)) {
                _canDrag = true;
                _dragFromX = x - _ballX;  // how far from left
                _dragFromY = y - _ballY;  // how far from top
            } else {
                _canDrag = false;
        public void mouseReleased(MouseEvent e) {        }               
        public void mouseEntered(MouseEvent e) {        }          
        public void mouseExited(MouseEvent e) { 
            candrag = false;
            public void mouseDragged(MouseEvent e) {
              if (_canDrag)
              {   // True only if button was pressed inside ball.
                //--- Ball pos from mouse and original click displacement
                _ballX = e.getX() - _dragFromX;
                _ballY = e.getY() - _dragFromY;
                //--- Don't move the ball off the screen sides
                _ballX = Math.max(_ballX, 0);
                _ballX = Math.min(_ballX, getWidth() - BALL_DIAMETER);
                //--- Don't move the ball off top or bottom
                _ballY = Math.max(_ballY, 0);
                _ballY = Math.min(_ballY, getHeight() - BALL_DIAMETER);
                this.repaint(); // Repaint because position changed.
                this.add(label);
                label.setText(""+_ballX+_ballY);
                label.setLocation(_ballX,_ballY);
            public void mouseMoved(MouseEvent e) {
    }

    The label is not getting displayed...the program throws some exception...
    Exception in thread "AWT-EventQueue-1" java.lang.NullPointerException
    at java.awt.Container.addImpl(Container.java:1015)
    at java.awt.Container.add(Container.java:351)
    at javaapplication5.mouseevent$Imagepanel.mouseDragged(mouseevent.java:346)
    at java.awt.Component.processMouseMotionEvent(Component.java:5536)
    at javax.swing.JComponent.processMouseMotionEvent(JComponent.java:3144)
    at java.awt.Component.processEvent(Component.java:5257)
    at java.awt.Container.processEvent(Container.java:1966)
    at java.awt.Component.dispatchEventImpl(Component.java:3955)
    at java.awt.Container.dispatchEventImpl(Container.java:2024)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3909)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
    at java.awt.Container.dispatchEventImpl(Container.java:2010)
    at java.awt.Component.dispatchEvent(Component.java:3803)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

  • Need infn about bussiness Graphics UI Element in Webdyn Pro

    hi Experts,
    I am using Bussiness Graphics UI Element in Webdyn Pro
    chart type is Lines
    this graph is to show utilization of asse for some period say 1 month
    there will be 2 data series Utilization and Unutilization
    when i place curser near point uwe see in points in line chart i should show value for that node
    ex:
    utilization% for machine 1 is 30% on day1
    when i place curser on that point it should give me utilization%(ex30)
    how can i achieve this
    pls suggest me its urgent i have to finish it by monday
    is there any coding pls send me
    or any property we have to set in chart design
    which property
    thanks

    Hi,
    Check the following links,there are some materials....
    http://help.sap.com/saphelp_nw70/helpdata/en/ed/258841a79f1609e10000000a155106/frameset.htm
    Workout below Application,
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/wd%20tutorials/using%20business%20graphics.pdf">Using Bussiness Graphics</a>

  • Error in  Creation of Service Name for Bussiness Service

    Hi Friends
    I am creating customized Service Program for Bussiness Service which is used for uploading spotbilling data to ccb . The service program CM_Sbm_Upload consists of program com ids CIPBSEGP,CIPMMRDP,CIPTSATP . when i give this to bussiness service i am getting error
    Service metainfo missing for 'CM_SBM_UPLOAD'
    pls help me to resolve this issue.
    Thanks&Regards
    sivaram

    Hi,
    I've got the same error during my development of a page maintenance service.
    Please check if the cm.jar is correctly deployed in your splservice.ear and check also all other deployment directories.
    You can find them in the Output window of eclipse after execution of the "Deploy CM" script.
    When the cm.jar is deployed well, check if you annotations are correct.
    My annotations are looking like this:
    * Perform Batch Add.
    * @PageMaintenance (secured = false, service = CMIMDIMP,
    *      body = @DataElement (contents = { @DataField (name = CM_SIMULATION)
    *                  , @DataField (name = XML_REQUEST)}),
    *      actions = { "change"
    *            , "read"},
    *      modules = { "foundation"})
    */To connect a Page Maintenance Service, you must first create a service programm and the "service name" of the service program must match to
    the name of the service annotation that you have specified on your Page Maintenance Service, in my case "CMIMDIMP".
    There is no validation during the saving of the service programm, the validation happens when you save the Business Service.
    BTW. you can use jd-gui.exe to decompile the cm.jar file but you will not see the annotations !
    For viewing the ear file I'm using 7-zip.

  • I've got a MacBook pro 15' running 10.6.6. I want to use an external monitor for my graphic design work running Adobe software and thought I'd try an HD TV. I ran a Mini Display to HDMI lead to the TV but the picture quality was disappointing.

    I've got a MacBook Pro 15' running 10.6.6. I want to use an external monitor for my graphic design work using Adobe software and thought I'd try an HD TV. I ran a Mini Display to HDMI lead to the TV but the picture quality was disappointing. I also tried a Mini Display to VGA lead and that wasn't much better. I tried all variations of resolutions in System prefs - Displays but nothing helped. Am I getting something wrong? Thanks all.

    In addition to pixel density, you are up against the translation driver card in the TV.
    If you read the fine print of computer-resolution-capability in the TV user guide, you will see a chart as tall as the manual page.  At the top is the smallest resolution capable, at the bottom is the full use of the 1080p in the TV.
    Mac falls into the top 25% of the page, maxing out at 1366x768 often.  This is because the TV control card is expected to do too much of the work, but is not designed for computer-monitor processing.
    I looked at the resolution charts on 2 TVs before deciding to buy a 1080p LCD monitor that has a TV interface/connector.  Computer monitor first, TV second.  But the thing is only 27 in.  Good thing TV is not as important to me as it is to others.

  • How to assign a tooltip for a field in ALV editable grid?

    I have to display some instructions ( 50 chars long) for an editable field in alv.
    How to do this?
    BCALV_DEMO_TOOLTIP tells about assiging tooltip to an icon or symbol.
    Thanks,
    Ven..

    Neither of these two example programs help much in regards to tooltips against any field of any row. Both of these examples use tooltips for Icons. I have also been looking for a single example of tooltips usage outside of these two programs, and have found nothing in SAP, or on the internet, so far.
    Having said that, I have tried to implement the same method used by the later example, but have not got this to work. What I think we need is an example of this functionality where these Icons are not used!. I believe.
    Gary King

  • Jquery tooltip for sharepoint 2013 list (newform.aspx)

    I am looking for a simple solution/jquery tooltip for SharePoint list form fields.
    Something like below , but this one displays static text for each column and want tooltip text for each of my list column
    <script type="text/javascript" language="javascript" src="/wz_tooltip.js"></script><o:p></o:p>
    <a href="#" onmouseover="Tip('(This is test tooltip )');" onmouseout="UnTip();">
    Thanks in advance!
    <o:p></o:p>
    Amrita Talreja

    When you assign "Description" for every field in sharepoint list.SharePoint by default show this desc in a span just below the field control , like this.
    <span class="ms-metadata">This is simple desc</span>
    What you can try in jquery/javascript is to -
    - Search for this span [class="ms-metadata"] in your form table (table[class="ms-formtable"])
    - save its text() in a variable - var txtDesc = $("span selector").text();
    - Hide this span -$("span selector").hide()
    - Now you have dynamic desc message , you can add this as an "Title" attribute to your field control (textbox and other control)
    - $("your field control selector").attr("Title", txtDesc );
    Or can add a hyperlink for this -
    <a href="#" onmouseover="Tip('"+ txtDesc +"');" onmouseout="UnTip();">
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Is there a way to have tooltips for every column in a TableView?

    Hi there!
    I found in documentation that any node and control can show a tooltip ( http://docs.oracle.com/javafx/2/api/javafx/scene/control/Tooltip.html ) but I can't get tooltips to work for TableColumn (a column from TableView).
    Do you have any idea how could I have tooltips for each column of the table view?

    TableColumn's are neither controls nor nodes, so you can neither set nor install tooltips on them.
    You can use cellfactories to set tooltips on cells generated from the factories.
    You can use css style lookups (node.lookup function) to get access to table nodes (such as the headers) after the tableview has been displayed on a stage and then manipulate the displayed nodes to add tooltips. It's not a great approach, but it is the only approach I know at the moment that would work.

  • How to implement tooltip for the list items for the particular column in sharepoint 2013

    Hi,
    I had created a list, How to implement tooltip for the list items for the particular column in SharePoint 2013.
    Any help will be appreciated

    We can use JavaScript or JQuery to show the tooltips. Refer to the following similar thread.
    http://social.technet.microsoft.com/forums/en/sharepointdevelopmentprevious/thread/1dac3ae0-c9ce-419d-b6dd-08dd48284324
    http://stackoverflow.com/questions/3366515/small-description-window-on-mouse-hover-on-hyperlink
    http://spjsblog.com/2012/02/12/list-view-preview-item-on-hover-sharepoint-2010/

  • IMac for a Graphic Designer?

    I am currently shopping for a new iMac system for my Graphic Design needs and would like to get feed back form the community on a few topics. I am thinking about getting the 21.5 iMac with 8GB's of ram.
    Would this be enough to handle Photoshop, Illustrator, and Cinema 4D softwares? I am going to get a external hard drive to store my files on to save hard drive space, any recommendations for that?
    Is there an option to upgrade the ram in the 21.5 iMac to say 32 GB's (as I heard you could)? I am currently using a mid-2010 MacBook Pro with 4GB of ram and it's beginning to lag a bit. The screen size isn't really that great either being it's only 15 inches.
    So any recommendations would be greatly appreciated.
    - KidHTML

    As you have a specific and well-defined need I would work backwards:
    Determine what software applications you will need, then figure out which model and configuration of iMac can handle them in the best possible/fastest way, particularly if you have them all open at once.
    Also, depending on what kind of graphics you deal with, decide what screen size you really need.
    Then talk to your bank!

  • WebGL Renderer & GPU Accelerated Windows Blocked for your Graphics because of unresolved driver issues

    I am using Windows XP SP 2. My mother board is ASUS F1A55-MLX Plus, Processor: AMD A4-3400 APU with Radeon HD Graphics 2.70 GHz, 2GB DDR3 DIMM 1333 MHz RAM and 500 GB SATA HDD. I am using FF version 8. However, on some websites I cannot see the whole page on my 15" CRT Samsung color monitor. For the fact the slider at the bottom of the web page is not visible to move further left or right.
    At '''Trouble Shooting Information''' the contents are detailed below:
    Application Basics
    Name
    Firefox
    Version
    8.0
    User Agent
    Mozilla/5.0 (Windows NT 5.1; rv:8.0) Gecko/20100101 Firefox/8.0
    Profile Directory
    Open Containing Folder
    Enabled Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Crash Reports
    about:crashes
    Extensions
    Name
    Version
    Enabled
    ID
    Modified Preferences
    Name
    Value
    browser.places.smartBookmarksVersion
    2
    browser.startup.homepage_override.buildID
    20111104165243
    browser.startup.homepage_override.mstone
    rv:8.0
    browser.tabs.warnOnClose
    false
    extensions.lastAppVersion
    8.0
    gfx.blacklist.direct2d
    3
    gfx.blacklist.layers.direct3d10
    3
    gfx.blacklist.layers.direct3d10-1
    3
    gfx.blacklist.layers.direct3d9
    3
    gfx.blacklist.layers.opengl
    3
    gfx.blacklist.webgl.angle
    3
    gfx.blacklist.webgl.opengl
    3
    network.cookie.lifetimePolicy
    2
    network.cookie.prefsMigrated
    true
    places.database.lastMaintenance
    1327382612
    places.history.expiration.transient_current_max_pages
    47671
    privacy.donottrackheader.enabled
    true
    privacy.sanitize.migrateFx3Prefs
    true
    privacy.sanitize.sanitizeOnShutdown
    true
    Graphics
    Adapter RAM
    Unknown
    Adapter Drivers
    vga framebuf vga256 vga64k
    Adapter RAM (GPU #2)
    Unknown
    Adapter Drivers (GPU #2)
    Unknown
    WebGL Renderer
    Blocked for your graphics card because of unresolved driver issues.
    GPU Accelerated Windows
    0/1. Blocked for your graphics card because of unresolved driver issues.
    '''Enabled Plugins'''
    Shockwave Flash
    File: NPSWF32.dll
    Version: 11.1.102.55
    Shockwave Flash 11.1 r102
    MIME Type Description Suffixes
    application/x-shockwave-flash Adobe Flash movie swf
    application/futuresplash FutureSplash movie spl
    Shockwave for Director
    File: np32dsw.dll
    Version: 11.6.3.633
    Adobe Shockwave for Director Netscape plug-in, version 11.6.3.633
    MIME Type Description Suffixes
    application/x-director Shockwave Movie dir,dxr,dcr
    Windows Media Player Plug-in Dynamic Link Library
    File: npdsplay.dll
    Version: 3.0.2.629
    Npdsplay dll
    MIME Type Description Suffixes
    application/asx Media Files *
    video/x-ms-asf-plugin Media Files *
    application/x-mplayer2 Media Files *
    video/x-ms-asf Media Files asf,asx,*
    video/x-ms-wm Media Files wm,*
    audio/x-ms-wma Media Files wma,*
    audio/x-ms-wax Media Files wax,*
    video/x-ms-wmv Media Files wmv,*
    video/x-ms-wvx Media Files wvx,*
    Microsoft® DRM
    File: npdrmv2.dll
    Version: 9.0.0.3250
    DRM Netscape Network Object
    MIME Type Description Suffixes
    application/x-drm-v2 Network Interface Plugin nip
    Microsoft® DRM
    File: npwmsdrm.dll
    Version: 9.0.0.3250
    DRM Store Netscape Plugin
    MIME Type Description Suffixes
    application/x-drm Network Interface Plugin nip
    '''about:buildconfig'''
    Source
    Built from http://hg.mozilla.org/releases/mozilla-release/rev/d03b51a9b2bd
    Build platform
    target
    i686-pc-mingw32
    Build tools
    Compiler Version Compiler flags
    d;D:\mozilla-build\msys\mozilla-build\python25\python2.5.exe -O e;D:\mozilla-build\msys\builds\moz2_slave\rel-m-rel-w32-bld\build\build\cl.py cl 14.00.50727.762 -TC -nologo -W3 -Gy -Fdgenerated.pdb -we4553 -DNDEBUG -DTRIMMED -Zi -Zi -UDEBUG -DNDEBUG -GL -wd4624 -wd4952 -O1
    d;D:\mozilla-build\msys\mozilla-build\python25\python2.5.exe -O e;D:\mozilla-build\msys\builds\moz2_slave\rel-m-rel-w32-bld\build\build\cl.py cl 14.00.50727.762 -TP -nologo -W3 -Gy -Fdgenerated.pdb -wd4800 -we4553 -DNDEBUG -DTRIMMED -Zi -Zi -UDEBUG -DNDEBUG -GL -wd4624 -wd4952 -O1
    Configure arguments
    --enable-application=browser --enable-update-channel=release --enable-update-packaging --enable-jemalloc --enable-tests --enable-official-branding

    @mha007. I was able to update to version 10.0.1 via Help > About Firefox. Like John99 says it was updated a couple of days ago. However, the problem of WebGL and GPU still remains. I have asked my system supplier to check the same.
    @zerofire. I have always built my computer and 'am a great fan of AMD. I hate Intel's blue Death Signs. We here in India do not like anything automated on our PC other than antivirus and antimalware along with pre-scheduled running of CCleaner and Defraggler. Once in a while I run CCleaner's Registry Cleaner. Even Windows Security Alerts are turned off. Windows XP and SP2 for PC and Windows 2000 for server are the most used. Not interested in SP3 or Vista as the transcription work I do requires me to just have XP or SP2. May later add on Windows 7 via dual booting.

  • Problem with setting tooltips for items of a JCombobox

    hi guys,
    I want to set tooltips for items of JComboBox & the code that i have written is given below , but the tooltip text is set for all the items of Nonitindustrycombo but the tooltips remain the same even for Nonitdesgcombo's items.
    Is that we need to refresh the ComboboxRenderer every time ?
    I am not able to trace out the exact reason for this,please if anyone can suggest me something regarding this would be of great use to me.
    class Searchpanel extends JPanel {
    String[] str = null;
    public SearchPanel(){
    Nonitindustrycombo.addItem("--Select--");
    ArrayList NonITindus = ERPModel.getAllNonitIndustry(); //gets all the items(strings) for Nonitindustrycombo
    for (Iterator iter = NonITindus.iterator(); iter.hasNext();) {
    String str = iter.next().toString();
    Nonitindustrycombo.addItem(str);
    SetTooltip(Nonitindustrycombo,NonITindus);
    Nonitdesgcombo.addItem("--Select---");
    ArrayList desg = ERPModel.getAllNonitDesg(); //gets all the items(strings) for Nonitdesgcombo
    for (Iterator iter = desg.iterator(); iter.hasNext();) {
    Nonitdesgcombo.addItem(iter.next());
    SetTooltip(Nonitdesgcombo,desg);
    class MyComboBoxRenderer extends BasicComboBoxRenderer
    public Component getListCellRendererComponent(JList list, Object value,
    int index, boolean isSelected,
    boolean cellHasFocus)
    if (isSelected)
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    if (0 < (index))
    list.setToolTipText(str[index - 1]);
    else
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    setFont(list.getFont());
    setText((value == null) ? "" : value.toString());
    return this;
    private void SetTooltip(JComboBox combo,ArrayList arr){
    str = (String []) arr.toArray (new String [arr.size ()]);
    combo.setRenderer(new MyComboBoxRenderer());
    public static void main(String[] args){
    new SearchPanel();
    Thanks ,
    vishal

    1) You where given a working example in your last posting on this topic. Compare your code with the working code to see whats different and fix it.
    2) The code you posted doesn't compile.
    3) You didn't use the "Code Formatting Tags" when you posted your code so it not readable.

  • Drivers for switchable graphics (intel-amd​)

    Hi i have A HP pavilion G6 1250sb and when i go in my BIOS, i don't see an option for Switchable graphic adapters, because i want to set it to fixed. can anyone give me the right BIOS that has that ability? Thanks

    Hello @Nielsdg,
    I have read your post on how you are looking for a fixed option for your graphics adapter on your notebook. I would be happy to help you, but first I would encourage you to post which operating system you are using; and whether your operating system is 32 or 64 bit. The more information you can provide, the better!
    Which Windows operating system am I running?
    Is the Windows Version on My Computer 32-bit or 64-bit? 
    Please re-post with the necessary information, this way I will be able to research this further for you. I look forward to your reply!
    Cheers!
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

Maybe you are looking for