Dynamic Values in Business Graphics Tool Tip

hi,
I am using business graphics ui element in my webdynpro application.I am able to get the graghical output correctly.I want to have tool tip in my graph so when I place the cursor on a point, the tool tip should give the corresponding value.I have used the following code
try
     String[] catLabels = {
                    "Team 1", "\1Tomoko Akino", "\1Hans Bosch", "\1Marvin Smith",
                    "Team 2", "\1Jose Vega", "\1Bao Yin", "Out of office" };
        String[][] pointCustomizing = {
                    { "approved", "cancelled", "approvedPartTime" },
                    { "approved" },
                    { "approved" },
                    { "sent", "approvedPartTime", "notsentPartTime", "notsent"},
                    { "approved", "zSeveralEntries", "zSeveralEntries",
                      "zSeveralEntries", "zSeveralEntries", "zSeveralEntries",
                      "zSeveralEntries" },
                    { "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice" }
        String[][] pointLabels = {
                    { "1", "2", "2", "2", "4", "3", "3", "3", "1", "1", "2", "1",
                      "2", "1", "1" }
        String[][][] timeValues = {
                    { { "20020528", "20020606" }, { "20020606", "20020608" },
                      { "20020610", "20020611" } },
                    { { "20020531", "20020606" } },
                    { { "20020607", "20020613" } },
                    { { "20020527", "20020601" }, { "20020606", "20020607" },
                      { "20020612", "20020613" }, { "20020617", "20020619"} },
                    { { "20020531", "20020606" }, { "20020531", "20020601" },
                      { "20020601", "20020602" }, { "20020602", "20020603" },
                      { "20020603", "20020604" }, { "20020604", "20020605" },
                      { "20020605", "20020606" } },
                    { { "20020527", "20020528" }, { "20020528", "20020529" },
                      { "20020529", "20020530" }, { "20020530", "20020531" },
                      { "20020531", "20020601" }, { "20020603", "20020604" },
                      { "20020604", "20020605" }, { "20020605", "20020606" },
                      { "20020606", "20020607" }, { "20020607", "20020608" },
                      { "20020610", "20020611" }, { "20020611", "20020612" },
                      { "20020612", "20020613" }, { "20020617", "20020618" },
                      { "20020618", "20020619" }}
        String s[]={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","a1","a2","a3","a4","a5","a6","a7","a8","a9","a10","a11","a12","a13","a14",};
        IPrivateSBusinessGraphicsSampleView.ICategoryNode catNode = wdContext.nodeCategory();
        for (int catIndex = 0; catIndex < catLabels.length; ++catIndex)
           IPrivateSBusinessGraphicsSampleView.ICategoryElement  catElement = catNode.createCategoryElement();
           catNode.addElement(catElement);
           catElement.setDescription(catLabels[catIndex]);
        // loop over series
        IPrivateSBusinessGraphicsSampleView.ISeriesNode seriesNode = wdContext.nodeSeries();
        for (int seriesIndex = 0; seriesIndex < timeValues.length; ++seriesIndex)
           IPrivateSBusinessGraphicsSampleView.ISeriesElement seriesElement = seriesNode.createSeriesElement();
           seriesNode.addElement(seriesElement);
           // set series attributes (...)
           IPrivateSBusinessGraphicsSampleView.IPointNode pointNode = seriesElement.nodePoint();
           // loop over points
           for (int pointIndex = 0; pointIndex < timeValues[seriesIndex].length; ++pointIndex)
             IPrivateSBusinessGraphicsSampleView.IPointElement
                       pointElement = pointNode.createPointElement();
             pointNode.addElement(pointElement); 
             String ename = s[pointIndex];
             wdComponentAPI.getMessageManager().reportSuccess("name:"+ename);
             pointElement.setStartValue(timeValues[seriesIndex][pointIndex][0]);
             pointElement.setEndValue(timeValues[seriesIndex][pointIndex][1]);
             pointElement.setCuId(pointCustomizing[seriesIndex][pointIndex]);
             pointElement.setLabel(pointLabels[seriesIndex][pointIndex]);    
             pointElement.setToolTip(ename );
     catch(Exception e)
             wdComponentAPI.getMessageManager().reportSuccess("exc2:"+e);
By the above code ,I am getting the tool tip with the value "a" in all locations.
But I need to have different values in the tooltip corresponding to the location.
Please Help....
Thanks in advance,
Shamila

hi,
Still  I did not get the dynamic tool tip..........
In wdDoInit() I have written the following code
try
     String[] catLabels = { "Team 1", "\1Tomoko Akino", "\1Hans Bosch", "\1Marvin Smith",
               "Team 2", "\1Jose Vega", "\1Bao Yin", "Out of office" };
        String[][] pointCustomizing = {
                    { "approved", "cancelled", "approvedPartTime" },
                    { "approved" },
                    { "approved" },
                    { "sent", "approvedPartTime", "notsentPartTime", "notsent"},
                    { "approved", "zSeveralEntries", "zSeveralEntries",
                      "zSeveralEntries", "zSeveralEntries", "zSeveralEntries",
                      "zSeveralEntries" },
                    { "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice", "outOfOffice",
                      "outOfOffice", "outOfOffice", "outOfOffice" }  };
                String[][] pointLabels = {{ " ", " ", " " },{ " " },{ " " },{ " ", " ", " ", " "},{ " ", " ", " ", " ", " ", " ", " " },
                              { "1", "2", "2", "2", "4", "3", "3", "3", "1", "1", "2", "1", "2", "1", "1" } };
              String[][][] timeValues = {{        { "20020528", "20020606" },
                      { "20020606", "20020608" },
                      { "20020610", "20020611" } },
                    {  { "20020531", "20020606" } },
                    {   { "20020607", "20020613" }  },
                    {   { "20020527", "20020601" },
                      { "20020606", "20020607" },
                      { "20020612", "20020613" },
                      { "20020617", "20020619"} },
                    { { "20020531", "20020606" }, { "20020531", "20020601" },
                      { "20020601", "20020602" }, { "20020602", "20020603" },
                      { "20020603", "20020604" }, { "20020604", "20020605" },
                      { "20020605", "20020606" } },
                    { { "20020527", "20020528" }, { "20020528", "20020529" },
                      { "20020529", "20020530" }, { "20020530", "20020531" },
                      { "20020531", "20020601" }, { "20020603", "20020604" },
                      { "20020604", "20020605" }, { "20020605", "20020606" },
                      { "20020606", "20020607" }, { "20020607", "20020608" },
                      { "20020610", "20020611" }, { "20020611", "20020612" },
                      { "20020612", "20020613" }, { "20020617", "20020618" },
                      { "20020618", "20020619" }}  };
        String s[]={"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","a1","a2","a3","a4","a5","a6","a7","a8","a9","a10","a11","a12","a13","a14",};
        IPrivateSBusinessGraphicsSampleView.ICategoryNode catNode = wdContext.nodeCategory();
        IPrivateSBusinessGraphicsSampleView.ICategoryElement  catElement;
        for (int catIndex = 0; catIndex < catLabels.length; ++catIndex)
            catElement = catNode.createCategoryElement();
           catNode.addElement(catElement);
           catElement.setDescription(catLabels[catIndex]);
         // loop over series
        IPrivateSBusinessGraphicsSampleView.ISeriesNode seriesNode = wdContext.nodeSeries();
        for (int seriesIndex = 0; seriesIndex < timeValues.length; ++seriesIndex)
           IPrivateSBusinessGraphicsSampleView.ISeriesElement seriesElement = seriesNode.createSeriesElement();
           seriesNode.addElement(seriesElement);
           // set series attributes (...)
           IPrivateSBusinessGraphicsSampleView.IPointNode pointNode = seriesElement.nodePoint();
           IPrivateSBusinessGraphicsSampleView.IPointElement  pointElement;
           // loop over points
           for (int pointIndex = 0; pointIndex < timeValues[seriesIndex].length; pointIndex++)
             //IPrivateSBusinessGraphicsSampleView.IPointElement
             pointElement = pointNode.createPointElement();
             pointNode.addElement(pointElement); 
             String ename = s[pointIndex];
              wdComponentAPI.getMessageManager().reportSuccess("name:"+ename);
             pointElement.setStartValue(timeValues[seriesIndex][pointIndex][0]);
             pointElement.setEndValue(timeValues[seriesIndex][pointIndex][1]);
             pointElement.setCuId(pointCustomizing[seriesIndex][pointIndex]);
             pointElement.setLabel(pointLabels[seriesIndex][pointIndex]);    
              pointElement.setToolTip(ename );
catch(Exception e){        wdComponentAPI.getMessageManager().reportSuccess("exc2:"+e);    }
In wdDoModifyView() I have written the following code
try
     IWDBusinessGraphics graph = (IWDBusinessGraphics)view.getElement("BusinessGraphics");
     IWDAbstractSeries allSeries[] = graph.getSeriesList();
     IWDSimpleSeries series;
     wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess("length : "+allSeries.length+" value:"+allSeries[0]);
     for(int j=0;j<allSeries.length;j++)
       series = (IWDSimpleSeries)allSeries[j];
      for(int i=0;j<wdContext.nodeSeries().size();i++)
          wdContext.nodeSeries().setLeadSelection(i);
          series.setTooltip(series.getValue());
  catch(Exception e)
     wdThis.wdGetAPI().getComponent().getMessageManager().reportSuccess("exc modify :"+e);
The node structure is
Root Node
>Category>Description
>Series>Point-->CuId
>Series>Point-->endvalue
>Series>Point -->Startvalue
>Series>Point -->label
>Series>Point --->Tooltip
In BusinessGraphis seriesSource-Series node ,tooltip-Series.Point.ToolTip is mapped
In Category description-Category.Description is mapped
In Series pointsource-Series.Point, tooltip-series.point.tooltip is mapped
In Point CustomisingId-eries.point.cuId.label-Series.label, tooltip-series.point.Tooltip,valuesource -series.point is mapped
In Numericvalue value-series.point.startvalue is mapped
In Numericvalue value-series.point.endvalue is mapped
When I deploy my application I am getting <b>java.lang.ClassCastException</b> Exception at the line  <b>series = (IWDSimpleSeries)allSeries[j];</b>
What is reaseon?.....
Please help..............
I want to get dynamic value in the tool tip of the graph.
Thanks in advance,
Shamila,

Similar Messages

  • JSlider + Display value in a text tool tip box

    Hello,
    I am new to Java. I want to display the value in a text tool tip box of the JSlider as the user moves the knob . Is there any way to achieve this.
    I tried setting up the value of text tool tip in the stateChanged method. But that didn't helped
    Ritesh

    Finally Got it working. Below I am attaching the code for reference
    Thanks for your code. It came very handy
    The only problem is that toolTextTip is appearing on one side rather than below the cursor.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class EventTest
    public static void main(String[] args)
    JFrame f = new JFrame();
    System.out.println("starting application");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(new setSlider(),"North");
    JSlider slide = new JSlider();
    slide.setToolTipText("Hello");
    f.getContentPane().add(slide,"South");
    f.setSize(400,400);
    f.setLocation(200,200);
    f.setVisible(true);
    class setSlider extends JSlider implements ChangeListener, MouseMotionListener{
    public setSlider(){
    setToolTipText("hello " + new Integer(getValue()).toString());
    this.setMaximum(10);
    this.setMinimum(0);
    this.setValue(2);
    this.setMajorTickSpacing(2);
    this.setMinorTickSpacing(1);
    this.setPaintTicks(true);
    this.setPaintLabels(false);
    this.addMouseMotionListener(this);
    this.addChangeListener(this);
    public void stateChanged(ChangeEvent e) {
    setToolTipText(new Integer(getValue()).toString());
    System.out.println(this.getToolTipText());
    KeyStroke controlF1 = KeyStroke.getKeyStroke("control F1");
    ActionListener toolTipAction = getActionForKeyStroke( controlF1 );     
    if (toolTipAction != null)     {          
    ActionEvent postTip = new ActionEvent(this, ActionEvent.ACTION_PERFORMED, "");
    toolTipAction.actionPerformed( postTip );
    public void mouseDragged(MouseEvent e){
    System.out.println("here");
    setToolTipText(new Integer(getValue()).toString());
    System.out.println(this.getToolTipText());
    KeyStroke controlF1 = KeyStroke.getKeyStroke("control F1");
    ActionListener toolTipAction = getActionForKeyStroke( controlF1 );     
    if (toolTipAction != null)     {          
    ActionEvent postTip = new ActionEvent(this, ActionEvent.ACTION_PERFORMED, "");
    toolTipAction.actionPerformed( postTip );
    public void mouseMoved(MouseEvent e){

  • Dynamic creation of business graphics.

    Hi,
    i have a piece of code which dynamically create a business graphics. If i use the same node data and create BG in statically.. i am able to view the graph. In case of dynamic creation , i am getting graphical rendering error. Have i missed something here..
    The piece of code i had used is..
         IWDBusinessGraphics bg = (IWDBusinessGraphics)view.createElement(IWDBusinessGraphics.class,null);
              IWDCategory c = (IWDCategory)view.createElement(IWDCategory.class,null);
         //     c.setDescription("tableutility");      
              c.bindDescription(wdContext.getNodeInfo().getAttribute(IPrivateSDNUtilityView.IContextElement.TEST));                                                                               
    bg.setCategory(c);
              bg.setDimension(WDBusinessGraphicsDimension.PSEUDO_THREE);
              IWDSimpleSeries ss = (IWDSimpleSeries)view.createElement(IWDSimpleSeries.class,null);
              ss.bindValue(wdContext.nodeDepartments().getNodeInfo().getAttribute(IPrivateSDNUtilityView.IDepartmentsElement.NO_OF_PEOPLE));
              ss.setLabel("Simple Series");
              ss.setLabel("No of People");
              bg.addSeries(ss);
              bg.setChartType(WDBusinessGraphicsType.COLUMNS);
              bg.bindSeriesSource(wdContext.nodeDepartments().getNodeInfo());
              bg.setIgsUrl("http://<hostname>:40080");
    Please help.
    Regards
    Bharathwaj

    Please got through following link
    <a href="/people/sap.user72/blog/2006/05/04/enhancing-tables-in-webdynpro-java-150-custom-built-table-utilities:///people/sap.user72/blog/2006/05/04/enhancing-tables-in-webdynpro-java-150-custom-built-table-utilities

  • Dynamic title in Business Graphics

    Hi to all!
    I'm working with a Business Graphics and I'd like a title in the final rendered graphic. The problem is that the text I want to show is not static, it's the name of the person who is using the application.
    The question is: Can I bind the title of the graphic to a context attribute? or is it possible to pass parameters to the graphic?
    Thanks a lot.

    Hi,
    We have achieved this thru....
    1. If you navigate to src folder of your project... src\<package structure>...
    in that there will be a file <viewname>.wdview file. Where <viewname> referes to the name of the view in which business graphics UI element is used.
    2. Open that file with notepad, and you can see the structure of BusinessGrpahics UI element specified in xml format. In that copy what ever between <BusinessGraphics.CustomizingXML>...</BusinessGraphics.CustomizingXML> including these tags also.
    3. In the wdModifyView method of view name obtain the Business Graphics UI element and set the Direct Customizing to the above copied xml(as a string)
    String customXML = "<BusinessGraphics.CustomizingXML>....</BusinessGraphics.CustomizingXML>";
    IWDBusinessGraphics bg = (IWDBusinessGraphics)view.getElement("<business graphics UI element ID>");
    bg.setDirectCustomizing(customXML);
    4. In that xml string, the value under <Elements> .. <ChartElements> .. <Title> .. <caption> points to the title. you can replace that with your dynamic value.
    -Aarthi

  • Business Graphics Tool - Series

    Hello All,
    I have developed a Graph using the Business Graphics charting tool. The application is a Web Dynpro application.
    My graph has to display two lines (or range of values). In order to do that, I have created two Data Series, to which I pass values at run time. The Graph is appearing correctly.
    How ever some of the values in both the series are the same. Hence the two lines criss-cross each other. At this point the values displayed on the graph becomes jumbled up.
    I also saw an option for creating 'Series' objects. Here we can set whether the labels should appear on the left side of the line, its format etc. etc. But I am not finding a way to interlink the Series object, with the Data Series object. The setting would be like:-
    Data Series 1 would be using Series Object 1 (in which the value labels would appear on the left side of the line)
    Data Series 2 would be using Series Object 2 (in which the value labels would appear on the right side of the line)
    Any help is appreciated. TIA
    PKS.

    Hi,
    the connection between your customizing settings and the data is done using a customizing ID, i.e. tell WD the ID of each series and use exactly the same ID in the chart designer when creating the customizing settings (please note that you can easily rename the default names as desired).
    Regards, Kai

  • Dynamic Tool Tip Options

    Hi All,
    Could any body tell , different types of dynamic tool tips are possible in OAF.
    Regards,
    Raghava

    Hi Raghava,
    You can use this code :
    vorow.setAttribute("ToolTip","Your Message");
    OATableBean tableBean=(OATableBean)webBean.findChildRecursive("VO Name");
    OAImageBean c1 = (OAImageBean)tableBean.findChildRecursive("Value for which this tooltip should display");
    OADataBoundValueViewObject tip = new OADataBoundValueViewObject(c1,"ToolTip");
    c1.setAttributeValue(oracle.cabo.ui.UIConstants.SHORT_DESC_ATTR, tip);
    Hope this may help.
    Edited by: 869351 on Jan 18, 2012 1:50 AM

  • Tool Tip Text for field values in ALV report

    Hi,
    How to get the tool tip text for the field values in ALV report.
    Thanks & Regards,
    Pallavi.

    Hi,
    In fieldcatalog specify the TOOLTIP.
    <b>
    LVC_S_FCAT-TOOLTIP
    </b>
    In this speicfyteh tooltip you want.
    Then append this to the fieldcatalog.
    Hope this solves ur problem.

  • Dynamic Tool TIP in Table Control

    Dear Friends,
    Thanks in Advance.
    How to implement Dynamic Tool TIP in the Table Control for Particularly One Columnn.
    i.e rows in that Column.
    Note : Column contains Currency Type Data
    For that column, i am calculating the Quantity Multiplied with the Exchange Rate.
    That Calculation should be visible in the Tool TIP.
    Regards:
    Sridhar.J

    Hi
    Take Text Element Radio button there  and give any number and activate.
    If the Visible lenght of the Table Control Field is less than actual length of the Content, it automatically displays the Tool Tip.
    I just did it.
    Hope this serves your purpose.
    Get it fram Sam
    "  Hey Sreedhar, Let us know how can we do it , it will be helpful.
    Cheers
    Ram
    Edited by: Ramchander Krishnamraju on Jan 2, 2010 4:06 AM

  • Showing dynamic text on tool tip

    Hi Gurus,
    I have the following requirements :
    In our system we have to show the Hijri dates for the corresponding Gregorian Date in Standard Oralce Self Service Forms on Mouse Over of that text as tool tip or by some other means.
    Can anyone suggest solution for this.
    In custom table we have stored Hirji and corresponding Gregorian dates.
    I can create a view object which can query the Hijri date from the database for the Gregorian date.
    Problem is how to display this Hijri date as Tool tip .
    Thanks
    Suresh

    import oracle.apps.fnd.framework.webui.OADataBoundValueViewObject;
    //Code to display Dynamic ToolTip on Column
    OAAdvancedTableBean TableBean=(OAAdvancedTableBean)webBean.findChildRecursive("TableName");
    TableBean.prepareForRendering(pageContext);
    OAMessageStyledTextBean ItemName=(OAMessageStyledTextBean)TableBean.findChildRecursive("ItemId);
    OADataBoundValueViewObject ExpTip = new OADataBoundValueViewObject(ItemName, "VoAttribute");
    ExpType.setAttributeValue(oracle.cabo.ui.UIConstants.SHORT_DESC_ATTR, ExpTip);
    Thanks
    Babu

  • Dynamic Tool tip text/Quick Info

    Is it possible to have dynamic tool tip text when you hover over an icon on a report?  I know you can change the function key text but these icons are present on the report itself.
    Any ideas?!

    Check if you have the QUICKINFO option for the WRITE statement for your release.

  • Create a dynamic tool tip

    Hi All,
    I am working in an application where I am using the treeview widget. My requirement is to add a dynamic tool tip to the tree nodes. I read in a forum that I have to look into IID_ITIP. But I am still not clear as to how will I create a tool tip and associate the same to the node widget in the treeview. Any help or clues would be appreciated.
    Thanks in Advance
    JRS.

    Hi All,
    I am still not be to get this done. Could anyone guide me or refer some sample code existing?
    Thanks,
    JRS.

  • Dynamic Tooltip Text over Business Graphics

    Hello,
    I would like to know if there is a possibility to display dynamically point coordinates (or other tooltip text) in a Business Graphics when the mouse is going over the gragh or when clicking ?
    Thanks a lot
    Marc

    Hello Marc,
    WebDynpro Point, Series and SimpleSeries elements have a tooltip property that you can define whether in design time or runtime.
    Please see the details here http://help.sap.com/saphelp_nw04/helpdata/en/dd/65d79bb3b2e34e8b68f59129e7d811/frameset.htm
    Best regards,
    Dmitry

  • Business Graphics : Display values for simple series ?

    Hi ,
    I have a some 5 simple series per category.. I am using a column chart . I would like to display the numerical values on top of each of the columns, ? How can i do it ?
    And is there any proper documentation on Business Graphics UI element other than the help.sap and weblogs on the sametopic ?
    Thanks and Regards
    Bharathwaj

    Hi ,
    Thanks for the answer.. By trial and error I had figured out the values.. but am stuck in another problem..
    I have two points created in the chart designer.. each one has its own color.. Now am using this to change the color of a single series .. depending on some value.. point 1 or point 2 will be selected..
    In this scenario ,my legend still shows me the old ones i.e just an yellow icon..
    If i add more info and captions.. for points.. I get .. the proper legend.. But the default legend set also exists. Any ideas on how to remove this .. or
    to display the proper legend in some other way..
    Thanks and Regards
    Bharathwaj..

  • Business Graphics negative values

    Hi All,
    I'm using business graphics graph. I bind a node with data to the category and to the series (the same node).
    The problem starts if the series has negative values - instead of showing them as is on the graph it shows their absolute values and the graph is displayed incorrectly.
    Is there any way to rectify this behavior?
    Aviad

    Hi Maksim Rashchynski,
    Model Node --> History_Periods
        Model Attribute --> MonthYear (String)
        Model Attribute --> Quantity  (decimal)
    The business graphics I am using is the graph with the attribute 'MonthYear' bound to a category and the attribute 'Quantity' bound to a SimpleSeries.
    Thanks,
    Aviad

  • Business Graphics- tooltip with series values

    Hi all,
    I'm using the Business Graphics UI element.
    I have a simple series and I want to show the series' values in the tooltip of the series.
    However, the tooltip property is not bindable for simple series.
    I tried using Series (not simple series), the tooltip works but I get multiple values for each category.
    See attached snapshot (I want the graph to look like the left graph but with tooltips...)
    http://img70.imageshack.us/img70/2977/businessgraphicsop4.jpg
    Basically, I need to see the values in a tooltip on a category based chart.
    Is it possible to create category based chart by using Series and not SimpleSeries?
    How do I solve it?
    Thanks,
    Omri

    Hi,
    I've change the context a little and now it's looks like this:
    Context:
    Category (Node, singleton)
    --> Series (Node, non singleton)
    > value (Value attribute)
    -->Text (Value attribute)
    UI: (UI Element, property, propertyValue)
    Business Grpahics -- seriesSource -- Category
    --Category -- description -- Category.txt
    --Series -- label -- Category.txt
    --Series -- pointSource -- Category.Series
    SeriesPoint -- tooltip -- Category.Series.Value
    SeriesPoint -- valueSource -- Category
    NumericValue -- value -- Category.Series.Value
    Thanks,
    Omri

Maybe you are looking for

  • Network.http.max-persistent-connections-per-server keeps reverting to user set 4

    I didn't used to have this problem as far as I'm aware, but as of recently, I've noticed that if I try to download more than 4 of one thing at a time from the same site, it would fail. For instance, if I have up 5 web pages of streaming content, only

  • Burned a Windows 7 install DVD from a downloaded .iso file....

    ...but Boot Camp Assistant 5.0 doesn't recognize it, even though the disc is in the drive and appears on the screen. I've included a screen shot of the error msg. Is the name of the disc the issue? Something else? I've recently upgraded to Mac OS 10.

  • Lost icon

    i have lost my contacts icon from home screen how do i get it back on my iphone 4

  • Oracle Connector for Outlook over https?

    Microsoft have had this feature since a long time. Is this somehow possible with the Connector? Or are users from the "outside" bound to use the webmail client or a vpn connection. best regards Mats

  • Cannot see Blend Mode previews

    I have a very odd problem.  When I set an object to Multiply/Screen etc I cannot see a preview of it on screen.  The odd thing is I can see it change on my layer thumbnails in the layers panel. I have been looking through any and all settings, yet I