Interactive objects disappear in Reader 9.

I don't know if anyone else is having this problem and I can't seem to find anything when I google it. I'm using Indesign CS3 to create a form with interactive objects such as checkboxes and pop-up windows. I then use Acrobat Pro 8 to add text fields and enable usage rights so that the form data can be saved. As long as I don't enable usage rights in Acrobat I can open the form in Reader 9 and all the text fields, checkboxes, and pop-ups are fine ... i just can't save any data that is input. If I do enable usage rights then when I open the form in Reader 9 I see the interactive objects for a split second and then they disappear. Reader 7 & 8 don't seem to have this issue so I'm not sure if this is a bug or I'm just missing something in the export options.
I've uninstalled and reinstalled everything and have tested this on multiple computers so I'm at brick wall now. I would appreciate any advice anyone can give.
Thank you

>my department is dealing with thousands of students that need to be able to save what they type on the pd
Better be careful with that. You could very possibly be violating the End User License Agreement.
Enabling forms with Acrobat is for low usage amounts. You wouldn't want to get your school in hot water.

Similar Messages

  • What are the order of interactive objects

    If you have two interactive objects on top of each other what are the rules regarding which shows up on top.
    for instance if you have a MSO slideshow and you try to put a button on top it will disappear behind the MSO on the iPad, I can work round this by putting the button inside all states of the MSO
    But are there any guidelines about which form of interactivity out ranks another?

    In most instances, the z-order determines which overlay stays on top when overlays are in a stack. In your example, you mention that when you place a button on top of an MSO, the MSO covers the button. That's not my experience. In a quick test, I overlapped buttons and an MSO, and I moved the top buttons to the front and the bottom buttons to the back. Here's what I got:
    In this example, DPS honors the z-order. You can interact with both the buttons (even if they're hidden) and the MSO.
    When you overlap interactive objects such as image sequences, inline videos, and slideshows, the z-order of the source objects determines which objects move to the front. Activating an overlay brings it to the front of inactive overlays. If multiple overlays are activated, the z-order determines which object is in the front.

  • PDF file will not let me add an interactive object

    Quick run down of my problem...
    The company I work at just got a new logo, and has to update a LOT of pdf's logo from the old one, to the new one... A way I found how to do this with minimal time is to create a button in acrobat pro, place it over the old logo, and then switch the button to "show icon" only and insert the new logo as an icon. This worked great for about 5 forms... until now.
    I just hit a document that for whatever reason, the "interactive objects" actions are all grayed out, including the "add a button" option, which is what I need to use. I have no idea why this particular form is different from the others, but I can't for the life of me figure out why the options are grayed out on this form. The only difference I can visibly see on this document is that there is a "print form" button at the bottom... but would that button not allow me to add anything else? Also, if that IS the case, I can't figure out how to delete that "print form" button.
    Any help would be greatly appreciated, as I need to switch these logos out asap. Thanks team.

    Ah, yes. it has "make changes to the document" checked as "not allowed".
    Is there any way to get around this? I imagine that whoever made this document up years ago clicked to make it non-editable, without any thought to the fact that it may need to be edited down the line (I can safely say that whoever created the original file most likely does not work here any longer so it will be near impossible to get a hold of it).
    Is there a way I can save the file in a different format that would allow me to edit that file? Or something else I could do? It's a pretty intricate form and I really don't want to have to rewrite the entire thing just to change the logo at the top if theres another way around it.
    Thanks!

  • Interactive object oriented alv

    hi friends,
         i want interactive object oriented alv report. i want some example program for that.

    try like this
    *& Report  ZALV_OOP
    REPORT  zalv_oop.
          CLASS lcl_event_handler DEFINITION
    CLASS lcl_event_handler DEFINITION .
      PUBLIC SECTION .
        METHODS:
    *--Double-click control
        handle_double_click
        FOR EVENT double_click OF cl_gui_alv_grid
        IMPORTING e_row e_column es_row_no.
      PRIVATE SECTION.
    ENDCLASS.                    "lcl_event_handler DEFINITION
          CLASS lcl_event_handler IMPLEMENTATION
    CLASS lcl_event_handler IMPLEMENTATION .
    *--Handle Double Click
      METHOD handle_double_click .
        PERFORM handle_double_click USING e_row e_column es_row_no .
      ENDMETHOD .                    "handle_double_click
    ENDCLASS .                    "lcl_event_handler IMPLEMENTATION
    TABLES : mseg.
    DATA : BEGIN OF itab OCCURS 0,
            mblnr LIKE mseg-mblnr,
            matnr LIKE mseg-matnr,
            menge LIKE mseg-menge,
           END OF itab.
    DATA : gr_alvgrid TYPE REF TO cl_gui_alv_grid,
           gr_ccontainer TYPE REF TO cl_gui_custom_container,
           gt_fcat TYPE lvc_t_fcat,
           gs_layo TYPE lvc_s_layo.
    DATA gr_event_handler TYPE REF TO lcl_event_handler .
    DATA : ok_code LIKE sy-ucomm.
    DATA : t_mat LIKE mara-matnr.
    DATA: variant TYPE disvariant.
    SELECTION-SCREEN : BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS : s_mblnr FOR mseg-mblnr.
    SELECTION-SCREEN : END OF BLOCK blk1.
    START-OF-SELECTION.
      SET SCREEN 100.
      CREATE OBJECT gr_event_handler .
      PERFORM get_data.
      PERFORM dis_data.
    *&      Form  get_data
          text
    FORM get_data.
      SELECT mblnr matnr menge FROM mseg INTO CORRESPONDING FIELDS OF TABLE itab
       WHERE mblnr IN s_mblnr.
      variant-report = sy-repid.
      variant-username = sy-uname.
    ENDFORM.                    "get_data
    *&      Form  dis_data
          text
    FORM dis_data.
      IF gr_alvgrid IS INITIAL.
        CREATE OBJECT gr_ccontainer
          EXPORTING
            container_name              = 'CC_ALV'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc  0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT gr_alvgrid
          EXPORTING
            i_parent          = gr_ccontainer
          EXCEPTIONS
            error_cntl_create = 1
            error_cntl_init   = 2
            error_cntl_link   = 3
            error_dp_create   = 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.
        PERFORM create_fcat CHANGING gt_fcat.
        PERFORM create_layout CHANGING gs_layo.
        CALL METHOD gr_alvgrid->set_table_for_first_display
          EXPORTING
            is_variant                    = variant
            i_save                        = 'A'
            is_layout                     = gs_layo
          CHANGING
            it_outtab                     = itab[]
            it_fieldcatalog               = gt_fcat
        IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SET HANDLER gr_event_handler->handle_double_click FOR gr_alvgrid .
      ENDIF.
    ENDFORM.                    "dis_data
    *&      Form  create_fcat
          text
         <--P_GT_FCAT  text
    FORM create_fcat  CHANGING pt_fcat TYPE lvc_t_fcat.
      DATA : ls_fcat TYPE lvc_s_fcat.
      ls_fcat-fieldname = 'MBLNR'.
      ls_fcat-coltext = 'Material Doc.'.
      APPEND ls_fcat TO pt_fcat.
      ls_fcat-fieldname = 'MATNR'.
      ls_fcat-coltext = 'Material'.
      APPEND ls_fcat TO pt_fcat.
      ls_fcat-fieldname = 'MENGE'.
      ls_fcat-coltext = 'Quantity'.
      APPEND ls_fcat TO pt_fcat.
    ENDFORM.                    " create_fcat
    *&      Form  create_layout
          text
         <--P_GS_LAYO  text
    FORM create_layout  CHANGING ps_layo TYPE lvc_s_layo.
      ps_layo-zebra = 'X'.
    ENDFORM.                    " create_layout
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'ZALV_OOP'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
          text
    MODULE user_command_0100 INPUT.
      ok_code = sy-ucomm.
      CASE ok_code.
        WHEN 'BACK' OR 'UP' OR 'CANC'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  handle_double_click
          text
         -->I_ROW      text
         -->I_COLUMN   text
         -->IS_ROW_NO  text
    FORM handle_double_click USING i_row TYPE lvc_s_row
                                   i_column TYPE lvc_s_col
                                   is_row_no TYPE lvc_s_roid.
      READ TABLE itab INDEX is_row_no-row_id .
      IF sy-subrc = 0 .
        IF i_column = 'MATNR'.
          t_mat = itab-matnr.
          SET PARAMETER ID 'MAT' FIELD t_mat.
          CALL TRANSACTION 'MM03' AND SKIP FIRST SCREEN.
          SET PARAMETER ID 'MAT' FIELD space.
        ELSEIF i_column = 'MBLNR'.
          CALL TRANSACTION 'MIGO'.
        ENDIF .
      ENDIF.
    ENDFORM .                    "handle_double_click
    here in screen 100 i have taken one custom control with name cc_alv

  • Scores can be assigned to non interactive objects or scores cannot be assigned to interactive objects is true or false?

    is

    ???? What do you mean, please. Only interactive objects and question slides
    can have a score. Some learning interactions are interactive as is
    Drag&Drop.

  • Scores can be assigned to non interactive objects or scores cannot be assigned to interactive objects in adobe captivate?

    Scores can be assigned to non interactive objects or scores cannot be assigned to interactive objects in adobe captivate?

    ???? What do you mean, please. Only interactive objects and question slides
    can have a score. Some learning interactions are interactive as is
    Drag&Drop.

  • Creation of Interaction object programatically for Business partner

    Hello,
    How to create Interaction object ( BUS20004  )programatically for  Business partner ? If anybody worked on it , plz let me know how we can create it for BP.
    BOR object for InteractionObject is: BUS20004 Interaction Object
    Regards
    Sandeep

    Dear Sandeep,
    Please use FMs CRM_ORDER_MAINTAIN and CRM_ORDER_SAVE to create Interaction Record using the program.
    Thanks
    Vishal

  • Interaction Object not able generate

    Hi,
         Iam working on CRM 5.0 and iam aware of this Interaction object functionality but after configuring the Interaction object in the IMG where i have activated for all the four application, ie activity,factsheet,win and webclient,Also have setup for the Marketing scenario,But when i execute the campaign for a target group which contains some BP and when the job is compaleted without error, I try to look back for any Interaction object document for all the BP's in the target group but cant find the IO,
                   Iam i missing anything,has anyone used the interaction object and can anyone expalin how to use it and see the result,
    Answer to this will be greatly appreciated and will be rewarded,
    Regards,
    Naveen Parimi

    Hi Naveen K. Parimi,
    I have done all the settings as you said for IO, i.e.
    1. Activated IO for all the four application areas in IMG under CRM_> BF
    2. Define Communication medium and chose communication method as EMAIL
    3. I left Transaction Type to empty
    4. And executed the campaing with communication medium which I configured for IO
    but still I am not able to find the IO for BPs in TG for whom I executed the campaign. Can you plz tell If I have missed any thing.
    And also please tell me can we use IO for communication medium "FILE EXEPORT". If yes, can you please tell how it can be achieved.
    Thanks,
    JM

  • Make a parallax scrolling object disappear?

    I've been messing around with parallax scrolling and I'm at a point where I want to make the scrolling object disappear. So far the only way to make it vanish is to let it scroll off the edge of the page by default or to adjust the Opacity Scroll Effect to make it "fade". However, I'd like to have the object give the illusion that it's going inside/behind a stationary object on the page. The only thing I can think of is defining a viewport or something of the sort, but I don't know if that's possible in Muse. Anybody have any suggestions to create this illusion?

    Hi
    Using fading effect is the correct approach to the purpose you are after disappearing an object with scroll.
    Regarding the illusion that you want to create will be somewhat manual , where you have to use 2 identical scroll items . One starts scrolling normal as you have mentioned above and then disappears , other one starts scrolling on behind the page object on same time when previous identical object has disappeared. A bit tricky but you will have to specify the key position of both identical items such as way that one fades in and another fades out. This way it would be exact same effect.
    You can give it a try.
    Thanks,
    Sanjit

  • Interaction Object is not getting generated

    HI Friends,
    I am working on interaction objects. I have done all settings as below for IO.
    1. Activated IO for all the four application areas in IMG under CRM_> BF
    2. Define Communication medium and chose communication method as EMAIL
    3. I left Transaction Type to empty
    4. And executed the campaign with communication medium which I configured for IO
    but still I am not able to find the IO for BPs fact sheet in TG for whom I executed the campaign. Can any one plz tell If I have missed any thing.
    And also please tell me can we use IO for communication medium "FILE EXEPORT". If yes, can you please tell how it can be achieved?
    Thanks,
    JM

    HI Friends,
    Plz give some clue on this...
    Thanks,
    JM
    Edited by: JM on Nov 16, 2009 11:00 AM

  • Interactive objects and quiz questions

    Hi everyone,
    I know that you can't add interactive objects to quiz questions, so what is the best way to accomplish my need of placing a button that, when clicked, plays a short mp3 audio file to a quiz question?
    Alternatively, if I am to replace my Captivate quiz questions with new custom slides, how can I replicate all of the multiple choice, etc question types? Are there widgets for these?
    I appreciate the help! I was looking around for reference items speaking to this issue but couldn't find any.

    Hello,
    On default question slides like on other slides, you can attach an audio clip to an object (even an object that is invisible to the user like a rectangle without a stroke and an fill with alpha=0%). The clip will play when the rectangle gets visible, but... you cannot put a button on a question slide. The only button that is possible is the static button widget but it has not the possibility to show/hide an object. You can attach the clip to the Success/Failure captions, eventually show/hide the invisible object with events like entering a slide, or Success/Failure actions but those events (appearing of captions, executing actions) cannot be controlled by a button.  If that is what you want, you need custom question slides. You didn't explain really at what moment you want to offer the audio, perhaps you do not need to give total control for playing by a button?
    Several blog posts I created talk about creating custom question slides with or without the help of widgets. Here is one link that shows a list of the articles/posts with widgets:
    Widgets and Custom Questions
    Not all question types are possible: if you want drag&drop functionalities I recommend the Drag&Drop widgets of InfoSemantics. Have a look here:
    http://www.infosemantics.com.au/dragdrop/whichwidget
    Another problem is the reporting of custom question slides. I already published two posts about that subject on my blog as well.
    Lilybiri

  • Reusing interactive objects

    I am making a mobile application in as3. I'm optimizing. I have a scroll containing 30 objects (buttons). All buttons are the same except its title. This bucle is inside the container scroll:
    for(var a:int=0; a<global.get_A.get_B.length; a++)
        b = new ItemList(global.get_A.get_B[a]);
        b.y = this.height;
        addChild(b);
        b.mouseChildren = false;
    This is 80% memory !!!
    http://help.adobe.com/en_US/as3/mobile/WS4bebcd66a74275c3-576ba64d124318d7189-7ffe.html talking about the reusing objects, but not for interactive objects.  Is it possible?

    Hello,
    On default question slides like on other slides, you can attach an audio clip to an object (even an object that is invisible to the user like a rectangle without a stroke and an fill with alpha=0%). The clip will play when the rectangle gets visible, but... you cannot put a button on a question slide. The only button that is possible is the static button widget but it has not the possibility to show/hide an object. You can attach the clip to the Success/Failure captions, eventually show/hide the invisible object with events like entering a slide, or Success/Failure actions but those events (appearing of captions, executing actions) cannot be controlled by a button.  If that is what you want, you need custom question slides. You didn't explain really at what moment you want to offer the audio, perhaps you do not need to give total control for playing by a button?
    Several blog posts I created talk about creating custom question slides with or without the help of widgets. Here is one link that shows a list of the articles/posts with widgets:
    Widgets and Custom Questions
    Not all question types are possible: if you want drag&drop functionalities I recommend the Drag&Drop widgets of InfoSemantics. Have a look here:
    http://www.infosemantics.com.au/dragdrop/whichwidget
    Another problem is the reporting of custom question slides. I already published two posts about that subject on my blog as well.
    Lilybiri

  • Only first object set being read by XML reader

    Hello,
    The XML file reads only object group when I use an accompanying XSD file.  
    Without the XSD file all XML object groups are read.
    I have verified this by enumerating the created table and have also done this is c#...so I think I am having an issue with the .net
    Originally there were other datatypes (int ect) but I took them out to test.
    Here is the XSD file:
    <?xml version="1.0" standalone="yes"?>
    <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
    <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:element name="Products">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="ProductID" type="xs:string" minOccurs="0" />
    <xs:element name="ProductName" type="xs:string" minOccurs="0" />
    <xs:element name="SupplierID" type="xs:string" minOccurs="0" />
    <xs:element name="CategoryID" type="xs:string" minOccurs="0" />
    <xs:element name="QuantityPerUnit" type="xs:string" minOccurs="0" />
    <xs:element name="UnitPrice" type="xs:string" minOccurs="0" />
    <xs:element name="UnitsInStock" type="xs:string" minOccurs="0" />
    <xs:element name="UnitsOnOrder" type="xs:string" minOccurs="0" />
    <xs:element name="ReorderLevel" type="xs:string" minOccurs="0" />
    <xs:element name="Discontinued" type="xs:string" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    PowerShell
    $dsXml = new-object "System.Data.DataSet" "dsServers"
    $dsXml.ReadXmlSchema('C:\temp\ProdSchema.xsd')
    $dsXml.ReadXml("C:\temp\Products1000.XML")
    $xmlProducts = $dsXml.Tables[0]
    foreach ($Row in $dsXml.Tables[0].Rows)
    write-host "value is : $($Row[1])"
    XML
    <Products>
    <row>
    <ProductID>1</ProductID>
    <ProductName>Bardudollantor</ProductName>
    <SupplierID>1</SupplierID>
    <CategoryID>1</CategoryID>
    <QuantityPerUnit>plurissimum transit.</QuantityPerUnit>
    <UnitPrice>338.3698</UnitPrice>
    <UnitsInStock>23645</UnitsInStock>
    <UnitsOnOrder>-7654</UnitsOnOrder>
    <ReorderLevel>26584</ReorderLevel>
    <Discontinued>1</Discontinued>
    </row>
    <row>
    <ProductID>4</ProductID>
    <ProductName>4Bardudollantor</ProductName>
    <SupplierID>1</SupplierID>
    <CategoryID>1</CategoryID>
    <QuantityPerUnit>plurissimum transit.</QuantityPerUnit>
    <UnitPrice>338.3698</UnitPrice>
    <UnitsInStock>23645</UnitsInStock>
    <UnitsOnOrder>-7654</UnitsOnOrder>
    <ReorderLevel>26584</ReorderLevel>
    <Discontinued>1</Discontinued>
    </row>
    </Products>
    I am sure I must be misusing the .net elements....

    I see now. YOU have no reference to the schema in the datafile.  Adding the reference to the dataset does not tell it how the file is structured.Try it this way:
    $dsXml = new-object "System.Data.DataSet" "dsServers"
    $dsXml.ReadXml("C:\test\Products1000.XML",'InferSchema')
    $dsXml.Tables[0].Rows|ft -auto
    This will give you all records.  If you want strong typing reference the schema in the data file or embed the schema in the data file.
    ¯\_(ツ)_/¯
    This works for basic xml documents...thanks....will post again for complex......the tables don't load like I expected.

  • ADF BC View Objects: Disappearing where clauses

    Playing around with the 11g Technical Preview I find out that sometimes the where clauses - added to View Objects by means of the new "Join Type" field in the VO-editor UI - disappear.
    I'm not able to reproduce exactly and "on demand", but it seems to happen when the sources of more than one View Object are open simultaneously and/or the XML definition of a View Object is edited directly on the Source-tab.

    Today I succeeded in reproducing:
    Two tables:
    TAB_MASTER:
    ID NUMBER NOT NULL
    DESCRIPTION VARCHAR2 NOT NULL
    TAB_DETAIL:
    ID NUMBER NOT NULL
    MASTER_ID NUMBER NOT NULL
    DESCRIPTION VARCHAR2 NOT NULL
    TAB_DETAIL.MASTER_ID is a foreign key referencing TAB_MASTER.ID.
    Steps to reproduce:
    1. Generate default ADF BC objects from database tables.
    2. Open definition of TAB_DETAIL View Object.
    3. Go to the Entity Objects tab
    4. Add TAB_MASTER Entity Object to the Selected Entities Objects. Association and Join Type are filled in automatically.
    5. Go to the Query tab and go to SQL tab in de Property Inspector. Where clause is filled.
    6. Go to the Attributes tab and click Add from Entity...
    7. Add TAB_MASTER.DESCRIPTION attribute.
    8. Again, go to the Query tab and go to SQL tab in de Property Inspector. Where clause is still filled.
    9. Go to the Attributes tab and select MASTER_ID attribute.
    10. Click icon to add List Of Values
    11. In List Of Values dialog add View Object TAB_MASTER and add the correct pairs of List Return Values for the ID and (MASTER) DESCRIPTION attributes.
    12. After completing the List Of Values dialog go to the Query tab -> SQL tab again. The where clause added to join the Entity Objects (see step 5.) is cleared, resulting in a wrong SQL statement for the View Object.

  • Live Office SP3.4/Office 2010 - Live Office objects disappear on conversion

    I am testing Live Office XI 3.1 FP3.4 on a Windows 7 laptop with Office 2010 installed and have a question.
    I take an Excel 2003 file (XLS) file that has Live Office connections and open it in Office 2010. Then I save as an XLSX file. While saving I get a message that states:
    "The name, [1]_1_CRADDIN_DataGrid, either conflicts with a valid range reference of is invalid for Excel. The name has been replaced with 11__1_CRADDIN_DataGrid. You may still need to manually update any references to this name used in VBA code or as text arguements in functions. You must close and reopen the workbook before these changes take effect."
    I complete the save then close and reopen the file. When I go check for my Live Office objects, they seem to have disappeared (meaning I right click on what used to be a Live Office object, but I no longer see Live Office on the popup menu).
    Can't I convert my old data models to the new excel format? I am doing this because the XLF is taking a LONG time to open in Xcelsius 2008 SP4 with multiple server busy messages. I thought updating the Excel file might speed things up but since the Live Office objects are disappearing from my spreadsheet this is not working as expected.
    If any pointers can be given that would be great. If I have missed any documenation that may help me out, please let me know. I checked the Live Office documentation and the highest thing for XI 3.1 I see is SP3, no FP3.4 (or even SP4).

    How do I know if Office is 64 bit? If I go to the control panel, I see that "Microsoft Office Professional Plus 2010" is installed.
    There are no named ranges in my sheet.

Maybe you are looking for