Multiple choices in d input

selection screen parameters r plant : P_WERKS(VBAP-WERKS),sales doc : S_VBELN(VBAP-VBELN) & sales doc item : S_POSNR(VBAP-POSNR).
PARAMETER: p_werks like vbap-werks.
select-options : s_vbeln for vbap-vbeln,
                 s_posnr for vbap-posnr.
rite now im using d query :
select VBELV LFIMG from LIPS into table ITAB where VBELV in S_VBELN and POSNV in S_POSNR.
now this query is not workin if we give multiple choices in d input.

Hi
Just as I said in my previuos answer try this:
DATA: BEGIN OF ITAB OCCURS 0,
             VBELV LIKE LIPS-VBELV,
             POSNV LIKE LIPS-POSNV,
             LFIMG   LIKE LIPS-POSNV,
           END    OF ITAB.
select VBELV POSNV LFIMG from LIPS into table ITAB where VBELV in S_VBELN and POSNV in S_POSNR.
U make sure to have all keys fields in ITAB to miss any records, it should be better your table was like this:
DATA: BEGIN OF ITAB OCCURS 0,
             VBELN LIKE LIPS-VBELN
             POSNR LIKE LIPS-POSNR,
             VBELV LIKE LIPS-VBELV,
            POSNV LIKE LIPS-POSNV,
             LFIMG   LIKE LIPS-POSNV,
           END    OF ITAB.
select VBELN POSNR VBELV LFIMG from LIPS into table ITAB where VBELV in S_VBELN and POSNV in S_POSNR.
Now it should work
Max

