Rollover areas slow to show in html/pdf format

Hi
I have a series of rollover shapes with text appearing when the user hovers over the shapes. However when viewing the learning in pdf/html it takes a good 10 seconds or longer for the rollover function to appear,  if at all. It's only happening with this one slide which only consists of shapes and rollovers. Any ideas?
Thanks
Not currently allowing me to upload image to support this questionl... will continue trying

Perhaps something on your slide has become corrupted.
Take a backup copy of your project, then try this:
Create a new blank project CPTX of the same dimensions as your current project and copy/paste all slides into the new shell project.  Then test to see if the issue remains in the new project.
If it does remain, try dragging groups of objects off stage into the scrap area so that they will not be published with the output and test publish again to see if removing certain objects seems to resolve the issue.
If there are any Advanced Actions on this slide, delete them and see if that makes a difference.
Let us know how this works out.

Similar Messages

  • Error in generating HTML, PDF format

    Hi guys
    I am using Oracle Reports 6i with ORACLE 9i Database.
    After generating my report when i tried to generated report output in HTML or PDF format then system return following error message.
    PDE-PER001 Internal error (REP-3335. Unhandled Internal CA Error. depep 2).
    Remember when i tried to generate HTML or PDF format on other PC file generated successfully.
    Best Regards.
    Hassan Raza

    hello,
    you might want to contact oracle support services. maybe you need a patchset or so.
    thanks,
    ph.

  • Where are some samples showing the various output formats?

    Are example PDFs with various output conversions from ExportPDF available on this site?
    I have looked around for a while on this site and did not find any.  It would be helpful to see several PDF files and their conversions to the different output formats.  In particular it would be nice to see how converting to Excel and MSWord are handled for a few different PDF documents.

    sorry. i should clarify this. I know where they are. I would like to know, how can i force them to be saved to, and always be read from, another place, like an external disk?
    Thanks for any pointers.

  • What are methods for converting otf to pdf format in sap script

    Hi,
    I have a requirement in script i have to convert that that otf file to pdf format,when i use function modules its corrupting that pdf file,So i want convert otf to pdf using class method any one can help me for that.If any sample coding for class method.
    Thanks.

    ok
    CALL FUNCTION 'CONVERT_OTF'
         EXPORTING
           format                = 'PDF'
    *      max_linewidth         = 255
         IMPORTING
           bin_filesize          = lv_bin_filesize
    *      bin_file              = pdf_xstring
         TABLES
           otf                   = lt_otf
           lines                 = lt_pdf_table
         EXCEPTIONS
           err_max_linewidth     = 1
           err_format            = 2
           err_conv_not_possible = 3
           err_bad_otf           = 4
           OTHERS                = 5.
    CALL FUNCTION 'GUI_DOWNLOAD'
         EXPORTING
          bin_filesize                    = lv_bin_filesize
          filename                        = c_name
          filetype                        = 'BIN'
    *     APPEND                          = ' '
    *     WRITE_FIELD_SEPARATOR           = ' '
    *     HEADER                          = '00'
    *     TRUNC_TRAILING_BLANKS           = ' '
    *     WRITE_LF                        = 'X'
    *     COL_SELECT                      = ' '
    *     COL_SELECT_MASK                 = ' '
    *     DAT_MODE                        = ' '
    *     CONFIRM_OVERWRITE               = ' '
    *     NO_AUTH_CHECK                   = ' '
    *     CODEPAGE                        = ' '
    *     IGNORE_CERR                     = ABAP_TRUE
    *     REPLACEMENT                     = '#'
    *     WRITE_BOM                       = ' '
    *     TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *     WK1_N_FORMAT                    = ' '
    *     WK1_N_SIZE                      = ' '
    *     WK1_T_FORMAT                    = ' '
    *     WK1_T_SIZE                      = ' '
    *     WRITE_LF_AFTER_LAST_LINE        = ABAP_TRUE
    *     SHOW_TRANSFER_STATUS            = ABAP_TRUE
    *     VIRUS_SCAN_PROFILE              = '/SCET/GUI_DOWNLOAD'
    *   IMPORTING
    *     FILELENGTH                      =
         TABLES
           data_tab                        = lt_pdf_table
    *     FIELDNAMES                      =
        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 <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    TRY.
           GET PARAMETER ID 'RECEIPTENT' FIELD lvs_recipient1.
           send_request = cl_bcs=>create_persistent( ).
    *      lt_attach_bin = cl_document_bcs=>xstring_to_solix( ip_xstring = lt_solix ).
           APPEND 'Test message' TO lt_text.
           l_sub_50 = lc_test1.
           document = cl_document_bcs=>create_document( i_type    = 'RAW'
                                                        i_text    = lt_text
                                                        i_subject = l_sub_50 ).
           document->add_attachment( i_attachment_type    = 'PDF'
                                     i_attachment_subject = 'script.pdf'
                                     i_att_content_hex    =  lt_attach_bin ).
           l_sub_line = lc_test1.
           TRY.
    * Build subject line for email.
               CALL METHOD send_request->set_message_subject
                 EXPORTING
                   ip_subject = l_sub_line.
             CATCH cx_send_req_bcs INTO loref_obj_error.
               PERFORM sub_catch_error1 USING loref_obj_error.
           ENDTRY.
           send_request->set_document( document ).
    *      sender    = cl_cam_address_bcs=>create_internet_address( '[email protected]' ).
           recipient1 = lvs_recipient1-objkey.
           recipient = cl_cam_address_bcs=>create_internet_address( '[email protected]' ).
    *      send_request->set_sender( sender ).
           send_request->add_recipient( i_recipient = recipient
                                        i_express   = 'X' ).
           sent_to_all = send_request->send( i_with_error_screen = 'X' ).
           COMMIT WORK.
         CATCH cx_bcs INTO bcs_exception.
           MESSAGE 'eee' TYPE 'S'.
           EXIT.
       ENDTRY.

  • Barcodes don't show up in PDF format

    Hi Tim, Everyone...
    Well recently I started the testing to print barcodes in the documents and reports where we need them.
    I did all the needed set up (Tim, your posts for Barcodes 101 and 102 are very helpful): I upload the font, set the family fonts... I even set in the template properties my fonts and all.
    HOWEVER... when I try the PDF version, the barcodes don't show up... for EXCEL, HTML, etc, they do, but no for PDF.
    Any thoughts about what could be going on?
    Thanks in advance

    Hi,
    Something to check is that the Font Family Name in the Font Administration when you create the font in XMLP, MUST BE exactly the same as the name of the font when it is selected in MS Word. If it is not, then XMLP will not know what font to pick up.
    Please check that this is correct in your situation.
    Kind Regards,
    Cj

  • Inserting Images and Logos - works in the edit mode, but does not save nor show in final PDF format - help?

    I have tried several times - but when I load a logo or image in to a form template - it shows up on the template in edit mode but when I save it for PDF final format and use - the image or logo disappears. What I am doing wrong?

    Is this a form that you're creating in FormsCentral?

  • OLE images are not getting transfered to the pdf format

    After executing the oracle report file 6i and while sending the report file directly from the report screen to the microsoft outlook mail by clicking the mail option from the report, the OLE Images are NOT getting converted to the mail attachment. Rest of the data is getting converted fine.

    hope this is not the correct forum to place this question.
    if not, mention DB and OS versions and state your problem more clearly
    mark answered post as helpful / correct*

  • Is html/pdf output format from BO 508 compliant?

    Hi Experts -
    I heard BO reporting tool can output html/pdf format.  Are they 508 compliant?  If not, how can I make them into 508 compliant please advice.
    Thanks

    Hi
    You can make it 508 complaint  by choosing/check marking this option from BusinessObjects InfoView > Preferences > Webi > 508 Complaint.
    Please note that this forum is not the right area to discuss BO technical questions.
    Raise your future queries at: SAP BusinessObjects Web Intelligence
    Hope this helps.
    Best,
    DeepB

  • Smartforms PDF format

    Hi Experts,
    Is their any options available to show smartforms in PDF format from standard transactions like vf02, without changing the Driver program.
    I assigned in NACE transaction as smartform type as PDF but inspite of that the smartform is not coming in pdf format.
    Please help me.
    Thanks & Regards
    Birendra Kumar

    hi,
    There is a way to download smartform in PDF format.
    Please do the following:
    <b>1. Print the smartform to the spool.
    2. Note the spool number.
    3. Download a PDF file (Acrobat Reader) version of the spool by running Program RSTXPDFT4 and entering the noted spool number.</b>
    or.
    <b>Migrating a PDF-Based Print Form</b>
           1.      Go to the Smart Forms initial screen (transaction SMARTFORMS).
           2.      Choose Utilities> Migration> Interactive Form--> Export.
           3.      In the dialog box, enter the name of the Smart Form that you want to migrate, the name of the PDF-based target form, and the target interface. The system suggests the name of the Smart Form as the name for the target form and target interface. You can change these names. The target form and the target interface can have different names.
           4.      Choose Continue.
           5.      The system displays the Settings dialog box where you can flag various options for migration. To activate the selected options and close the dialog box, choose Continue.
    To view additional information about a particular option, select the option, and press F1.
           6.      In the dialog box Create Object Directory Entry, enter a package for the interface, or save it as a local object.
           7.      Assign the form to a package, or save the form as a local object.
           8.      The system migrates the form.
           9.      If no errors occur during the migration, you can activate the new interface and the PDF-based form. If you see an error message, read Migration with Errors or Warnings below.
    <b>Activating an Interface and PDF-Based Print Form</b>
    If the form was migrated without errors, the system returns a corresponding message. You now have a PDF-based form (consisting of a form and interface) that you can edit. Initially, migrated forms and interfaces are always inactive and therefore have to be activated before a call can be made from the application.
    To activate or edit the form, choose Utilities> Migration>Interactive Form-->Edit.
    The system displays the initial screen of the form builder for PDF-based forms. After you have activated the form, you can "switch runtime" as described below.
    <b>Switching Runtime</b>
    To call the PDF-based form from the application without changes to the ABAP program and formal parameters, proceed as follows:
           1.      Choose Utilities>Migration> Interactive Form-->Switch Runtime.
           2.      In the dialog box Switch Runtime, enter the name of the Smart Form and the name of the PDF-based form. In the Runtime Type field, select the form that you want to output at runtime.
           3.      If the PDF form is assigned to a transportable package, you have to assign the runtime switch to a transport request. If this is the case, the system automatically displays a corresponding dialog box.
    <b>Migration with Errors or Warnings</b>
    If errors or warnings occurred during migration, and the Smart Form was migrated only partially or not at all, a log is displayed. This log is written to the application log and is kept in the system for a week.
    To display the log within this time period, choose Utilities>Migration>Interactive Form-->Display Log.
    A log is generated for each migration run. If you migrate a Smart Form more than once, you receive multiple logs. Select a log to see the list of the properties that were not or only partially migrated. Each message in the log starts with the node name from the Smart Form, which enables you to identify the source of the error in the form.
    regards,
    Ashokreddy.
    Message was edited by:
            Ashok Reddy
    Message was edited by:
            Ashok Reddy

  • Not Able to Print in PDF Format Apex

    we are not able to print in pdf format with using a template, if we use default layout we are getting a pdf output,
    Can any one please help me on this issue....
    Thanks
    Malleswar

    Hello Malleswar,
    we are not able to print in pdf format with using a template, if we use default layout we are getting a pdf output,If your scenario with APEX Listener is generally capable of producing a PDF when using a working template, than the error is very likely to be in your template, not in APEX Listener.
    If that's the case, you'll probably find more people with experiences on how to build custom xsl-templates into your APEX application in the APEX forum: {forum:id=137}.
    If you decide to post there (or even if you think it's better to continue here), please provide information on your APEX and APEX Listener version and whether you see some error information in APEX Listeners log when trying your own template or not. If you don't see anything there right now, enabling debug mode will make the log more verbose and probably provide a hint on which part of your template can't be processed properly by the FOP built into APEX Listener.
    -Udo

  • Bleed area not showing in a PDF exported from InDesign

    Hi,
    I created a document in InDesign with a border that goes to the edge. To make sure that the border doesn't get cut off in printing, I added a bleed and brought the border to the bleed to insure against that happening. However, when I export the file to a PDF, it doesn't show the bleed, even if I ask to include crop marks or bleed marks. Is there anyway to make sure the bleed shows in the PDF?
    Thanks!

    please check if the setting in the printer are correct and if the mark and bleed are included when exporting the PDF .
    Also what is the PDF option that you are choosing and steps to recreate the issue or a screen shot please .
    what PDF printer driver are you using ?
    Help document : InDesign Help | Printer’s marks and bleeds

  • In outlook 2013 emails,pdf attachments are not showing in pdf formats

    Hi,
    We are using outlook 2013 as pop account for our official email communication.One of the laptop is having windows 7 professional operating systems and the email we are using as outlook 2013 in that laptop.
    The issue is that when we try to attach the pdf documents in outlook 2013,it is attaching but it is not showing in pdf format and it is showing as notepad or word file.
    when we try to open the notepad ,word file,it is opening in pdf format and also the client is receiving in pdf format.
    If we attach the pdf document in email,it should show in pdf format.
    Some settings are changed and i need your support to fix the issue.
    Regards
    Pradeep

    Hi,
    Are the PDF files showing with the PDF icon or other icons in your local disk?
    Please start Outlook in sate mode and test again. To do this, press Windows key + R to open the Run command, type
    outlook /safe and press Enter.
    In addition, you may also try to clean out the Temporary Outlook Files folder to check the result. See:
    http://www.howto-outlook.com/faq/securetemp.htm
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Newest Adobe Reader not working with 8.1 IOS...Adobe icon does not show when pdf docs are saved...also printing pdf documents take forever.  I uninstallled and reinstalled...issues continue

    Latest AdobeReader not working properly with 8.1 IOS...Adobe icon does not show on saved PDF's and printing from PDFs takes forever. I uninstalled and reinstalled latest Reader

    zoer1,
    Adobe icon does not show on saved PDF's
    Would you provide more details about the problem?  A screenshot would be helpful.
    The following FAQ document describes the steps to add a screenshot to your forum message.
    How to add a screenshot to a forum message from iPad/iPhone
    Regarding printing PDF documents...It depends on the PDF document that you are trying to print.  In general, it will take longer to print more complex and larger PDF documents.
    If you are willing to share your PDF document (that takes forever to print) with us at [email protected], we can test it with the same version (11.6.3) of Adobe Reader on different iOS versions (iOS 7.x vs. iOS 8.x).  Please include the link to this forum (https://forums.adobe.com/thread/1616231) in your email message for reference.
    Actual printing is handled by iOS (not by Adobe Reader) via AirPrint over Wi-Fi connection.  We've heard from other users about iOS 8 Wi-Fi connectivity problems.
    You may also want to search for similar issues on Apple Support Communities.

  • CC Bridge slow-.  adjustment brushes not showing size, adjustments when done blind are slow to react

    I am running Imac 2.7 GHz    16 gb ram    600 gb hard drive available
    adjustment brushes not showing size, adjustments when done blind are slow to react.

    Bridge is far more than a file browser.   Bridge does what lightroom does.
    When working with Raw  files, there are tools,   **adjustment brushes** that allow you to dodge and burn raw files.
    These brushes are size adjustable and now with CC, I can not see the size of the tool I am using.
    So you might want to look at Bridge differently, as it is a very powerful tool.
    Anyone else have a similar experience with CC version of Bridge?

  • When opening attachments from my email, they are opening in HTML.pdf.  When viewing, they are nothing but symbols. Any ideas?

    When opening an attachment from my suddenlink email, the attachment opens in html.pdf.  When I use my gmail account, the attachment opens fine.
    Any ideas.  Thanks.

    Install the Flex:Player App;  http://itunes.apple.com/app/flex-player/id451024857?alreadyRedirected=1&mt=8
    Then you can open the movies, keep tapping on them and choose Open in Flex:Player.

Maybe you are looking for

  • A follow up to redownloading mtLion

    My menu dock, (Downloads), shows lion "paused".  The downloads window just showed the amount of the mb loaded.  Reporting a problem, from my paid receipt, sent me to a restart paused download, but  I can't find it. In my apps section of itunes, it do

  • Creation of data type

    hi all. sorry i just want some information in creation of data type which i svery ease to solve. and it is i had seen one data type which was creatd by my colleague and its haveing occurance 1..unbounded for some and 1..10 for remaining elements and

  • Is Adobe Acrobat 7.0 Professional compatible with Windows 7?

    I've ordered Acrobat XI Pro, but it may be a week or two before I receive it.  I need to make some pdf files from WordPerfect files and I already have Acrobat 7.0 Pro.  I was hoping to be able to use the 7.0 until I receive the version XI.

  • Call webservice from abap

    Hello, I use the following code to call web service from abap, but in the method "http_client->receive"  i see "http_communication_failure = 1" . this is the code: DATA: SMS_TEXT       TYPE STRING,        SMS_TEXT_UTF   TYPE STRING,        SEND_STRIN

  • URGENT:Problem in a mapping with 8 tables in JOIN and using the DEDUP op.

    I have an urgent problem with a mapping: I must load data from 8 source tables (joined togheter) in a target table. Some data from 1 of the 8 tables have to be deduplicated, so I created a sort of staging table where I inserted the "cleaned" data, I