Lack of HTML formatting in iTunes Store

Hi there guys,
lately I have had a problem with my iTunes store incorrectly displaying information. It displays information in a sort of list format, with barely any formatting at all. Any ideas as to why this is happening?
iTunes is version 10.1.0.56.
Exception has been created in firewall for iTunes.
Safari 5.0.3 installed.
Windows 7 Pro x64 installed.
Message was edited by: Capt.Louie

Yes, I'm getting this as well. I think it started for me quite recently, either when the Beatles appeared in the store or when I bought an Apple TV a week or so ago.
I've also seen similar effects in some web pages in Safari.
The problem isn't consistent tho, sometimes the pages in iTunes look okay.

Similar Messages

  • Music File Formats from iTunes Store

    Can you help me - I want to start building my collection of AIFF files as I'm about to get a Wadia 170i transport!
    Can I only down load music from iTunes in ACC format? IF yes then can they then be converted to AIFF post downloading?
    Cheers Nige

    An audio component of that quality obviously needs good audio formats :
    In terms of buying music, you would be advised to go for iTunes Plus, which gives you the music in AAC 256kbps (near CD quality, I cannot hear the difference).
    Having got that, as long as the Wadia plays them - and it looks from the website as though it does - there is absolutely no point in converting to AIFF, which as Meg says will give you NO improvement in quality, only larger files. And if you ever did contemplate converting (pointlessly) to a higher format, then Apple Lossless is the same quality as AIFF but the file sizes are only half.

  • Can i get the report output in HTML format?

    Hello everybody,
    I have developed a report whose output needs to be printed in HTML format.
    Can anybody suugest how this can be accomplished by coding in program itself using any function modules if necesary?
    Helpful answers will surely be rewarded.
    Thanx in advance,
    Sanghamitra.

    refer the below code
    Generate an HTML file from a Report in ABAP
    data: begin of itab occurs 0,
          matnr type mara-matnr,
          mtart type mara-mtart,
          matkl type mara-matkl,
          groes type mara-groes,
          end of itab.
    data: ifields type table of w3fields with header line.
    data: ihtml   type table of w3html   with header line.
    select * into corresponding fields of table itab
              from mara up to 100 rows.
    call function 'WWW_ITAB_TO_HTML'
    EXPORTING
      TABLE_ATTRIBUTES       = 'BORDER=1'
      TABLE_HEADER           =
        ALL_FIELDS             = 'X'
      tables
        html                   = ihtml
        fields                 = ifields
      ROW_HEADER             =
        itable                 = itab
    check sy-subrc = 0.
    call function 'GUI_DOWNLOAD'
         exporting          filename = 'c:\test.html'
         tables          data_tab = ihtml
    or for conerting internal table data into html
    See below simple report to convert the internal table data to a HTML format data and stores in a internal table and then pass that internal table as an attachment to the external email using function module SO_NEW_DOCUMENT_ATT_SEND_API1.
    You need for create a spool also.
    REPORT Z_HTML .
    include <icon>.
    types: begin of msg,
    type like icon-id,
    text(140) type c,
    end of msg.
    constants: gc_marked type c value 'X',
    gc_ok like icon-id value '@5B@'.
    data:
    gt_msg type standard table of msg,
    gs_msg like line of gt_msg,
    gv_msg(138) type c,
    *-- html
    html_container type ref to cl_gui_custom_container,
    html_control type ref to cl_gui_html_viewer,
    my_row_header like w3head occurs 10 with header line,
    my_fields like w3fields occurs 10 with header line,
    my_header like w3head,
    my_html type standard table of w3html ,
    ok_code like sy-ucomm.
    Start of Selection *
    start-of-selection.
    clear gv_msg.
    gv_msg = 'MESSAGES for HTML'.
    do 3 times.
    perform message using gc_ok gv_msg .
    enddo.
    End of Selection *
    end-of-selection.
    set screen 0100.
    *& Form message
    form message using p_type
    p_text.
    clear gs_msg.
    gs_msg-type = p_type.
    gs_msg-text = p_text.
    append gs_msg to gt_msg.
    endform. " MESSAGE
    *& Module STATUS_0100 OUTPUT
    module status_0100 output.
    perform convert_itab_html.
    set titlebar '100' .
    set pf-status 'MAIN100'.
    create object html_container
    exporting
    container_name = 'CONTAINER'.
    create object html_control
    exporting
    parent = html_container
    saphtmlp = gc_marked .
    data: assigned_url type url.
    call method html_control->load_data
    EXPORTING
    URL = url
    TYPE = 'text'
    SUBTYPE = 'html'
    SIZE = 0
    ENCODING =
    CHARSET =
    importing
    assigned_url = assigned_url
    changing
    data_table = my_html
    EXCEPTIONS
    DP_INVALID_PARAMETER = 1
    DP_ERROR_GENERAL = 2
    CNTL_ERROR = 3
    others = 4
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    call method html_control->show_url
    exporting
    url = assigned_url
    FRAME =
    IN_PLACE = ' X'
    EXCEPTIONS
    CNTL_ERROR = 1
    CNHT_ERROR_NOT_ALLOWED = 2
    CNHT_ERROR_PARAMETER = 3
    DP_ERROR_GENERAL = 4
    others = 5
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    endmodule. " STATUS_0100 OUTPUT
    *& Module exit INPUT
    module exit input.
    leave program.
    endmodule. " exit INPUT
    *& Module user_command_0100 INPUT
    text
    module user_command_0100 input.
    case ok_code.
    when 'EXIT' or 'BACK'.
    leave program.
    when others.
    call method cl_gui_cfw=>dispatch.
    endcase.
    endmodule. " user_command_0100 INPUT
    *& Form convert_itab_html
    form convert_itab_html.
    data: lv_tabix like sy-tabix.
    *-- table header
    call function 'WWW_ITAB_TO_HTML_HEADERS'
    exporting
    field_nr = 1
    text = 'Type'
    fgcolor = 'navy'
    bgcolor = 'red'
    font = 'Arial'
    tables
    header = my_row_header.
    call function 'WWW_ITAB_TO_HTML_HEADERS'
    exporting
    field_nr = 2
    text = 'Message'
    fgcolor = 'navy'
    bgcolor = 'red'
    font = 'Arial'
    tables
    header = my_row_header.
    *-- table rows
    clear lv_tabix.
    loop at gt_msg into gs_msg.
    lv_tabix = sy-tabix.
    call function 'WWW_ITAB_TO_HTML_LAYOUT'
    exporting
    field_nr = 1
    line_nr = lv_tabix
    icon = gc_marked
    tables
    fields = my_fields.
    call function 'WWW_ITAB_TO_HTML_LAYOUT'
    exporting
    field_nr = 2
    line_nr = lv_tabix
    fgcolor = 'red'
    bgcolor = 'black'
    font = 'Arial'
    size = '2'
    tables
    fields = my_fields.
    endloop.
    *-- header
    move 'Messages during program run' to my_header-text.
    move 'Arial' to my_header-font.
    move '2' to my_header-size.
    move 'Centered' to my_header-just.
    move 'red' to my_header-bg_color.
    move 'blue' to my_header-fg_color.
    refresh my_html.
    call function 'WWW_ITAB_TO_HTML'
    exporting
    table_header = my_header
    all_fields = ' '
    tables
    html = my_html
    fields = my_fields
    row_header = my_row_header
    itable = gt_msg.
    endform. "convert_itab_html
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • I've downloaded itunes on my computer, but the iTunes store does not show up and HTML and the links do not work?

    I've successfully downloaded iTunes to my PC.  Every function appears to work, however when accessing iTunes store it does not come up in HTML format and when I click a link it times out.

    Hi Augstiner57, I have the same problem.  Did you figure it out?  Mine seems to have happened after I updated Apple TV. Now it doesn't recognize my Home Sharing even though on my MacBook is it turned on.
    I am running an old OS  though (Leopard) so  I am wondering if I need to upgrade.

  • ITunes store pages formatting is one long list

    Hi all,
    The iTunes store some how is formated in plain html. Looks weird. The home has big pictures one after the other Then when you scroll down, the Music is a list of album picture and then a bullet list of the album name and the title. Something like the following:
    Music
    See All
    [A picture of the album]
    * Redemption Song (For Haiti Relief) [Live from Oprah] - Single
    * Rihanna
    [A picture of the album]
    * Today Was a Fairytale - Single
    * Taylor Swift
    Everything has become a straight long list. My default browser is Chrome, it didn't help if I changed the default browser to firefox and rebooted. Not sure how to post a screen capture of what is happening. Hopefully somehow there are someone experienced this. Not sure if I put in the right keywords for searching, but wasn't able to find related issues.
    Your help is appreciated.
    Thanks,
    Alice

    Based on the iTunes.exe time stamp it's Oct 28, 2009 8:21PM ET. Funny thing is that the release date I can find on the web is Oct 30, 2009. Is that true?
    Sometimes I see October 29 (Wikipedia for example). So when international date lines figure into things, I reckon you might well have got it on the day it was released (depending on where you are based).
    So that timeframe looks right ... in the first days of the iTunes 9.0.2.25 installer, it contained an AAS 1.0.1 and a QuickTime 7.6.4. Then the Safari 4.0.4 installer (containing an AAS 1.1.0) came out on about 11 November. For a while I *really was* advocating a Safari 4.0.4 install to fix some other Store problems, because it was the only way to get an AAS 1.1.0 on the PC. (People used to look at me funny.) Then on about ... 18 November? QT 7.6.5 came out, and that version of QuickTime and AAS 1.1.0 got included in the iTunes 9.0.2.25 installer from then on.
    My notes are a bit sketchy, but there was a hint that AAS 1.1.0 fixed some iPhone syncing trouble too. (I wasn't working on that much back then, though.)
    But the important thing is that your Store is displaying properly again. (I'm glad it wasn't malware either ... my heart sank when that 306 code got mentioned.) Glad to have been of some accidental assistance, Alice!

  • I recently purchase a tv episode from the iTunes store, however, can not download to my IPOD Touch.  Apparently, a format issue, any suggestions

    I recently purchased a tv episode from the iTunes store.  However, I can not get the tv episode downloaded to my IPOD Touch i.e. can not sync movie although music works fine.  From what I read it is an issue with the format of the episode.  The format is HD and apparently is too much for my IPOD touch.  According to the documentation, the SD format for the episode should have been downloaded at the same time as the HD.  I have the latest iOS for my IPOD Touch, 4.2.1 and latest for ITunes 10.5.3.3.  I am using my PC with Windows 7.  I can not download directly to the IPOD Touch since access to the clous is required i.e. iOS 4.3 or higher.  Any suggestions? 

    My suggestion is for you to do the downloads overnight.   

  • How do I Download from Itunes store using the Apple Lossless format?

    I use my music on a home sterio and import locally from CD's to Windows using the Apple Lossless format only, to achieve the Highest quality sound. However, When I buy from Itunes store I can only get AAC format, which is low quality. How can I get Itunes to give me only Apple Lossless format?
    Your help will b e appreciated.
    Thanks
    Phil

    I do agree with what i have been said. I am a musician, i think AAC is definitely medium-low quality. I bought this year lots of AAC 256 for Itunes. I have been surprised. SO many times i need to go to the equalizer to counter-balance the weakness of this file format.
    I advise you to do the following. Import a CD using Apple LossLess and then import a CD using AAC 256. You will see a HUGE difference.
    Now i start to buy CD again in order to get the music Quality. Then i import my CDs to Itunes using Apple LossLess (920Kbps). You will ear that on Snares and Rides. Bass will sound more natural. Bass, Medium, Sharp will more balance with each other. You will hear instruments with more clarity especially when there are a lot of instruments. Because of that, you will not need to raise up the volume.
    But more than anything... you will gain VOLUME in your files.
    In general over the internet all the online music stores including Itune doesn't provide HD quality. AAC 256 is not enough. A track bought over Itune Store should weight 30 megabytes, not 5. And then you would decide to compress it or not.

  • I purchased songs from Itunes store and I would like to record a CD to my parents with specific songs but when introduce the cd a message appears that the songs are not in MP3 format, how could I convert them?

    I purchased songs from Itunes store and I would like to record a CD to my parents with specific songs but when introduce the cd a message appears that the songs are not in MP3 format, how could I convert them?

    Hello
    In itunes...preferences you can change the setting to import songs instead of mp4  to mp3. Afer changing this setting, right click to the songs and than you are able to convert to mp3. ths's it

  • I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks

    I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks
    p.s. I am not knowledgeable of Apple/iTunes etc, I was under the impression that if I purchased an album then I can use my purchase on a non-Apple device

    mickyja wrote:
    I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks
    p.s. I am not knowledgeable of Apple/iTunes etc, I was under the impression that if I purchased an album then I can use my purchase on a non-Apple device
    Micky,
    The iTunes Store sells songs in AAC format.  Most Android phones can play AACs.  Just sync them to your phone per the instructions with the phone.
    If by any chance your phone does require MP3 format, you can use iTunes to convert the files, per this guide: 
    iTunes: How to convert a song to a different file format - Apple Support
    (This conversion does not require burning.)
    For future reference, note that the iTunes Store is really optimized for people using Apple devices.  You might find it more convenient to buy music in Mp3 format from Amazon Digital Music or Google Play Music.

  • I selected "ACC Encoder-iTunes Plus" for import settings to import cd's. I assumed music purchased from the iTunes Store was mp3 format.Which is it?

    I selected "AAC-iTunes Plus" as my import settings when importing CD's to my iTunes library. When I reviewed "get info" on purchased songs from iTunes, it says "Kind: Purchased AAC audio file". All of the purchased songs in my library say this. I assumed all purchased songs were "automatically" imported in mp3 format. Do the import settings I chose also apply to purchased music? Also, what can I do to have my library songs changed to mp3 format?

    All songs sold in the iTunes Store are AAC/256.
    The import setting affects ripping and conversion.  It has nothing to do with purchases from the iTunes Store.
    If you need MP3s, you can convert your AACs by using this procedure:  http://support.apple.com/kb/HT1550  But it would be easier to buy MP3s in the first place, for example from Amazon MP3. 
    MP3s can be used in iTunes or almost any other player, program or device.

  • ITunes Stores... sound format?

    What format are the songs purchased off the iTunes library? MP3/4?
    Just curious, as I'm finding out that the sound quality between MP3's and WAV is different so the quality of the iTunes Store products may not be quite what you would hear on commerical CD. Correct?

    All tracks on the iTunes Store are AAC. Some are 128kbps and copy protected, and a few (from EMI and a few independent labels) are at 256kbps and not protected; these can be identified by the "+" icon next to the price.
    the quality of the iTunes Store products may not be quite what you would hear on commerical CD. Correct?
    Correct. The quality of all download stores carrying major-label content, with one exception, Music Giants, is lower than what you'd find on a CD. Whether you can hear the difference will depend on your ears and your playback system.
    Message was edited by: Dave Sawyer

  • Music bought from iTunes store transfer to apple loos less format

    Can I have all my music bought on iTunes store to be transfer in Apple loos less format and how I proceed?

    Same thing happened to me. ALL of my videos are now "not authorized". No fix yet...only happened with 7.3.
    Tony

  • ITunes does not support audio format of iTubes store song

    I downloaded some songs from the store but some of them say that they cannot be copied because the audio format is not supported by my iPod. The songs do not play in iTunes either. I have a nano with the latest update. What is happening and how do I fix it?
    iMac   Mac OS X (10.4.9)  

    Contact the iTunes Email Support with the names of the songs using the link at the bottom of this page:
    http://www.apple.com/support/itunes/store/authorization/
    Songs from the iTunes Store are in ACC format & should play in iTunes & on your iPod...So it sounds like the songs didn't download correctly.

  • Parts of album in iTunes Store in different file formats

    I bought double album in itunes store. Part of it is in .m4a format, and other part is in .m4p format. Why?

    If it was an old purchase that your re-downloaded, the re-download will be in M4P if the original purchase was in M4P.
    If it was a new purchase, you should be getting only non-DRM (M4A) files:
    All iTunes Store music and music videos for sale now are in iTunes Plus format.
    If that is not what you received, contact iTunes Customer Service and get it corrected:
    http://www.apple.com/support/itunes/contact/

  • How  can I burn "iTunes store files in MP3 formats?

    how  can I burn "iTunes store files in MP3 formats? is there a way ?

    I typed "MP3" into the help feature in itunes and found "Create your own MP3 CDs"
    Try the same.

Maybe you are looking for