Bookmarks back-up on flashdrive says "unsupported file type" when try to open

I followed the Help directions for backing up my bookmarks. But when I try to open the back-up file from a flashdrive, it says "unsupported file type." Also, when i save the back-up file to the desktop, it never gives me the option to choose that back-up file when I try to restore. Thanks!! :-)

Make sure that the backup file with the bookmarks has the correct file extension: .html for a HTML backup and .json for a JSON backup.<br />
You can check that via the right-click context menu of that file and open the Properties.<br />
If you are not sure about the file type then you can open the file in Firefox via "File > Open File"<br />
A JSON backup will show as one long text line without line breaks and a HTML backup as a web page with clickable links.
A JSON backup starts with: <nowiki>{"title":"","id":1,"dateAdded":</nowiki>
An HTML backup starts with: <nowiki><!DOCTYPE NETSCAPE-Bookmark-file-1></nowiki>

Similar Messages

  • I backed up my bookmarks but it is now saying unsupported file type even after i made sure it was the right file type.

    I made sure the file type was right just like the instructions said yet it refused to restore the bookmarks. Please help!

    Try to rename the file and add a .json file extension and then check the properties again.<br />
    If you didn't specify a file extension while saving the JSON backup in Firefox then the file extension is empty and that will give you that error.

  • Incoming email says "Unsupported file type"

    I keep getting emails which say "Unsupported file type" and will not display the actual message.  How do I find out what I need to download to be able to read these emails?

    Forgive me, but I'm not exactly tech savvy.  When you ask for the email app, do you mean the provider - which is Cox?  And the problem only happens on opening emails from one regular source.

  • I just reinstalled windows and when I restore Firefox bookmarks it says "Unsupported file type". My bookmark is in JSON file type. I restored it via Bookmarks Organize Bookmark Import and Restore Restore Choose File. What's going on?

    Please help me.

    Make sure that the backup file with the bookmarks has the correct file extension: .html for a HTML backup and .json for a JSON backup.<br />
    You can check that via the right-click context menu of that file and open the Properties.<br />
    If you are not sure about the file type then you can open the file in Firefox via "File > Open File"<br />
    A JSON backup will show as one long text line without line breaks and a HTML backup as a web page with clickable links.<br />
    A JSON backup starts with: {"title":"","id":1,"dateAdded":
    An HTML backup starts with: <nowiki><!DOCTYPE NETSCAPE-Bookmark-file-1></nowiki>

  • Trying to import dvd into iDVD,it says Unsupported File Type:Unknown format

    Hi there,
    I just had a home movie transferred from vhs to dvd. Now I am trying to import it into iDVD and when i try to the message appears : Unsupported File Type :Unknown format
    Logical Volume Identifier/VIDEO_TS.
    I wanted to put the home movie to music (it allowed me to import the song, not the video).
    It says the kind of file is UNIX Executable File.
    Any help would be appreciated.
    Thanks.

    to do this you would first need to convert the DVD (mpeg 2) to QT so you can import to iDvd which btw involves a quality hit. There are apps out there that can do this at a marginal level ... for example:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.products.htm

  • STO mail : pdf attachment has an error 'file damage' when try to open it

    Dear expert,
    I need to send an e-mail to the vendor with the sto list as attachment at the email.
    I managed to send email to external addresee and made the pdf attachment, BUT somehow when I open the attachment it has an error says "Adobe Reader could not open xx.pdf because it is either not a supported file type or because the file has been damaged(for axample, it was sent as an email attachment and wasn't corectly decoded)."
    Really need your experties to help me. Here is my abap coding to send email and do the pdf attachment at the new ouptput type to send email.
      TYPES: BEGIN OF lty_drad,
              doknr TYPE drad-doknr,
             END OF lty_drad,
             BEGIN OF lty_recpt,
               smtp_addr  TYPE ad_smtpadr,
             END   OF lty_recpt.
      DATA: lt_doc      TYPE STANDARD TABLE OF docs,
            lt_recpt    TYPE STANDARD TABLE OF lty_recpt,
            lt_tline    LIKE tline OCCURS 0 WITH HEADER LINE,
            lt_data     TYPE solix_tab,
            lt_docu     TYPE STANDARD TABLE OF lty_drad,
            lt_docfiles TYPE STANDARD TABLE OF bapi_doc_files2,
            lw_tline    LIKE LINE OF lt_tline,
            lw_docu     LIKE LINE OF lt_docu,
            lw_docfiles LIKE LINE OF lt_docfiles,
            lw_objdes   TYPE tnati-objdes,
            lt_text     TYPE bcsy_text,
            lw_recpt    TYPE adr6-smtp_addr,
            lw_adrnr    TYPE lfa1-adrnr,
            lw_object   TYPE drad-objky,
            lw_doknr    TYPE drad-doknr,
            lw_return   TYPE  bapiret2,
            lw_xcontent TYPE xstring,
            client    TYPE REF TO if_http_client,
             url       TYPE string,
             lw_subrc  TYPE sysubrc,
             response  TYPE REF TO if_http_response,
             lw_message1 TYPE string,
           sent_to_all TYPE os_boolean,
           bin_filesize type i.
      CONSTANTS: lc_dokar_srm TYPE drad-dokar VALUE 'SRM',
                 lc_type      TYPE so_obj_tp  VALUE 'RAW'.
    CLASS-DEFINITIONS
      DATA: send_request       TYPE REF TO cl_bcs.
      DATA: document           TYPE REF TO cl_document_bcs.
      DATA: sender             TYPE REF TO cl_sapuser_bcs.
      DATA: recipient          TYPE REF TO if_recipient_bcs.
      DATA: exception_info     TYPE REF TO if_os_exception_info,
            bcs_exception      TYPE REF TO cx_bcs.
      RANGES: lr_po_pr   FOR  drad-objky.
      DATA:   lw_banfn   TYPE ekpo-banfn,
              lw_bnfpo   TYPE ekpo-bnfpo.
      IF nast-nacha = '5'. "8
    Create recipient and check if exist
       Get email ID
      start commented by sapnislina 21.12.06
       SELECT SINGLE adrnr FROM lfa1 INTO lw_adrnr
                    WHERE lifnr = p_ekko-lifnr.
       IF sy-subrc NE 0.
         PERFORM protocol_update
           USING '303' 'Address of Vendor:' ekko-lifnr 'not found' space
         p_retco = sy-subrc.
         EXIT.
       ENDIF.
      end commented by sapnislina 21.12.06
       SELECT smtp_addr INTO CORRESPONDING FIELDS OF TABLE lt_recpt
            FROM adr6
           WHERE addrnumber = p_ekko-adrnr. "lw_adrnr.
        IF lt_recpt[] IS INITIAL.
          PERFORM protocol_update
            USING '303' 'Email address(es) does not exist for vendor'
            p_ekko-lifnr space space.
          p_retco = sy-subrc.
          EXIT.
        ENDIF.
        CALL FUNCTION 'CONVERT_OTF_2_PDF'
          EXPORTING
            use_otf_mc_cmd         = 'X'
          IMPORTING
            bin_filesize           = bin_filesize
          TABLES
            otf                    = otfdata[]
            doctab_archive         = lt_doc
            lines                  = lt_tline
          EXCEPTIONS
            err_conv_not_possible  = 1
            err_otf_mc_noendmarker = 2
            OTHERS                 = 3.
        IF sy-subrc <> 0.
        PERFORM protocol_update
            USING '303' 'PO Convertion from OTF to PDF failed'
                  space space space.
          p_retco = sy-subrc.
          EXIT.
        ENDIF.
    Get object description from mail title of output types
       SELECT SINGLE objdes INTO lw_objdes
              FROM tnati
              WHERE spras = sy-langu
              AND   kappl = nast-kappl
              AND   kschl = nast-kschl.
       CONCATENATE lw_objdes ekko-ebeln INTO lw_objdes SEPARATED BY
    space
        DATA L_TXT(255) TYPE C.
        DATA L_TXT2(255) TYPE C.
        CONCATENATE 'STO' EKPO-EBELN 'Created for' EKPO-WERKS '/'
    EKPO-LGORT
        'Supply Plant' EKKO-RESWK into l_txt separated by space.
        lw_objdes = l_txt.
        CONCATENATE 'STO' EKKO-EBELN INTO L_TXT2 SEPARATED BY SPACE.
        APPEND L_TXT2 TO LT_TEXT.
       APPEND lw_objdes TO lt_text.
    Instantiate
        CLASS cl_cam_address_bcs DEFINITION LOAD.
        CLASS cl_abap_char_utilities DEFINITION LOAD.
    insert by sapnislina 22.12.06
      DATA : CONTENT_OUT TYPE SOLIX,
             LINE_WIDTH_SRC TYPE I,
             POS_OUT TYPE I,
             POS_IN TYPE I,
             LEN_OUT TYPE I.
      DATA OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
      DATA : BEGIN OF CONTENT_IN,
                LINE TYPE TLINE,
                DUMMY TYPE TLINE,
             END OF CONTENT_IN.
      TYPES PDF_RAW TYPE X LENGTH 268.
      FIELD-SYMBOLS <PDF_BIN> TYPE PDF_RAW.
      DESCRIBE FIELD CONTENT_IN-LINE LENGTH LINE_WIDTH_SRC IN BYTE MODE.
      REFRESH lt_data.
      CLEAR CONTENT_OUT.
      POS_OUT = 0.
      LOOP AT OTFDATA INTO CONTENT_IN-LINE.
        ASSIGN CONTENT_IN TO <PDF_BIN> CASTING.
        MOVE <PDF_BIN> TO CONTENT_OUT-LINE+POS_OUT.
        ADD LINE_WIDTH_SRC TO POS_OUT.
        WHILE POS_OUT >= 255.
          APPEND CONTENT_OUT TO lt_data.
          CLEAR CONTENT_OUT.
          SUBTRACT 255 FROM POS_OUT.
          IF POS_OUT > 0.
            POS_IN = LINE_WIDTH_SRC - POS_OUT.
            MOVE <PDF_BIN>+POS_IN TO CONTENT_OUT-LINE.
          ENDIF.
        ENDWHILE.
      ENDLOOP.
      IF POS_OUT > 0.
      APPEND CONTENT_OUT TO lt_data.
      ENDIF.
    end inserted by sapnislina 22.12.06
    starting to create attachment to mail
        TRY.
           CLEAR send_request .
    Create persistent send request
            send_request = cl_bcs=>create_persistent( ).
    Build the document
            document = cl_document_bcs=>create_document(
                                i_type    = lc_type  "RAW
                                i_text    = lt_text  "def of output type
                                i_length  = '12'
                                i_subject = lw_objdes ).
    Attached the document object
            CALL METHOD document->add_attachment
              EXPORTING
                i_attachment_type    = 'PDF'
                i_attachment_subject = lw_objdes "definition of output
    type
                i_attachment_size    = '12'
                i_att_content_hex    = lt_data.
    completed first part to attached PO (pdf format) as attachment
    Now attach the PO related attachments to the mail..
    .... need to read from table DRAD and get all the attachment per PO
         at run time
         REFRESH: lr_po_pr."lt_return.
            CLEAR:   lr_po_pr,lw_return.
            MOVE  'ICP'  TO  lr_po_pr.
         CLEAR: lw_object.
    completed second part for PO related attachments
    Now prepare to send mail
    Add document to send request
         CALL METHOD send_request->set_document( document ).
    Get sender object
         sender = cl_sapuser_bcs=>create( sy-uname ).
    Add sender
         CALL METHOD send_request->set_sender
           EXPORTING
             i_sender = sender.
         LOOP AT lt_recpt INTO lw_recpt
                          WHERE NOT smtp_addr IS INITIAL.
          recipient = cl_cam_address_bcs=>create_internet_address(
    lw_recpt ).
    Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient
                i_express   = 'X'.
            CLEAR recipient.
         ENDLOOP.
    Send the document
        CALL METHOD send_request->send
          RECEIVING
            result              = sent_to_all.
    Catch any exception
          CATCH cx_bcs INTO bcs_exception.
              CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
                EXPORTING
                  msg_arbgb = bcs_exception->msgid
                  msg_nr    = bcs_exception->msgno
                  msg_ty    = bcs_exception->msgty
                  msg_v1    = bcs_exception->msgv1
                  msg_v2    = bcs_exception->msgv2
                  msg_v3    = bcs_exception->msgv3
                  msg_v4    = bcs_exception->msgv4
                EXCEPTIONS
                  OTHERS    = 1.
              p_retco = sy-subrc.
        ENDTRY.
      ENDIF.
      IF NOT result-tdfaxid  IS INITIAL OR                      " 422131
         NOT result-tdmailid IS INITIAL.                        " 422131
        CLEAR syst-msgv1.                                       " 422131
        IF NOT result-tdfaxid IS INITIAL.                       " 422131
          syst-msgv1 = result-tdfaxid.                          " 422131
        ELSEIF result-tdmailid IS INITIAL.                      " 422131
          syst-msgv1 = result-tdmailid.                         " 422131
        ENDIF.                                                  " 422131
        CALL FUNCTION 'NAST_PROTOCOL_UPDATE'                    " 422131
             EXPORTING                                          " 422131
                  msg_arbgb = 'VN'                              " 422131
                  msg_nr    = '095'                             " 422131
                  msg_ty    = 'I'                               " 422131
                  msg_v1    = syst-msgv1                        " 422131
             EXCEPTIONS                                         " 422131
                  OTHERS    = 1.                                " 422131
      ENDIF.                                                    " 422131
      IF result-userexit EQ 'C' OR
          result-userexit EQ 'E'.
        p_retco = '9'.
      ENDIF.
    ENDFORM.                               " ENDE
    end inserted
    Regards
    Nislina

    Hi Nislina,
    Could you please let me know how do you solve this issue.
    Code:
    if lt_binary[] is not initial.
    *     add attachment to document
             call method document->add_attachment
               exporting
                 i_attachment_type      = 'PDF'            
                 i_attachment_subject = 'My Attachment'
                 i_att_content_hex      = lt_binary.
      endif.
    Thanks & Regard's
    Sateesh

  • I am having trouble with pdf files  continuously get damaged file message when try to open downloaded pdf with adobe reader

    Cannot open downloaded pdf's with adobe reader. Have latest version of adobe program  continuously get damaged file message.  Anybody else having this problem?   Using imac with osx10.7.1 (latest lion)

    I am having the exact same problem. This is very disturbing.
    Lately I have been deluged with adobe update dialogues. I don't know whether this is real or some kind of bugus malware phenomenon.
    Imagine my surprise when I looked here in the forum and I am not alone.
    Kaufmann's remark that we shouldn't be using adobe reader doesn't explain why it is malfunctioning like this. I have been using the reader on Mac  OS for years, and I don't get what's happening now.
    Does anyone realy know what is going on?

  • DVD-MOV mpegstream clip error: "File open error: unsupported file type"

    I do it all the time this is the only time i've gotten this error, i use mpeg stream clip. I have a dvd I got from a DVR recorder, I open the dvd which shows 2 VOB files in the TS folder. the MENU gives "Warning: the stream may have timecode breaks." I "Fix Now" and it works fine. But i dont want the menu. the other VOB file in the TS folder, which should be the "movie I want" gives this error when opened,
    "File open error: unsupported file type"
    when I open anyway, I get an audio bar which has no sound, and no video.
    ANY IDEAS? I've been on this for hours PLEASE

    Hi,
    Do you have the [MPEG-2 component|http://www.apple.com/quicktime/mpeg2> installed on your computer? If not, you will need it to be able to convert VOB files.

  • I backed up my bookmarks to an external drive, rebuilt my system, and now when I try to restore from that file, I get "unsupported file type" How can I restore from this file?

    I backed up my bookmarks to an external drive, rebuilt my system, and now when I try to restore from that file, I get "unsupported file type" How can I restore from this file?

    Make sure that the backup file with the bookmarks has the correct file extension: .html for a HTML backup and .json for a JSON backup.<br />
    You can check that via the right-click context menu of that file and open the Properties.<br />
    If you are not sure about the file type then you can open the file in Firefox via "File > Open File"<br />
    A JSON backup will show as one long text line without line breaks and a HTML backup as a web page with clickable links.<br />
    A JSON backup starts with: {"title":"","id":1,"dateAdded":<br />
    An HTML backup starts with: <nowiki><!DOCTYPE NETSCAPE-Bookmark-file-1></nowiki>
    You may need to add quotes ("") around the name to rename the file to the correct file extension.
    See also:
    * http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Unable to restore bookmarks from XP to Windows 7 due to unsupported file type

    Im having problems transferring my bookmarks from xp machine to a Windows 7 machine. I just verified that both machines are running Firefox v. 4.0.1. I was advised to save the bookmarks.html file on the xp machine and when I copied it to the Windows 7 machine. I received the error that it is an unsupported file type. Can someone advise on how I can get this done? Thanks in advance.

    Give this a read, make special note to Copying files between profile folders.
    [[Recovering important data from an old profile]]

  • I have exported my bookmarks in JASON format now when I restore this one its gives error " Unsupported file type"

    I have exported my bookmarks in JASON format now when I restore this one its gives error " Unsupported file type"

    Hello UbaidUQ, any luck if you rename the file with no capital letters = .json, (no .JSON)
    thank you

  • I got a new Macbook pro in March and transferred all of my old files into the new macbook from my old one. But ever since then, my iPhoto just does not open up. It says 'error' every time I try to open it, but I am still able to attach the iPhotos saved

    I got a new Macbook pro in March and transferred all of my old files into the new macbook from my old one. But ever since then, my iPhoto just does not open up. It says 'error' every time I try to open it, but I am still able to attach the iPhotos saved to emails. Help! How do I get my iPhoto back?

    Thanks, Sig.
    The old computer is a 2.6 Ghz Intel Core 2 Duo
    The new one is a 2.3 GHz intel core i7
    In going over this, thanks to "tallking it out" with you, I did discover the Text Edit problem.  Because I've still been unable to get the new computer text size (fonts or whatever) to match the old computer, I did not notice that the curser is now different--the line midway down the curser has to be placed on the line I am working upon, otherwise the edits go elsewhere on the page.  Now, with a bit of difficulty, I am able to get Text Edit to work correctly.
    If you have any ideas as to why my menu bar and Text Edit type are still so slow, I'd love to have them. 
    (I went through the process you suggested earlier, re my Trackpad preferences, and found no improvement.)

  • Unsupported file type (.mov)

    I am using Adobe After Effects CS4 (9...)
    I am trying to create Andrew Krammer's ,,crumble" effect (http://www.videocopilot.net/tutorial/procedural_crumble/)
    If you skip at 23:44 you will see that he is adding an imported .mov file.
    Everytime i try to import a .mov file, i get the following error: After Effects error: Can't import file "NAME.mov": unsupported file type or extension.     ( 0::1 )
    I think I have what I need: QuickTime 7.7.1 (it's the latest version I found, right from Apple's website)
    (I don't know if this really helps:) When i click File>Export> QuickTime is disabled, not selectable. It says: QuickTime 7.4.1 or later required (even though i have 7.7.1)
    I do not really want to convert the .mov into anything else because I saw that the .mov file (from Andrew Krammer's video) don't display the background, only the dust (in my case). Other video types DO display the black background. The files I try to import to AE work (they can be opened with QuickTime, no errors)

    What is your OS? After Effects requires QuickTime. Is your AE up to date?

  • Red Box - Unsupported File Type - Large Tiff - Large Scans - 10,000 pixels

    Hello All,
    I am a user of Aperture 2.1, and I have grown to love the program except for one major issue. Large files that are imported into the program are simply unsupported.
    I scan 6x7 medium format negatives (8649x10712 @ 530.2 megs) and 4x5 negatives (very large drum scans) into my system (new 8 core, 12 gig ram, 512 meg vidcard, 10.5.2) and the issues begin. A thumbnail is properly built. Once the thumbnail is selected, and a preview is built, the image appears briefly and is replaced by a red box soon with the text "Unsupported File Type". If I change views to full screen all I see is a red box with the same text. Ie. I can't work the image.
    The files are perfectly fine. I work them in photoshop cs3 no problem, and I can view them with quick look preview no problem.
    This is highly frustrating as I work primarily in larger formats and create large prints!
    It seems like the bug occurs in files that have a side larger than 10,000 pixels. This is a massive issue to large format/panoramic workflow!
    I have called Apple tech support and the techs claim ignorance. That could mean they do not know of the issue which does not bode well for a solution. I'm in the dark. Please shed some light!
    Three questions:
    Is anyone else experiencing these issues?
    Is there a workaround that doesn't involve cutting file size?
    Has there been any acknowledgment from Apple support regarding this issue?
    I am most frustrated as Aperture is billed as a professional product, but it is unable to keep up with the demands of a working fine art photographer.
    Awesome product but needs some adjustments!
    photofl0w

    William, thanks for your input, but I feel that your position avoids the primary issue. Aperture is a Digital Asset Manager, and as such, should be able to manage digital image assets.
    From Aperture's Webpage: "See how Aperture lets you import, manage, and enhance your photos in one simple, integrated workflow." It says photos, not Raw photos. In fact, I'll take it one step further, in the tutorial CD that came with 1.5, the narrator mentions the 16-bit workflow in Aperture with Tiffs, more than once.
    I purchased Aperture for management and integrated workflow. Apple states: "Now it’s even easier to cull through shoots, enhance images, manage massive libraries, and deliver stunning photos." No where does it say that the functionality of the program is limited to RAW files. Ie. Apple never mentions that Large .tif files are not supported.
    I have 6x7 and 4x5 Scans, Masters, Working Images, Print files and Web images that I would like to organize, stack, label, rate, view versions simultaneously on my second screen, sort, arrange, and keyword. The program's basic functionality is thwarted by an issue that Apple has not owned up to.
    If Apple had mentioned in its literature that large .tif's weren't supported I would not be posting this, as I would not have purchased the software. But nowhere, not in phone conversations with Apple Techs (3), not on their own Forums where other end users have hit a massive workflow brick wall, and not even after I mentioned to a One on One guru, has Apple said, oh, yeah, we are aware of it and working on it. There is no transparency here.
    Now, I have purchased Aperture, learned it, and imported thousands of files into it. I like the program as I have seen it function with smaller files perfectly, but this large file issue needs to be overcome.
    Regarding editing images, yes I use photoshop for the majority of my post-production. I then use a finely tuned Colorburst Rip on a nice Epson for my Fine Prints. Those are the functions of the respective programs. Aperture is a DAM, a program that among other things allows the end use to manage their files effectively and maintain a strong workflow.
    Regarding space - esata is a beautiful thing.
    photofl0w

  • IDVD: Files exported from iMovie 11, one works, one "Unsupported File Type : Unknown format"

    I used footage from the same camera (taken on the same weekend using the same settings) in several different iMovie "projects". All were shared from iMovie 11 as "File" using the quality setting "SD 480p".
    In Quicktime Player, all ".mp4" files will play and they show the following info in its inspector:
    Format: H.264, 854 x 480
                  AAC, 48000 Hz, Stereo (L R)
    FPS: 29.97
    One exported file will drag, drop, and burn in iDVD just fine. The other two files show the error "Unsupported File Type : Unknown format" as soon as I try and drag them into iDVD.
    The only difference I can find is that the one file that works is about 803MB, while the files that don't work are 1.87GB and 3.98GB.
    All files and the iDVD project are in the same folder on my startup volume. I've tried deleting com.apple.idvd but that didn't help. I've tried rebooting and starting the iDVD project from scratch but I get the same results.
    Mac OS 10.9.1
    iMovie 10.0.1
    iDVD 7.1.2
    Any ideas?

    Hello Bengt and thank you again for the replies.
    As I mentioned in my previous posts, I'm using iMovie 10.0.1 which has very limited quality adjustments. In every case I chose the smallest size, which iMovie 10.0.1 calls "SD 480p (854 x 480)". I used this same setting on all exports.
    I still have iMovie HD (6.0.4) and iMovie '11 (9.0.9) on my iMac so I tried both of them. In both cases, they could import only the file that works in iDVD. Both older versions of iMovie choked on the longer movies shared from iMovie 10.0.1.
    I have many many hours into the editing of these clips and I do not want to have to go back and redo everything in an older version of iMovie. Might I be better off going with a different DVD creation software? Or am I out of luck? Because I can't really change iMovie 10.0.1's export settings, I'm afraid there's nothing I can do to get it to export it as something that iDVD can use (really, I can't even tell why it's different and why iDVD doesn't like it).
    The software "WonderShare DVD Creator" has no issue with any of the files I've exported from iMovie 10.0.1.    

Maybe you are looking for

  • Problem with Ipad2 upgrade connection timed out

    I'm trying to upgrade my ipad2 to ios5. After finishing download, it always said there is a problem due to connection timed out. Could someone help pls?

  • Community support group - how do I set this up?

    I would like to set up an Apple users club in my newly refurbished rustic chic Inn in SouthWest Norfolk (Bedingfeld Arms, Oxborough). How do I start? Many thanks, Catkin Parker www.bedingfeldarms.co.uk

  • HT204053 Stupid question, but how do I get to/access my iCloud?!

    Stupid question, but how do I get to/access my iCloud? All this time, I've been under the impression that every time I plug in & lock my screen, things on my phone are backed up in my cloud, but I've never been able to find it to check! And, yes, I'm

  • Saving scanned photos into iPhoto

    We've just bought a Canon Pixma MP620 and I want to save the photos directly into iPhoto. Is there anyway to do this? So far I've tried dragging and dropping into iPhoto (with it open) and it hasn't worked. Nor could I get iPhoto to import into its l

  • Flex Charting DateTimeAxis

    I have a problem in the Flex Charting with the DateTimeAxis. I have requirement to show more than 60 days data in days using the line chart. When I tried that, chart showing x-axis data point in months instead of days even though dataUnits mentioned