Similar Messages

  • Menu Button in ALV toolbar (multiple choices for a button)

    Hi abapers,
    I would like to have a button with multiple choices in the toolbar;
    at the moment I have created a menu button with just one function.
    Here is my code:
    CLASS lcl_event_receiver (Definition)
    CLASS lcl_event_receiver DEFINITION.
      PUBLIC SECTION.
        METHODS:
        handle_toolbar
            FOR EVENT toolbar OF cl_gui_alv_grid
                IMPORTING e_object e_interactive.
    ENDCLASS.                    "lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver (Implementation)
    CLASS lcl_event_receiver IMPLEMENTATION.
      METHOD handle_toolbar.
        DATA: ls_toolbar  TYPE stb_button.
    *Separator
        CLEAR ls_toolbar.
        MOVE 3 TO ls_toolbar-butn_type.
        APPEND ls_toolbar TO e_object->mt_toolbar.
    *Button
        CLEAR ls_toolbar.
        MOVE 1 TO ls_toolbar-butn_type.
        MOVE 'EDIT' TO ls_toolbar-function.
        MOVE icon_change TO ls_toolbar-icon.
        MOVE ' Modifica'(l02) TO ls_toolbar-text.
        MOVE ' ' TO ls_toolbar-disabled.
        MOVE 'Modifica' TO ls_toolbar-quickinfo.
        APPEND ls_toolbar TO e_object->mt_toolbar.
      ENDMETHOD.                    "handle_toolbar
    ENDCLASS.                    "lcl_event_receiver IMPLEMENTATION

    hi,
    check this code and reward me if it helps you..
    TYPE-POOLS : slis,icon.
    *Structure declaration for tcodes
    TYPES : BEGIN OF ty_table,
            tcode TYPE tcode,
            pgmna TYPE progname,
            END OF ty_table.
    *Structure for tocde text
    TYPES : BEGIN OF ty_itext,
            tcode TYPE tcode,
            ttext TYPE ttext_stct,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            tcode TYPE tcode,
            pgmna TYPE progname,
            ttext TYPE ttext_stct,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Class definition for ALV toolbar
    CLASS:      lcl_alv_toolbar   DEFINITION DEFERRED.
    *Declaration for toolbar buttons
    DATA : ty_toolbar TYPE stb_button.
    Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,   "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,   "ALV grid object
          it_fcat            TYPE lvc_t_fcat,            "Field catalogue
          it_layout          TYPE lvc_s_layo,            "Layout
          c_alv_toolbar    TYPE REF TO lcl_alv_toolbar,           "Alv toolbar
          c_alv_toolbarmanager TYPE REF TO cl_alv_grid_toolbar_manager.  "Toolbar manager
    *Initialization event
    INITIALIZATION.
    *Start of selection event
    START-OF-SELECTION.
    *Subroutine to get values from tstc table
      PERFORM fetch_data.
    *subroutine for alv display
      PERFORM alv_output.
          CLASS lcl_alv_toolbar DEFINITION
          ALV event handler
    CLASS lcl_alv_toolbar DEFINITION.
      PUBLIC SECTION.
    *Constructor
        METHODS: constructor
                   IMPORTING
                     io_alv_grid TYPE REF TO cl_gui_alv_grid,
    *Event for toolbar
        on_toolbar
           FOR EVENT toolbar
           OF  cl_gui_alv_grid
           IMPORTING
             e_object.
    ENDCLASS.                    "lcl_alv_toolbar DEFINITION
          CLASS lcl_alv_toolbar IMPLEMENTATION
          ALV event handler
    CLASS lcl_alv_toolbar IMPLEMENTATION.
      METHOD constructor.
      Create ALV toolbar manager instance
        CREATE OBJECT c_alv_toolbarmanager
          EXPORTING
            io_alv_grid      = io_alv_grid.
       ENDMETHOD.                    "constructor
      METHOD on_toolbar.
      Add customized toolbar buttons.
      variable for Toolbar Button
          ty_toolbar-icon      =  icon_generate.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button1'.
          APPEND ty_toolbar TO e_object->mt_toolbar.
          ty_toolbar-icon      =  icon_voice_output.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button2'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_phone.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button3'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
         ty_toolbar-icon      =  icon_mail.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button4'.
           APPEND ty_toolbar TO e_object->mt_toolbar.
       ty_toolbar-icon      =  icon_voice_input.
        ty_toolbar-butn_type = 0.
        ty_toolbar-text = 'Button5'.
         APPEND ty_toolbar TO e_object->mt_toolbar.
      Call reorganize method of toolbar manager to
      display the toolbar
         CALL METHOD c_alv_toolbarmanager->reorganize
          EXPORTING
            io_alv_toolbar = e_object.
       ENDMETHOD.                    "on_toolbar
    ENDCLASS.                    "lcl_alv_toolbar IMPLEMENTATION
    *&      Form  fetch_data
          text
    -->  p1        text
    <--  p2        text
    FORM fetch_data .
    Select the tcodes upto 200 rows from TSTC
       SELECT   tcode
               pgmna
               FROM tstc
               INTO CORRESPONDING FIELDS OF TABLE it_table
               UP TO 200 ROWS
               WHERE dypno NE '0000'.
    *Select the tcode textx
       IF it_table[] IS NOT INITIAL.
         SELECT ttext
               tcode
               sprsl
               FROM tstct
               INTO CORRESPONDING FIELDS OF TABLE it_ittext
               FOR ALL ENTRIES IN it_table
               WHERE tcode = it_table-tcode
               AND sprsl = 'E'.
       ENDIF.
    Apppending the data to the internal table of ALV output
       LOOP AT it_table INTO wa_table.
        wa_output-tcode = wa_table-tcode.
        wa_output-pgmna = wa_table-pgmna.
       For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY tcode = wa_table-tcode.
        wa_output-ttext = wa_ittext-ttext.
         APPEND wa_output TO it_output.
        CLEAR wa_output.
       ENDLOOP.
       ENDFORM.                    " fetch_data
    *&      Form  alv_output
          text
    -->  p1        text
    <--  p2        text
    FORM alv_output .
    *Calling the ALV
      CALL SCREEN 0600.
      ENDFORM.                    " alv_output
    Calling the ALV screen with custom container
    On this statement double click  it takes you to the screen painter SE51.Enter the attributes
    *Create a Custom container and name it CC_CONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    Now a normal screen with number 600 is created which holds the ALV grid. PBO of the actual screen , Here we can give a title and *customized menus
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
    SET PF-STATUS 'xxxxxxxx'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  ALV_GRID  OUTPUT
          text
    MODULE alv_grid OUTPUT.
    *create object for custom container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CC_CONT'.
    *create object of alv grid
      CREATE OBJECT c_alvgd
          EXPORTING
              i_parent = c_ccont.
    create ALV event handler
      CREATE OBJECT c_alv_toolbar
        EXPORTING
          io_alv_grid = c_alvgd.
    Register event handler
      SET HANDLER c_alv_toolbar->on_toolbar FOR c_alvgd.
    Fieldcatalogue for ALV
       PERFORM alv_build_fieldcat.
    ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
       CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
       CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " ALV_GRID  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    FORM alv_build_fieldcat.
       DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'TCODE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'TCODE'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
       lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PGMNA'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'PROGNAME'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'TTEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    FORM alv_report_layout.
       it_layout-cwidth_opt = 'X'.
       it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  USER_COMMAND_0600  INPUT
          text
    MODULE user_command_0600 INPUT.
    ENDMODULE.                 " USER_COMMAND_0600  INPUT
    thanks,
    gupta

  • Help,pls!! Multiple choices in Form4.5 and more questions

    Hi, All.
    I have some difficult questions. Any reply will be greatly
    appreciated!
    1. Is it possible to make multiple choice in a Form? It is known
    that there is only one choice in LOV or List Item. ( That is
    like : select ... from ...where :block1.Id= Order.order_Id )
    What I would like to do is : select ...
    from ...where :block.Id in ( select ...from...where...) Such
    subquery will return at least five values. Can this be possibly
    developed in Forms (4.5)? or should use VBX?
    2.'Copy' function in Forms. I want to insert two records. The
    second has the same value as the first except PK_VALUE. e.g.
    1.Record A,B,C,D,E
    2.Record M,B,C,D,E
    The problem is whenever I do inserting in a Form, all columns are
    blank and waiting for entering data. Is it possible to just
    input 'F', and the other columns will be inserted automatically
    as same as previous one ('B','C','D','E,')?
    3.To concatenate comment statement of two reports.
    I have two reports. Each has its own comment column.
    Now I want to concatenate these two comments and insert it into
    a new report. Is it possible in Reports2.5?
    I have thought of these problems for a long time, but I still
    can't solve
    them. I am not sure whether I can do such things in Dev 2k? Or
    it can be developed in Dev 6.0?
    Please help me!
    Best regards
    Mike Ding
    mailto:[email protected]
    null

    Hi Priya ,
                     I have coded your example and it works fine for me
    Please have see at the code.
    tables : lips,vbak,vbap.
    data : begin of itab occurs 0 ,
              vbelv like lips-vbelv,
              lfimg like lips-lfimg,
           end of itab.
    PARAMETER: p_werks like vbap-werks.
    select-options : s_vbeln for vbak-vbeln,
                     s_posnr for vbap-posnr.
    select VBELV LFIMG from LIPS into corresponding fields of table ITAB where VBELV in S_VBELN and POSNV in S_POSNR.
    I had entered value for s_vbeln 31 from 331
    and s_posnr 10 20 and it gave me correct entries coz for order number 331 there were two entries in lips so multiple entries worked.
    Please check the code with my code.
    Please reward if useful.

  • Multiple Choices RE: Website Builder Forms

    Website Builder at Verizon has forms you can add. On one element, a drop down box of choices you can edit the nature of the drop down. At that area you can check "accept multiple choices" or something close to that. I have that checked but the only choice that gets submitted is the last choice highlighted. What am I doing wrong. I appreciate any help and I will work on it some more in the mean time.  Thanks!  Jack

    I tried everything talked about on this thread however here's my issue. I need to do three levels of cascading selections.
    Table 1: Country
    Table 2: State ( has a one to many relationship between Country and State based on foreign keys)
    Table 3: City ( has a one to many relationship between State and City based on foreign keys)
    Table 4: District ( has a one to many relationship between City, and District based on foreign keys)
    I can cascade user list choice inputs between Country and State (VO 1).
    I can also cascade user list choices between State and City (VO 2).
    I can also cascade user list choices between City and District (VO 3).
    How do I cascade list user choices between VO1 and VO2? Based on the choices selected from the user in VO1, I want to cascade the selection to VO2. etc.
    I followed Shay's example. See link below
    http://blogs.oracle.com/shay/entry/got_to_love_cascading_lovs_in
    However, this example is cascading based on one VO. How do I cascade this through multiple VO's?
    Edited by: John on Aug 10, 2011 5:54 AM
    Edited by: John on Aug 10, 2011 7:28 AM

  • How to change the design of multiple-choice checkboxes

    Hello,
    i want to change the look of multiple-choice quizzes. Instead of the typical checkbox with checkmark i would like to place a button that changes its color - for example blue for right (activated) and white for wrong (not selected).
    I think it should be possible, but I don't know where I can change the look of checkboxes. I Tried it with a hotspot-quiz, but that is not exactly what I'm searching for.
    The best solution for me would be a kind of button with mouse-over effect as known from websites (HTML).
    Can you please tell me what I have to edit?
    Thank you very much.
    Boris

    Hello and thank you for posting this information. I'm still seeing a number of problems with implementing a workable solution.
    For HTML5 only (not Flash), I have changed the image: HTML/assets/htmlimages/checkBox_selected.png to a blue button (118x53 pixels instead of the default 22x22pixels), and as expected the button will still be the same size until I change the code description of the checkbox. I found the CSS description of the checkbox button in: HTML/assets/css/CPQuiz.css and have made the changes to the width and height (see below), and even though the following changes are generated in the output files, they don't have any effect on the button. However, I found that if I changed the 'Project.js' file where it defines the width and height of the checkboxes that this would actually change the values, but this is always re-written over and generated each time you click 'Publish'.
    So, I then found some hard-coding in the file: HTML/assets/js/CPLibrary.js (just search for 22px and you'll see that the checkbox description width and height are not being read from the CSS file) and this appears to be where the actual code is coming from that gets generated for output when you click on 'Publish'.
    This is not an optimal solution, I feel that I'm beginning to hack around the default code for Adobe Captivate more than I should be expected to do. Is this really what others are doing to make what should be pretty simple and easy changes?
    Additionally, I noticed that when I click on my checkbox, the 'checkBox_selected.png' will be drawn, but if I click on it again the 'checkBox_disabled.png' appears to be drawn on top of the previous 'checkBox_selected.png' which is not the behavior I would expect. I want to be able to see what is underneath the button if I click on it again in order to un-check the box and instead it draws the 'checkBox_disabled.png' on top, covering up the default text I need to see!
    Below are my changes to CPQuiz.css (which were copied to the 'Published' file, but had no visible effect)
    input[type=checkbox]:checked
        background: url('../htmlimages/checkBox_selected.png') no-repeat center center;
        -webkit-appearance: none;
        border: none;
        -webkit-background-size: 118px 53px;
    .spanCheckBoxInput
        position: fixed;
        display: block;
        width:118px;
        height:53px;

  • Field to be multiple choice

    Hi All,
    How do I make a field to be multiple choice (like selection-option) in
    screens ?
    thx,

    Hi,
    you can use selection-screens in a subscreen of a dynpro:
    1) define a subscreen (called subsi in this example)
    in your dynpro (called 0100 in this example)
    2) define the selection-screen in your programm like this:
    SELECTION-SCREEN BEGIN OF SCREEN 101 AS SUBSCREEN.
    SELECT-OPTIONS: s_parm1 FOR ztable-parm1,
    s_parm2 FOR ztable-parm2.
    SELECTION-SCREEN END OF SCREEN 101.
    3) define your PAI and PBO-moduls like this:
    PROCESS BEFORE OUTPUT.
    MODULE status_0100.
    CALL SUBSCREEN subi INCLUDING sy-cprog '0101'.
    PROCESS AFTER INPUT.
    CALL SUBSCREEN subi.
    Kindly regards,

  • Randomize multiple choice buttons

    I want to randomly scramble 4 multiple choice buttons (assigning each of them to one of four different positions). I'm trying to (a) randomly extract an element from an array, (b) delete that element from the array, and (c) go through the same process 3 more times till I have 4 random numbers assigned to 4 separate variables.  I should be able to assign the buttons to different positions after that.  Thanks in advance for input.
    Here's the first round of what could loosely be called code:
    var firstElement:Number = 0;
    var distList:Array = ["0", "1", "2", "3"];
    var distNum0:Number = 0;
    var distNum1:Number = 0;
    var distNum2:Number = 0;
    var distNum3:Number = 0;
    stage.addEventListener(Event.ENTER_FRAME, getElement);
    function getElement(event:Event):void//Get random number from distList assign to distNum0//
        firstElement = distList[Math.floor(Math.random() * distList.length)];
        if (firstElement == 0)
            distNum0 == 0;
            distList.splice(0,1);
        if(firstElement == 1)
            distNum0 == 1;
            distList.splice(1,1);
        if(firstElement == 2)
            distNum0 == 2;
            distList.splice(2,1);
        if(firstElement == 3)
            distNum0 == 3;
            distList.splice(3,1);

    Thanks iFezec, have a loose understanding of the floor and I can wrap my mind around extracting elements from an array.  However, when I enter the code below I get the following compile errors:  “1046: Type was not found or was not a compile-time constant: elementtype.”  and “Warning: 3553: Function value used where type Object was expected.  Possibly the parentheses () are missing after this function reference."
    var A:Array = ["0", "1", "2", "3"];
    function getelementF(A):elementtype{
    var index:uint = Math.floor(Math.random*A.length);
    var e:elementtype = A[index];
    A.splice(index,1);
    return e;
    trace(e);

  • Best app to import and study multiple choice questions.

    Hi,
    I'm searching for an app to help study for an exam.
    Part of the studying strategy is to study by the previous exams questions. I have those (a lot of them) in text format.
    The app would need to have:
    - Support for multiple-choice questions;
    - Easy, fast and automated way of importing the questions;
    Would be nice to have:
    - Ability to include a rich-text comment along with the right/wrong answer;
    - Support for tagging each questions.
    I've used the search function and found this:http://forums.macrumors.com/showthread.php?t=1041085 but it's been a while since then.
    thanks in advance

    Hi Konrad;
    What approach would you recommend to import and export EBS data? Open Interfaces, PL/SQL, web services or anything else?For your question please check below notes:
    Export/import process for R12 using 11gR1 [ID 741818.1]
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    General Notes For E-Business Suite Release 12 [ID 986673.1]
    Please also check below thread:
    how to export data from ebs
    how to export data from ebs??
    Also check below search which could help you about your issue:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=import+export+&objID=c3&dateRange=all&userID=&numResults=15
    http://forums.oracle.com/forums/search.jspa?threadID=&q=export+data&objID=f475&dateRange=all&userID=&numResults=15&rankBy=10001
    Hope it helps
    Regard
    Helios

  • Grey box over multiple choice options in quiz (Captivate 5.5)

    I created several quiz slides - all multiple choice.  When the mouse is moved over the answer options a grey box highlights the radio button and text of the option.  I'd rather not have this grey box displayed.  Any ideas on how I turn off this "feature"?

    Interesting.  Can you upload screenshots of a question with the grey rollover and a question that does not have it, each with a mouse cursor over an answer item, so that we can see?
    Is this a project that has been upgraded from an older version of Captivate or was it built from scratch in Captivate 5.5?

  • Highlighting text box for multiple choice presentation.

    I'm making a multiple choice presentation and need help highlighting the correct answers.
    I'm using Keynote v5.3 and here is the format of my slides:
    Text box - Question
    Text box - (A) Answer A
    Text box - (B) Answer B
    Text box - (C) Answer C
    Text box - (D) Answer D
    When I click to advance, the desired effect I'd like is for the correct answer to turn red in order to let the class know that it's the correct answer.
    I looked on the Build Inspector tool but the only Effects that appear in the Action section are Move, Opacity, Rotate and Scale. None which I don't want.
    Is there a way to animate the correct answer/text box to change color?
    Please help. Thanks!

    builds only work in  linear order ( 1, then 2, then 3,  then 4 ) they don't run in a random access selection,
    ( 4, 1, 2, 3 ) which is what would be required in the method you describe.
    the  way to do this is to use hyperlinks from the first slide to four other slides
    on slide 1:
    type the question and  the multiple choice statements
    draw a shape beside each statement and use this as a hyperlink button to the  respective slide number
    select each shape in turn:
    inspector > hyperlink > enable hyperlink > link to slide and select the respective slide number
    when you click on   button A, it will display the the responce to choice d
    by the way, viewers have been taught that colours have  certain associations ( country dependant of course)
    such as red for danger so
    the traditional colour to use for a correct answer is GREEN
    the traditional colour to use for an incorrect answer is RED

  • Keynote and multiple choice quizes

    Does anyone know of a way to create a multiple-choice quiz with Keynote?
    What I mean is, can you create links from a question page (with video and text) with 4 options and then create pages responding to the users' choice...correct or incorrect... then move onto the next question page etc...?
    Is there a way to use the Hyperlinks function in Keynote for this purpose?
    I plan to export to iDVD and have an interactive quiz DVD...
    I remember doing something similar a while back with Powerpoint.
    I like to push the boundaries and see what can be squeezed out of a piece of software...

    Sorry for the late response...
    What do you mean by "I'm just saving them on my computer". Do you open the PDF with some application (which one?) and then do a save from that application?
    You can send your PDF (with the missing border) to [email protected] with a reference to this post and I can have a look at it.
    Gen

  • This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left.

    This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left of each drop down.

    See McAfee support to find out how to disable that McAfee feature - that isn't part of the normal Firefox installation.

  • Multiple Choice Question Issues

    I am embedding a quiz within my presentation with individual
    question slides interspersed throughout the presentation. These
    questions are pulled from a couple of different question pools. I
    want to use a multiple choice question that branches to different
    parts of the presentation depending on the correct or incorrect
    answer. If the user answers the question incorrectly, I send them
    to the next slide which has two click boxes. On this slide, they
    can either click one box to move back in the presentation and
    review the material or click another box to move them forward to
    another multiple choice question. If they go back and review the
    information, they would eventually return to the same multiple
    choice question to try it again. (This is the desired navigation,
    anyway.)
    What actually happens is that when the user goes back to
    review the information and then finally returns to the question,
    the question has not been reset and still shows the incorrect
    answer marked with no way to clear it.
    I have used this same navigation on a drag-and-drop type
    question and it works fine. All the settings for the
    multiple-choice questions are set the same as in the drag-and-drop
    question.
    Any help in making this work correctly would be greatly
    appreciated.

    I can't see where that error might arise except possibly for a case where an AS2 radio is used since it appears they don't have a group property, but an AS3 radio button does.  Check to be sure that your Flash Publish Settings are set to use AS3.  AS3 errors normally have error numbers which also makes the error you quoted ring of an AS2 scenario.
    Here's a link to the file I made based on your code that works fine and doesn't display the errors you mention.  It is a CS3 file.
    http://www.nedwebs.com/Flash/AS3_Radios.fla

  • Multiple Choice Quiz issues

    Hello
    I just build a multiple choice quiz using Captivate 3. The
    quiz have3 right answers. I set it up so that the user has infinite
    number of attempts. However after the first try I can try the quiz
    again.
    Has anyone experienced this problem. If it's not fixable, my
    project is doomed.

    Can you restate the problem you're having? Is it that you can
    NOT try the quiz again?
    Otherwise, from what you wrote, it doesn't sound like there's
    a problem...

  • Multiple Choice in Pages 5

    I want to make a multiple choice exam in Pages 5 that looks like:
    1. The sky is
         a. blue
         b. green
         c. yellow
         d. striped
    Instead I get:
    1. The sky is
         1. blue
         2. green
         3. yellow
         4. striped
    I can go through and highlight the choices converting them from numbers to letters manually, but that is such a pain. In pages 8 the program autoformatted just fine.  Now I can't seem to figure out how to make it do this one simple task.  HELP!!

    It actually was an upgrade in version number only. Pages v5+ was an entire new design/rewrite, and Apple released it far before it reached parity with existing features in Pages ’09. Who in their right mind, releases an entirely new and incompatible document architecture, with the same filename extension (.pages), into a user community containing many thousands of older Pages documents. And doesn't warn them.
    In another post, I applied the term Pandora's box to Pages v5+. Subtle me.

Maybe you are looking for

  • Identify who has file open

    Adobe should build into its software the capability of showing who has a pdf file open if you try to save it.  It current just gives you a message that you have to save it under a different name because the file is in use.  It would be great if it wo

  • Audio lags in iOS

    Hi, I've been making an animation with click-triggered sounds (to get around autoplay), but once I view it in iOS, the audio lags by a couple of seconds. It seems to be loading, because when I click it a second time, the audio is timed fine. But I ha

  • HELP - Look at my desktop!

    One of our clients on our system had a major crash while searching through Finder. Any ideas? Different logins have same results. Names within finder are fine, spotlight search results are ok, but HD name, any finder options, apple options are all sc

  • When I import the ppt, why do you always import error out of memory? Thank you!

    When I import the ppt, why do you always import error out of memory? Thank you!

  • How can I open RAW files with PSE 12 from Olympus o-md e-m 10?

    How cam I open RAW files ? I use PSE 12, the Olympus om-d em 10 and windows 7.