Popups in PDFs

Hallo zusammen,
Ich möchte zu einem PDF-Dokument Popus hinzufügen, die nur dann sichtbar werden, wenn man mit dem Cursor über einem Begriff stehen bleibt.
Wie kann man Popups in einem PDF-Dokument mittels Acrobat Professional V. 7 oder V 8 generieren?
Ist es möglich Bilder, Grafiken (Powerpoint) als Popups in ein PDF-Dokument einzufügen?
Und wenn ja, wie ?
Bitte helft mir dabei !!
Bitte schickt mir eine Antwort-Mail an:   [email protected]
Vielen Dank für die Unterstützung!!!
Grüße
Frank

Perhaps, but here's what Microsoft has to say at
http://msdn.microsoft.com/en-us/library/windows/desktop/aa511282.aspx
Segoe UI and Segoe are not the same font. Segoe UI is the Windows font intended for user interface text strings. Segoe is a branding font used by Microsoft and partners to produce material for print and advertising.

Similar Messages

  • Selection Popup before PDF FactSheet

    Hi Experts.
    I have a requirement to create a Popup directly before the PDF Fact Sheet.
    On this Popup I need Select Options (for example - which "Type of Activity" should be on the Printout)
    Afterwards the Select Options should be read in the Smartform (the PDF File)
    (Not matching Activities should not be printed)
    -> The Select Options have to be saved for each Customer.
    Has anybody done something like this before? Or can give me some ideas how to solve this?
    As far as I understand I need to...
    1) Modify the calling Event "Open PDF Factsheet".
    -> Open Selection Popup First.
    2 )If Select Options in PDF Fact Sheet had been entered...
    -> Save Selection Options for this Customer. (ZTable in Background)
    3)... use the Standard Event for "Opening the PDF FactSheet"
    4) In the Smartform -> Read Z-Table for the Customer and deselect the not needed information on the Printout...
    Thanks Chris
    Edited by: chris_ab on Oct 29, 2009 3:24 PM

    Nobody has a hint for me ?
    Can somebody comment on the way I would like to solve this issue?
    Thanks

  • I can't see interactive popups in pdfs on macbook pro

    I am using a new macbook pro. I am reading an interactive pdf with pop-up definitions for highlighted words... but when I roll over the words, the pop-up box is nowhere to be seen. Are there settings I must change?

    when you click on settings in your iphone (assuming you have iphone4).
    turn on Personal Hotspot.  stay on that page and see if your macbook see's your iphone now.

  • Display pdf in a popup window

    Hello @all,
    i want to convert a smartform to pdf and show the pdf in an second window or in a popup. When i click on a button in the application, a new window with the pdf should be open. Is this possible to show the pdf in a second window or in a popup. Can anybody help me?

    I think you need to create one window and display pdf in it.
    Try following code:
    1)  Create one Window
    2) Create the view to be displayed in popup (add pdf in this view)
    3)  Embed the view created in above step in the window created in first step.
    4)  Create following attribute in the Component controller:
         I) Z_WINDOW type ref to IF_WD_WINDOW
          Mark the attribute as u2018Publicu2019.
    Code to open Window in Popup
      DATA: api_component    TYPE REF TO if_wd_component,
      l_window_manager TYPE REF TO if_wd_window_manager.
      api_component    = wd_comp_controller->wd_get_api( ).
      l_window_manager = api_component->get_window_manager( ).
    Create window and pass parameters
      CALL METHOD l_window_manager->create_window
        EXPORTING
          modal        = abap_true
          window_name  = 'ZC_SO_ALV'
          title        = 'Test Popup'
          close_button = abap_true
        RECEIVING
          window       = wd_comp_controller->z_window.
      wd_comp_controller->z_window->open( ).
    Regards,
    Saket.

  • Problem in converting Smartform as PDF

    Hi experts,
    I am going to convert smartfrom as PDF.
    when i am going to execute the smartfrom first it is displaying print priview window ,if yes press print preview,smartfrom is dispalying.if i press back then one pop window will come to confirm PDF..if press yes..again it is showing print preview.if again i  press print preview option..then PDF will be genarted..
    but req is  the second Print preview window i have to avoid...so for this if deelete the code call function fmname after popup window( PDF conformation)..then PDF is not genaration...
    can anybody tell me what to do? as of now my code is
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'ZQMIN_GC_SF'
    IMPORTING
    FM_NAME  = GS_FMNAME.
    CALL FUNCTION GS_FMNAME
    EXPORTING
    GV_INVNO = GV_INVNO.
    CALL FUNCTION 'POPUP_TO_CONFIRM'
    EXPORTING
    text_question               = 'Do You Want to Create Guarantee Certificate as PDF'
    IMPORTING
    answer                       = lv_ucomm.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Check for PDF Conversion
    IF lv_ucomm EQ '1'.
    ls_control_param-getotf = 'X'.
    CALL FUNCTION GS_FMNAME
    EXPORTING
    ARCHIVE_INDEX       = toa_dara
    ARCHIVE_PARAMETERS  = arc_params
    CONTROL_PARAMETERS  = ls_control_param
    GV_INVNO = GV_INVNO
    IMPORTING
    document_output_info = lt_ssfcrespd
    job_output_info      = lt_job_output_info
    job_output_options   = lt_ssfcresop.
    lt_otf = lt_job_output_info-otfdata.
      CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
      EXPORTING
      percentage = 0
      text       = 'Generating the PDF file'.
      CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
      format                = 'PDF'
      max_linewidth         = 132
      IMPORTING
      bin_filesize          = lv_bin_filesize
      TABLES
       otf                   = lt_otf
       lines                 = lt_pdf_tab
      EXCEPTIONS
      err_max_linewidth     = 1
      err_format            = 2
      err_conv_not_possible = 3
      err_bad_otf           = 4
      OTHERS                = 5.
         IF sy-subrc  <> 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3
         endif.
    CALL FUNCTION 'WS_FILENAME_GET'
    EXPORTING
    def_filename     = '*.pdf'
    mode             = 'O'
    title            = 'Down load file'
    IMPORTING
    filename         = lv_file
    EXCEPTIONS
    inv_winsys       = 1
    no_batch         = 2
    selection_cancel = 3
    selection_error  = 4
    OTHERS           = 5.
    lv_full_path = lv_file .
          CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              bin_filesize            = lv_bin_filesize
              filename                = lv_full_path
              filetype                = 'BIN'
              confirm_overwrite       = 'X'
            TABLES
              data_tab                = lt_pdf_tab
            EXCEPTIONS
              file_write_error        = 1
              no_batch                = 2
              gui_refuse_filetransfer = 3
              invalid_type            = 4
              no_authority            = 5
              unknown_error           = 6
              header_not_allowed      = 7
              separator_not_allowed   = 8
              filesize_not_allowed    = 9
              header_too_long         = 10
              dp_error_create         = 11
              dp_error_send           = 12
              dp_error_write          = 13
              unknown_dp_error        = 14
              access_denied           = 15
              dp_out_of_memory        = 16
              disk_full               = 17
              dp_timeout              = 18
              file_not_found          = 19
              dataprovider_exception  = 20
              control_flush_error     = 21
              OTHERS                  = 22.
          IF sy-subrc  NE 0.
            MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ENDIF.
    Else.
    CALL FUNCTION GS_FMNAME
    EXPORTING
    GV_INVNO = GV_INVNO.
    endif.

    Hi Veena,
    Ur post is a little confusinng...From what i have gathered from your requirement, U want to supress the print preview of the samrtform.
    This could be done thru the control parameter - PREVIEW field, and NO DIALOG = 'X'.
    In case u dont want to issue a printout n just ahve the PDF downloadded, then  -
    *Setting for not issuing a printout and getting the OTF data
          ls_control_param-getotf = 'X'.
          ls_composer_param-tdnoprint = 'X'.
          ls_composer_param-tdimmed = ' ' .
    Let us know in case ur concerned issue is not pertaining to the above.
    Cheers,
    Varna

  • Rendering pdf document properly in JSP

    I am currently working on a Portal project, which requires generating a PDF file and passing this to a JSP file providing an option to the user to either view the PDF file or download and save it. I've accomplished the first part of file creation (I am using iText for generating the pdf document), but I�m unable to send the file from server to the client side (ie to the browser).
    The code
    response.setContentType("application/pdf");
    response.setHeader("Content-Disposition", "inline; filename=file.pdf");
    which works perfectly fine when used as a standalone to popup an PDF file in tomcat server but fails to accomplish to render the outputstream properly(the stream is rendered in the JSP page improperly as text instead of associating with the application for reading pdf document�s) in the Portal Server Environment. Can anyone throw some light into this problem?

    The code is in JSP.
    What is the difference in putting the code in JSP or servlet.
    How is it working in standalone mode in tomcat application server.

  • Open a Popup with commnadButtom

    Hello,
    can I open a Popup with a commnadButton? Und Load in the Popup a PDF`?
    I can open a PDF but only in self window :-(
    Thanks for help
       public String doActionShowPreview() {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            HttpServletResponse response = (HttpServletResponse)facesContext.getExternalContext().getResponse();         
            response.setContentType("application/pdf");
            response.setHeader ("Content-disposition", "inline");
            response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
            response.setHeader("Pragma:"," no-cache");
            Documents previewDoc = getEditDocument();
            List tagListForCreator = new ArrayList();
            Set tagList = previewDoc.getText();
            Iterator iter = tagList.iterator();
            while(iter.hasNext()) {
                DocumentText docText = (DocumentText)iter.next();
                XMLParserTagInfo info = new XMLParserTagInfo(docText.getTag(),docText.getText());
                tagListForCreator.add(info);
            Collections.sort(tagListForCreator);
           XMLInDesignCreator xmlCreator = new XMLInDesignCreator();
           xmlCreator.createXML(tagListForCreator,previewDoc.getDocName(),previewDoc.getDocName());
        File file = new File("C:\\tm\\preview\\"+ previewDoc.getDocName()+".pdf");
       //convert the file content into a byte array
       FileInputStream fileInuptStream = null;
       try {
           fileInuptStream = new FileInputStream(file);
       } catch (FileNotFoundException ex1) {
       BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInuptStream);
       ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
       int start = 0;
       int length = 1024;
       int offset = -1;
       byte[] buffer = new byte[length];
       try {
           while ((offset = bufferedInputStream.read(buffer, start, length)) != -1) {
               byteArrayOutputStream.write(buffer, start, offset);
       } catch (IOException ex2) {
           ex2.printStackTrace();
        try {
            bufferedInputStream.close();
            byteArrayOutputStream.flush();
            buffer = byteArrayOutputStream.toByteArray();
            byteArrayOutputStream.close();
        } catch (IOException ex3) {
            ex3.printStackTrace();
        response.setContentType("application/pdf");
        response.setHeader ("Content-disposition", "inline");
        response.setHeader("Expires:"," Wednesday, 27-Dec-95 05:29:10 GMT");
        response.setHeader("Pragma:"," no-cache");
        try {
            response.getOutputStream().write(buffer);
            response.getOutputStream().flush();
        } catch (IOException ex4) {
            ex4.printStackTrace();
        return "";
        }

    Do the following
    1) window.open('somePath/YOUR_JSF_PAGE .jsf') in your javascript code.
    2) Invoke doActionShowPreview() method in the constructor of your BackingBean.
    Hope this helps.
    Karthik

  • Opening TaskFlow as Popup

    Hi All,
    For Opening the task flow as popup. I have created 2 taksflows wiith one as .jsff and another one as .jspx.but for opening as a dialog it is accepting only .jspx but as per my requirment i need .jsff that is in bounded Task flow with page fragment.....Jdeveloper is not allowing me to create.kindly suggest why it is protesting and how can it be acheived.
    I am using Jdev 11.1.2.0
    plz kindly suggest a sol.
    I have seen this thread but no replys.....It may be usful for both the threads
    TaskFlow Region as a Pop Up inside another TaskFlow Region
    Regrads
    Peter

    Hi Frank,
    I am looking for a solution to develop a popup as a template or component in ADF since our app uses lots of popups. I try to build own buttons, like SAVE, APPLY, and CANCEL buttons.
    I have listened to many of your video and code corners. The following video shows the java controlled popup. It invokes a page fragment in the popup. The questionis : can this method used to popup a taskflow ?
    http://download.oracle.com/otn_hosted_doc/jdeveloper/11gdemos/ADF_Insider_Essentials/AdfFacesDialogOkCancelHandling/AdfFacesDialogOkCancelHandling.html
    I have two task flows, popup-parent-taskflow.xml and popup-taskflow.xml.
    The managed bean in popup-parent-taskflow.xml binds to the popup and table. The managedBean is in the Request scope
    The managed bean defined in the popup-taskflow.xml can't access to the popup and table. How is the table get refreshed ?
    "There is a pattern that explains how to do similar with Page Fragments, but honestly this is quite a lot of coding and doesn't allow your task flow to decoratively return values."
    Could you explain this statement ? Is this example you talked about ?
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/39-taskflow-in-popup-169181.pdf
    I would appreciate if you could suggest a best way to do popup for my case and provide the example for it.
    Thank you !
    David

  • Acrobat Preferences --- Internet...IE blocking popup - 9 Pro

    While using an application that creates adobe PDF documents, the application will render a popup Adobe PDF document when you run a report. When Adobe preferences for Internet are set to "Display PDF in browser", then the popup works just fine and shows in internet explorer or firefox just fine. But, acrobat is being opened within the respective browser window. If you uncheck the Web Browser Option "Display PDF in browser" then in internet explorer the application will not popup the PDF document unless you hold the CTRL key down. So even with the IE 7 pop-up blocker turned off, the application will not launch adobe and render the pdf unless you hold the CTRL key down before pressing the button to run the report. I am using Adobe Acrobat 9 Pro, Version 9.0.0

    Once you select, you can hit the create PDF button to create a PDF just out of the content you selected. You can see a demo at http://my.adobe.acrobat.com/p24281297/

  • ADF popups

    Hi All,
    I have a af:table (say main page) with list of rows of which some of the columns are editable and others are readonly.
    I also have a button on each row. When clicked, it opens up a popup.
    The popup in turn has a af:table(say popup) with list of rows with the checkbox on each row.
    So far it works great.
    When the checkbox is clicked in the popup, I want to copy one of the column(af:inputtext) on the current row from main page
    to the column(af:inputtext) on the popup so that when the commit button the popup is clicked, that copied get
    saved in the db.
    I have a managed bean on the checkbox that checks to see whether the checkbox is checked or not.
    In that managed bean how do I copy the value from main page to popup as explained above.
    Any sample code please...
    Thanks

    Hi,
    I developed this popup screen using below link only.
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/35-passing-values-to-popup-169177.pdf
    That is where I face the below problem I posted in original question.
    In the popup, I have a managed bean on the checkbox that checks to see whether the checkbox is checked or not.
    In that managed bean I trying to read the viewscope value using the below code.
    AdfFacesContext context = AdfFacesContext.getCurrentInstance();
    Map vScope = context.getViewScope();
    vScope.get("paramName");
    But it returns null. To confirm, I have the viewscope value on the outputtextbox in the popup, it shows correctly. Meaning the value is available.
    Any thoughts on this please?
    ------------

  • PDF Print Preview

    Hi experts,
    I have a requirement where I display the output of a program in popup in PDF format when user clicks on a button.
    I am able to do that and output is shown properly in PDF format.
    But now the problem is he wants PDF to be shown directly in 'Print Preview' mode.
    Can you please suggest me how it can be done.
    I am using 'get_Print_parameters' Function Module.
    Is there any parameter which we need to set for this purpose.
    Thanks in advance.
    Regards
    Vasu

    Hi,
    You can use following code --
    DATA: LV_CONTROL_PARAMETERS TYPE SSFCTRLOP.
    * Set relevant control parameters
    LV_CONTROL_PARAMETERS-DEVICE = 'PRINTER'. "Printer Device
    LV_CONTROL_PARAMETERS-GETOTF = L_X. "OTF output
    LV_CONTROL_PARAMETERS-NO_DIALOG = ' '. "L_X. No print dialog
    LV_CONTROL_PARAMETERS-PREVIEW = 'X'. " This would enable Preview SPACE is for No preview
    * Set relevant output options LV_OUTPUT_OPTIONS-TDNEWID = L_X. "Print parameters,
    LV_OUTPUT_OPTIONS-TDDELETE = ' '. "SPACE. Print parameters,
    Check this, this worked in my case.
    Thanks.
    Kumar Saurav.

  • IFrame Transperancy over PDF in HTML

    I have a requirement to set transperancy to the modal popup over pdf. Now every thing works well in Google Chrome but as Internet Explorer is widely used Browser all the over the world, I wanna make it work in IE as well.
    As you can see in the screenshot 1, I have a modal popup over pdf which looks beautiful.
    Now see the screenshot 2 when i set transperancy to modal popup its totally become whitish.
    Now see the screenshot 3 its working properly in Chrome which is exactly what i want to behave same in Internet Explorer. I have read out that google chrome has its internal pdf viewer so its working in Google Chrome.
    I am setting transperancy using Jquery library here is the code
    $("#pnlSpecialInstructions").fadeTo("slow", 0.5);
    $("#iFrameSplIns").fadeTo("slow", 0.5);
    If anyone want to see what i have tried till now you can check from this fiddle link : Click Here

    Number of things with this.
    1. IE may be the most widely used browser, but just barely anymore. Besides, a lot of people who are restricted to it at work also have (without any way to enable them) scripts and ActiveX blocked by an I/T department, to save them the hassle of constantly reformatting and reloading people's workstations. Using a jquery plugin which IE will block to display a PDF is probably not the best idea if you want everyone to be able to access it.
    2. I don't know if you're using (#2 in the world) Firefox's latest build (v.21) but since v.20 they have a built in PDF viewer and it won't properly display your PDF (which has nothing to do with the modal pop-up - they screwed up their design) so in order to be able to do anything with the PDF, the visitor will have to download it and open it in Reader or Acrobat, where your modal pop-up is now out of the equation.
    Until IE becomes more javascript friendly, to the point that employers will allow people to run scripts, and until Firefox gets their act together and actually builds a PDF viewer that will view all PDFs, you're going to be fighting a big battle with the top two browsers in the Internet world.
    Aside from all that, since this question is about tweaking a javascript for PDF viewing in specific browsers, it really has nothing to do with Reader.

  • Display values on new window from backing bean HashMap

    Hi,
    I need to open a new window when user clicks on some link from the current page. New window will display few values which are set once the link is clicked.
    I have created a bounded task flow with a jspx page added into the task flow. This jspx page contains a jsff page. While clicking on the link, I have called backing bean method which will create and set a HashMap containing key-value set which is used to display on new window.
    New window is created by javascript. And I am not able to get HashMap values which are set by bakingbean method.
    Is there anyway to solve this?
    Code:-
    Backing Bean method to open new window
    private void launchWindow () {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    // Taskflow parameters map
    Map <String, Object> params = new HashMap <String, Object> ();
    // Get taskflow URL to be opened in new window.
    String taskflowURL = ControllerContext.getInstance ().getTaskFlowURL (false, new TaskFlowId (
    AppsConstants.DESCRIPTION_TASKFLOW_DOCUMENT,
    AppsConstants.DESCRIPTION_TASKFLOW_ID), params);
    taskflowURL = taskflowURL.replaceAll("%2F", "/");
    ExtendedRenderKitService erks = Service.getRenderKitService (FacesContext.getCurrentInstance (), ExtendedRenderKitService.class);
    String jsScriptWindowOpne = "window.open(\"" + taskflowURL + "\", \"" + resourceBundleMapper.getString (AppsConstants.LBL_NOTI_DESC_NEW_WINDOW_TITLE) + "\");";
    try {
    erks.addScript (FacesContext.getCurrentInstance(), jsScriptWindowOpne);
    } catch (Exception e) {
    logger.log (Level.SEVERE, "Exception while adding javascript to open a new window in ExtendedRenderKitService object. " + e);
    New window jsff page
    <af:outputText value="#{backingBeanScope.notification.notificationDescriptionMap}" />
    Output
    I want to get values from this HashMap, to test the size/content of this Map, I have printed this Map.

    Hi,
    Yes its possible..
    A simple google search gave me this Result.
    Betw:
    you can also open taskflow as popup in your page(inline popup) instead of opening the taskflow in other browser window.
    53-taskflow-in-popup-169196.pdf
    Regards,
    Santosh.
    Edited by: Santosh Vaza on May 11, 2011 2:11 PM

  • New Layer Being Created When Timeline Effect Added

    I am working on a Flash file in which I am adding a Timeline
    Effect (5 frame fade out). Recently, instead of the transition
    being applied to the layer, in the frame length specified, Flash
    adds another layer with the standard 30 frames and it deletes the
    content from the 5 frames where I'm trying to add the fade out. It
    doesn't always do this. I had already successfully created a couple
    of fade-ins at the beginning of the timeline, but once it starts
    adding and deleting this stuff, it never goes back to normal. On
    the layer in question, I have a keyframe with a graphic, the
    graphic is stationary for 20 frames, then I inserted another
    keyframe and tried to apply the Timeline Effect beginning there.
    Help!!

    Change contentDelivery* of the popup to lazyUncached*. Default is lazy .Refer
    http://docs.oracle.com/cd/E21764_01/apirefs.1111/e12419/tagdoc/af_popup.html
    Also in addition , you might need to refresh the region (try the above standalone 1st) when you invoke the popup. Use refresh="ifNeeded" in the taskFlowBinding alongwith change of some input param . See why and more here
    http://www.adftips.com/2010/11/adf-ui-region-interaction-interaction.html
    Example simialr to your usecase here -
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/53-taskflow-in-popup-169196.pdf
    Edited by: Sudipto Desmukh on May 9, 2012 5:20 PM

  • Hi, The taskflow is not refreshing.

    I have used a Employee taskflow as a region.
    It is having a input parameter. I want to refresh the taskflow whenever the parameter changes.
    in page def:
      <taskFlow id="EmployeeTF1" taskFlowId="/WEB-INF/EmployeeTF.xml#EmployeeTF"
                  xmlns="http://xmlns.oracle.com/adf/controller/binding"
                  Refresh="ifNeeded">
          <parameters>
            <parameter id="inputParameter1" value="#{pageFlowScope.Deptid}"/>
          </parameters>
        </taskFlow>

    Check that your parameter value is changing or not ?
    Are you using region inside popup or on page ?
    if it is popup then set it's content delivery to lazyUncached and if on page then set partial trigger on parent component of region when you are changing parameter's value
    also check this link - http://www.oracle.com/technetwork/developer-tools/adf/learnmore/53-taskflow-in-popup-169196.pdf
    Ashish

Maybe you are looking for

  • Having problem with importing images to a java applet in web broswer

    I'm creating a mini 2d game just for fun and I am running it as a applet with the JApplet class. This is my html file. <html> <body> <applet code=ambiDexApplet.class name=ambiDexApplett archive=ambiDexApplet.jar      width=640 height=480>      <param

  • Photoshop CS6 Installer Won't Launch on Mac OS 10.8.2

    I've downloaded the Photoshop CS6 disk image but when I open it and then double-click on the installer to launch that, there is no response. I've tried the suggestions in this help document but have had problems with that as well: http://helpx.adobe.

  • Copying of PAT file..

    Dear SAP Guru's, how to copy the PAT file to Z.PAT file... here we want to copy  the language fiel(>PAT ) file Z and store into one request..so please can any one help me out how to do the convertion the .PAT file to Z .PAT file.. Here we have one SA

  • Email attachment won't open correctly

    I get a weekly updated excell attachment in an email and the new attachment doesnt open only a previous file does.  how do i force it to refresh and open the new file?

  • My computer stopped recognizing my 6th gen nano.  i have unstalled and reinstalled itunes.  any other suggestions.

    My computer stopped recognizing my 6th gen nano.  I have un then reinstalled itunes as I was prompted.  Still nothing.  My account is up to date and my last purchase was a few weeks ago.  Apple wants me to purchase @ 29.99 an opportunity to speak to