Dynamic Graphics - Image not clear in HTML page

Hi,
i tried to generate the image from Dynamic Graphics( 3D Dial gauge). It creates successfully but when i show this image in HTML page it is not clear i.e values and arc are showing like points and words in description also shows as splited. How to avoid this? How to display images clearly?
regards
senthil

I don't know if this will help, but you may want to try rendering the image larger than the size you will display on the page.
If you do a search in the forum for 'svg' you might find some usefull threads.

Similar Messages

  • BLOB image not shows in JSP page!!

    Hi Dear all,
    I had tried to configure how to show BLOB image to jsp page . The code are works fine and servlet works ok but image can not show only. can you help me that what need to be added. Please help me.
    Can any experts help me? BLOB image not shows in JSP page. I am using ADF11g/DB 10gR2.
    My as Code follows:
    _1. Servlet Config_
        <servlet>
            <servlet-name>images</servlet-name>
            <servlet-class>his.model.ClsImage</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>images</servlet-name>
            <url-pattern>/render_images</url-pattern>
        </servlet-mapping>
      3. class code
    package his.model;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.Iterator;
    import java.util.Map;
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import oracle.jbo.domain.BlobDomain;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class ClsImage extends HttpServlet
      //private static final Log LOG = LogFactory.getLog(ImageServlet.class);
      private static final Log LOG = LogFactory.getLog(ClsImage.class);
      public void init(ServletConfig config)
        throws ServletException
        super.init(config);
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response)
        throws ServletException, IOException
        System.out.println("GET---From servlet============= !!!");
        String appModuleName = "his.model.ModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleName");
        String appModuleConfig = "TempModuleAssetMgt";//this.getServletConfig().getInitParameter("ApplicationModuleConfig");
        String voQuery ="select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = 'P1000000000006'" ;// 'P1000000000006' this.getServletConfig().getInitParameter("ImageViewObjectQuery");
        String mimeType = "jpg";//this.getServletConfig().getInitParameter("gif");
        //?IMAGE_NO='P1000000000006'
        //TODO: throw exception if mandatory parameter not set
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
          ViewObject vo =  am.createViewObjectFromQueryStmt("TempView2", voQuery);
        Map paramMap = request.getParameterMap();
        Iterator paramValues = paramMap.values().iterator();
        int i=0;
        while (paramValues.hasNext())
          // Only one value for a parameter is expected.
          // TODO: If more then 1 parameter is supplied make sure the value is bound to the right bind  
          // variable in the query! Maybe use named variables instead.
          String[] paramValue = (String[])paramValues.next();
          vo.setWhereClauseParam(i, paramValue[0]);
          i++;
       System.out.println("before run============= !!!");
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        System.out.println("after run============= !!!");
        Row product = vo.first();
        //System.out.println("============"+(BlobDomain)product.getAttribute(0));
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null)
          System.out.println("onside product============= !!!");
           // We assume the Blob to be the first a field
           image = (BlobDomain) product.getAttribute(0);
           //System.out.println("onside  run product============= !!!"+image.toString() +"======="+image );
           // Check if there are more fields returned. If so, the second one
           // is considered to hold the mime type
           if ( product.getAttributeCount()> 1 )
              mimeType = (String)product.getAttribute(1);       
        else
          //LOG.warn("No row found to get image from !!!");
          LOG.warn("No row found to get image from !!!");
          return;
        System.out.println("Set Image============= !!!");
        // Set the content-type. Only images are taken into account
        response.setContentType("image/"+ mimeType+ "; charset=windows-1252");
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[4096];
        int nread;
        while ((nread = is.read(buffer)) != -1)
          os.write(buffer, 0, nread);
          //System.out.println("Set Image============= loop!!!"+(is.read(buffer)));
        os.close();
        // Remove the temporary viewobject
        vo.remove();
        // Release the appModule
        Configuration.releaseRootApplicationModule(am, false);
    } 3 . Jsp Tag
    <af:image source="/render_images" shortDesc="Item"/>  Thanks.
    zakir
    ====
    Edited by: Zakir Hossain on Apr 23, 2009 11:19 AM

    Hi here is solution,
    later I will put a project for this solution, right now I am really busy with ADF implementation.
    core changes is to solve my problem:
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        }All code as below:
    Servlet Code*
      public void doGet(HttpServletRequest request,
                        HttpServletResponse response) throws ServletException,
                                                             IOException {
        String appModuleName =
          "his.model.ModuleAssetMgt";
        String appModuleConfig =
          "TempModuleAssetMgt";
      String imgno = request.getParameter("imgno");
        if (imgno == null || imgno.equals(""))
          return;
        String voQuery =
          "select ITEM_IMAGE from MM_ITEMIMAGE where IMAGE_NO = '" + imgno + "'";
        String mimeType = "gif";
        ApplicationModule am =
          Configuration.createRootApplicationModule(appModuleName,
                                                    appModuleConfig);
        am.clearVOCaches("TempView2", true);
        ViewObject vo = null;
        String s;
          vo = am.createViewObjectFromQueryStmt("TempView2", voQuery);
        // Run the query
        vo.executeQuery();
        // Get the result (only the first row is taken into account
        Row product = vo.first();
        BlobDomain image = null;
        // Check if a row has been found
        if (product != null) {
          // We assume the Blob to be the first a field
          image = (BlobDomain)product.getAttribute(0);
          // Check if there are more fields returned. If so, the second one
          // is considered to hold the mime type
          if (product.getAttributeCount() > 1) {
            mimeType = (String)product.getAttribute(1);
        } else {
          LOG.warn("No row found to get image from !!!");
          return;
        // Set the content-type. Only images are taken into account
        response.setContentType("image/" + mimeType);
        OutputStream os = response.getOutputStream();
        InputStream is = image.getInputStream();
        // copy blob to output
        byte[] buffer = new byte[image.getBufferSize()];
        int nread;
        vo.remove();
        while ((nread = is.read(buffer)) != -1) {
          os.write(buffer);
        is.close();
        os.close();
        // Release the appModule
    Configuration.releaseRootApplicationModule(am, true);
    }Jsp Tag
    <h:graphicImage url="/render_images?imgno=#{bindings.ImageNo.inputValue}"
                                                        height="168" width="224"/>

  • Images stored in Application Data folder are not visible in HTML Page generated by AIR Application

    Hi Programmers,
    I have an AIR application where in I am capturing the images of persons via web cam and storing them in the Application Data folder of the users machine. I am successfully able to do so.
    However, when generating the report in the HTML format from within the AIR application, I use the image captured and give the absolute path. but some how the image doesnt appear in the browser, I get the icon for image not found.
    When I right click on the image, select property and copy the image path in new browser, I can see that image. Any thoughts on why this is happening?
    Thanks,
    Hitesh patel

    I tried changing the directory  as following in java class:
    File trgDir = new File("/tmp/myTarget/");
    File srcDir = new File("/tmp/mySource/");
    FileUtils.copyDirectory(srcDir, trgDir);
    but unfortunately  Adf mobile application does not support "File Utils. copy Directory" library
    so is there any way to circumvent this problem.
    Any help would be appreciated 

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Dynamic Picture/Image Not Working

    CR XI R1 - I believe it is the most recet service pack available (4?)
    VBScript is being used to query the database and provide the recordset data to the crystal report via a data definition file.  All other data displays properly on the report.
    The 'placeholder' image is one that says 'image not found'.  It "should" be getting replaced at runtime with the dynamic image specified in the graphic location formula but it is not and the image always remains the same.
    In the graphics location I have tried in multiple ways to enter a path with a http:// reference, a file:// reference, a local drive C: reference, and a reference relative to the report's current directory on the server.
    Nothing seems to work.
    Could someone help me understand the requirements of the graphics location field in crystal reports in order for it to dynamically locate the file at run time.?
    My current assumption is that the graphics location requires a path in text form (surrounded in quotes) to an image file to be returned.  I also am assuming it doesn't matter when the graphics location field evaluates itself relative to other fields/formulas - especially if the path is static.
    I should note that a static path entered and print previewed does switch the picture.

    Please disregard.  I believe I have solved the issue.  The crystal reports viewer on the server was version 9, not 11.  Changing it to 11 appears to have resolved the issue.

  • Image not displayed in html output used webservice to store in a location

    hi
    we have used webservices to store the pdf and html outputs but the problem is when we are seeing the preview in the bi publisher we can see the image in pdf and html but when we run through webservices and see the output files that are stored in some location image in the html output is not displayed but in the pdf we can see the image.
    i have used the direct insertion image option in the header section. is the problem because i have used the direct insertion.
    can you give the idea how to import logo from an external location so that we can check the if it is problem with direct insertion or problem with the webservice as we are storing the output files outside the catlog but it may not be wrong because in pdf we can see the image.
    I am not having any idea how to solve thsi issue..
    Sorry to bother you with these many questions
    Thanks in Advance
    Have a Nice day.

    Please state which BI Publisher version you are using.
    In case it is 10g then please always test the application with the latest patch first!.
    BTW today there is been a new patch 11846804 released for 10.1.3.4.1 (March 2011).
    regards
    Jorge

  • Image not displaying in HTML output

    Hello! We have been using Report Builder 10.1.2.0.2 to generate PDF reports which contain a logo. However, when the same report is changed to DESFORMAT=HTML or HTMLCSS, we get a red "x" for the image. I'm not sure if this is issue can be resolved within the Oracle RDF file itself, or whether it is because of our architecture. We are executing the reports from Oracle Application Express, which utilizes HTTPS protocol and is hosted by Oracle HTTP Server on a server located in the DMZ of our corporate network. The Reports Services server is on a separate server, located within our corporate network. The Oracle Reports are executed through the browser using HTTP protocol. Could this be an SSL issue or a reverse-proxy issue on OHS? It seems that the image cannot be displayed in the browser because the path to the image is not recognized or valid. The image was embedded in the RDF file via Insert...Image, not File Link. This issue is not exhibited in our DEV environment, where both OHS and Reports Server are within the network. Any ideas would be appreciated.

    Hello,
    Right click on the red "x" and select "properties" to check the URL used to "download" the image.
    The reports servlet will use information defined in the HTTP server conf file (httpd.conf) to build this URL
    Parameters are :
    ServerName
    Port
    UseCanonicalName
    You can fnd details in the "My Oracle Support" document :
    How the Reports Servlet Builds the URLs Inserted in the HTML/HTMLCSS output (Doc ID 276306.1)
    Regards

  • Hindi fonts not rendering in html pages

    Hindi fonts not rendering in when html pages are run except the mangal and devnagri font.
    Is that a bug or a problem which i am not able to tackle.
    Mozilla browser shows error in console that (font download failed or The character encoding of the HTML document was not declared. The document will render with garbled text in some browser configurations if the document contains characters from outside the US-ASCII range.
    downloadable font: download failed (font-family: "Kruti Dev 010" style:normal weight:normal stretch:normal src index:0): status=2147500037
    source: file:///D:/epub/filename/OEBPS/Fonts/k010.otf @ file:///D:/epub/filename/OEBPS/Styles/style.css).
    Please reply soon.
    Thanks.

    Download and install hindi font from [http://hindi-fonts.com Hindi Fonts] .

  • Flash not playing on html page after template is altered

    Hi,
    Can anyone help. If i alter anything on a template none of the .swf files on pages based on that template will work when previewed in the browser.
    I am using DW CS3.
    Anyone any ideas

    Good day,
    This issue can be considered as a limitation at some point because Dreamweaver lacked the ability to "auto-update", although it was not really the best practice to include Flash contents in a DW template.
    There is a workaround though. You may need to edit the template (.dwt) itself and work in Code View.
    While in Code View, use the Find and Replace (Edit > Find and Replace) feature so it will be easier for you to find what you are looking for.
    In the Find and Replace window, choose Current Document as value for Find in, and Source Code as Search.
    In the Find input field, type --> 'src' (including the single quotes) and click on Find Next.
    Once you found 'src', pay attention to the text next to it enclosed in single quotes. The value in the single quotes is the path of where the Flash file is saved. try to remove ../ if you happen to see it. (do this if the Flash file is located in the same folder where the HTML page which uses it is saved)
    Using Find and Replace again, this time, try to search for 'movie' (including single quotes). You'll see again the text next to it which is the same value as what you have searched before. Do the same thing, try removing ../. (do this if the Flash file is located in the same folder where the HTML page which uses it is saved)
    Save the DW template file and try to preview the pages again in the browser.
    I hope this helps.
    Regards,
    Christine R.
    Adobe North America Technical Support

  • Image not displaying with HTML text field

    I am trying to display am image within
    flash using CS3.
    I have a text field with the following code.
    feedback.htmlText = "<img src='Logo_small.png'</img>"
    nothing displays. The image and flash document are at the same level, so that is why I am using a relative link. Do I need to use a full (absolute) link to the image?

    That's not properly coded html...
    feedback.htmlText = "<img src='Logo_small.png' />";
    image tags do not have a closing tag and you didn't close the opening tag if they did, so it would still fail.

  • How do I display Canvas Graphic image (Not Iconic button) from jar file

    Hi all,
    I am currently using Forms 10g.
    I have gone through the tutorials on how to add Button Icons into Jar files for web enables forms .....so far so good
    This however does not explain what I actually want to do... since "graphic images are by nature embeded in the for rather than referenced ......so here goes ..
    I have a forms 10g application where all the individual form modules/canvases display a big banner (covering top 20% of the screen). This was done by importing the image straight unto the content canvases. As you know this now becomes a "graphic Image" now embeded(& not referenced by file name) on the canvas. Also bear in mind that this is actually different from an "Image Item" which is a block object.
    I dont know if this is possible, but what steps do i follow to make the image part of a jar file as opposed to my current situation. Please let me know if possible or not so I stop waisting development time looking for answers :)
    Another question is how do i make this jar file a library object so that we can vary the image as we wish
    NB: one other trick which i can think of is to create a giant push button across the screen to display the image and then stick it in a jar file !
    Cheers
    css_jay99

    I don't know about embedded images imported in from the builder, but there is a way to use READ_IMAGE_FILE into a BLOCK.IMAGE_ITEM where the images are all in a jar file stored on the OAS.
    Metalink Note:137397.1 explains it in details.
    Tony

  • Report Image not clear in Oracle Apps

    Hi guys
    I wonder if you can help me. I have a report with a logo. The report works fine but when I run it in Oracle Apps, the logo comes out blur. My output is PDF. Is there a way I can make the image look clear?

    Refer
    How to CLEAR all the items in OAF on a button click
    Clear Button Issue
    -Anand

  • Table image not linking in html object

    I have created a table in Dreamweaver and verified that it is correct by previewing in several browsers. Once I paste it into Muse however, an image that loads fine from Dreamweaver becomes a question mark in Muse layout and published views.
    Here is a link: http://corehog.businesscatalyst.com/small-size-finishing-tools.html
    The first table is the  trial table in html, the other 2 are just images.
    Any help would be greatly appreciated.

    Ok, I've run into a few snags. First of all my admin console does not have all the options you show in the screenshot. Most signifagantly File Manager. I made sure the Images cart-pl-n.gif and cart-pl-ro.gif by just pasting them on the page then publishing, I then double checked their presence by checking in Edit mode. I also tried to relink the images in Edit mode but with the rollover, the top one is presenting itself with the alt text and the image underneath is just and illusive flash I cannot connect with.
    Is it there something goofy in the code?
    <td><a href="http://corehog.businesscatalyst.com/cart.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Cart','','../../../www.corehog.businesscatalyst.com/images/car t-pl-ro.gif',1)"><img src="../../../www.corehog.businesscatalyst.com/images/cart-pl-n.gif" alt="shopping cart" width="26" height="23" class="imagecontrol" id="Cart2"></a></td>
      </tr>
    I really appreciate your help!
    Paula

  • PDF version not clear on certain pages

    When I make a PDF version of my Pages document, any page that contains a shape has degraded quality font. The only two fonts I'm using are Verdana and Times New Roman.
    Any suggestions?

    Peter,
    What you are saying makes perfect sense. I know transparencies and other effects can cause problems - for example in iweb, adding effects to HTML text turns the whole text box into a graphic. However, this doesn't seem to be the issue here.
    In my doc, I have no graphics overlapping text boxes. The graphic is well apart from the text box. It's as if adding graphics anywhere on a page causes the whole page to be rendered as a graphic - perhaps then being rendered, as you suggest, as a bitmap.
    To add to the confusion, I thought I had this figured out. I had been using TIFF files and tried JPG instead. It seemed to make a difference. However, continued testing showed that was NOT what was making the difference . . .
    Now I'm finding that the PDF is rendering differently depending on which screen I'm viewing it on, what magnification I'm using and what program I'm using to view it!
    I'm running a macbook w. Intel core 2 duo, Snow Leopard. I also have a 22" Samsung monitor attached for a dual monitor setup. When I open the PDF on the macbook screen (using Adobe Reader) at 122%, the text page with graphics looks OK (not great, but OK) when I drag it over to the bigger monitor, it initially looks the same. However, if I re-size it on the bigger monitor, say go from 122% to 125%, I get the jagged edges text look again!
    OK, next step: Go to a different macbook, boot up in bootcamp & Windows. Same PDF with graphics looks fine in Adobe Reader in any magnification.
    Another option: Try on old mac G5 power PC (running Leopard) Same PDF looks fine in Preview. However, download latest version of Adobe Reader and we're back to the Jagged text look.
    Go back to original, dual-monitor macbook and try same PDF in Preview. Looks fine.
    So, the issue appears to be specifically how Adobe Reader is rendering the PDF??
    Using Adobe Reader 8.1.6 on main macbook, 7.0 on Windows and the latest 9 something, on G5
    At this point, I am using Verdana font, 13 pt., dark gray on a white background in my doc. It appears I can export from Pages with graphics to PDF and get a PDF that renders on-screen in MOST cases in acceptable form. However, I wish I felt better that ALL by clients were seeing the same thing (Isn't that the whole idea behind PDFs?) rather than have to worry that some may see poorly rendered text.
    I very well may still be missing something here, so if anyone has any other ideas, please let me know!
    And, thanks Peter for the suggestion!

  • Code or design not visible on html page

    When I open my html I can see all of the code if I put it in the code view. If I have it in design or split view all I see is the small image on the screen.
    I put an arrow below the image.

    Run your code through these on-line validation tools and fix any reported errors.
    HTML Validator - http://validator.w3.org
    CSS Validator - http://jigsaw.w3.org/css-validator/ 
    Tutorials - http://w3schools.com/
    If that doesn't help, please upload page to remote server and post a URL.  Answers to rendering problems are almost always in the code.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

Maybe you are looking for

  • Copying inspection result

    Dear Experts,                        In the production server copying inspection results is possible with one user ID but with another user ID it is giving error. Please let me know if there is any particular related authorization object. Regards Sun

  • Need Ebook for ALE/IDOC Programming

    Hi All, I am new to IDOC programming. I want a technical book for the coding purpose. Can anybody post a link for any good book. I have read functional side so plz.. post links only for technical coding things. Useful links will get rewarded. Thanks

  • How to manage to turned around a PDF?

    Hi, I would like to know how I can manage to turn around a Certificate of Complexion that I received in a PDF file that came to me on its side. It also has Security Settings. Thank you in advance, Isabel

  • Album Artwork Missing?!

    I updated my iPod yesterday, smae as always. When I went to use it, all my album artwaork was missing and the writing is all left-aligned, on the bit where you can see what song is playing...but the artwork is all there on iTunes...what's up with it?

  • Restrain download of old emails

    I have a MacBook Air. My email address is a Gmail one and everytime I checked my emails it downloaded thousands of old emails that already were in my inbox. At the Apple Store they fixed something in my Gmail settings on internet and it has stopped d