Check Box and Feedback help

Hi
I'm having a few problems with this checkbox quiz i'm
re-developing from old Java Applets.
I've managed to create the checkboxes dynamically, but need
to get the true/false answers out of the dataset and show feedback
in the dynamic textfield box.
This link has the fla attached
http://board.flashkit.com/board/showthread.php?t=695320
Can anyone help... would be much apreciated.
John

No-one help at all?

Similar Messages

  • Check box and items help

    if zero or one check box is checked then item (NO S)is shown
    if more than one check box is checked then items will show (show S)
    <cfparam name="variables.morethanone" default="0">
    <cfset count.morethanone= 0>
    <cfloop index="checkField"
    list="#form.1#,#form.2#,#form.3#,#form.4#,#form.5#">
    <cfif checkField EQ "on">
    <cfset count.morethanone= count.morethanone + 1 >
    </cfif>
    </cfloop>
    <cfif count.morethanone GT 1>
    <cfset variables.morethanone = "1">
    </cfif>
    item<cfif variables.morethanone>s</cfif>
    i wish to have the item show items:
    in a page before submit.
    when a ((no,0) or one ) checkbox is checked and submit then
    items will become item (s disapears)
    if more than one check box is checked then s will appear/show
    after submit button.
    the code i have does not show the s on the initial page
    (before submit)
    it show as
    please click one of the following item instead i need it to
    show: please click one of the following items
    then the logic i have just explained above.
    what do i do thanks.

    I'm not exactly sure what you want to do, but here's the code
    that shows "items" when more than 1 checkboxes are checked on the
    previous form page; otherwise, it shows "item":
    <html>
    <head>
    <title>Untitled</title>
    </head>
    <body>
    Target Page:
    <br><br>
    <cfparam name="Form.Checkbox_1" default="">
    <cfparam name="Form.Checkbox_2" default="">
    <cfparam name="Form.Checkbox_3" default="">
    <cfparam name="Form.Checkbox_4" default="">
    <cfparam name="Form.Checkbox_5" default="">
    <cfset count = 0>
    <cfloop index="checkField"
    list="#Form.Checkbox_1#,#Form.Checkbox_2#,#Form.Checkbox_3#,#Form.Checkbox_4#,#Form.Check box_5#">
    <cfif checkField EQ "on">
    <cfset count = count + 1 >
    </cfif>
    <cfif count GT 1>
    <cfbreak>
    </cfif>
    </cfloop>
    item<cfif count GT 1>s</cfif>
    </body>
    </html>

  • Check box in search help

    Hi Experts,
    I have created one custom table. there is one field called zflag ( TYPE C - length 1). This field will contains values either 'R' or ' '.
    I have one module pool program. In that I have field called doc number. As soon ad user press F4 on doc number field, search help will displayed.
    field zflag is added to that serach help and it is working fine.
    But user wants show this field as check box in search help.
    Could you pls help me how to place check box in place of text field.
    Thanks in advance
    Regards
    Raghu
    Edited by: r badveli on Feb 17, 2009 10:38 PM

    Anyone has any idea about this?
    As soon as I press F4 on document no field, It will display one pop-up window with search help restrictions.
    In the search help restrictions ... I have added one flag field . But we nedd that text field as check box.
    How can we acheive this?
    Thanks.

  • Popup screen with two check box and a text area for the user to enter value

    hi,
    i have a requirement when a button is clicked a popup screen should appear with two check box and a text box where the user can enter a value.
    is there any function module which has that functionality

    Hello,
    You can create a new screen and select the screen type as <b>model dialog box</b>.This will give you a<b> pop-up screen</b> and you can call this model dialog box screen in the PAI of the screen where the button is present.(At user-command).
    <b>case ok_code.
    when 'BUTTON'.
    call screen 200 starting at 10 10.</b>
    You can design the PBO of this pop-up screen as per your needs.
    Regards,
    Beejal
    **Reward if this helps.

  • How to create the Check box and Text Area inside the Assignment block

    Dear all,
            I am new to web UI development. my requirement is to create the Check box and Text box in the Assignment block. Can anyone help me to do this requirement.
    Thanks & Regards,
    Ashok.

    Hi,
      Please place the below code in the GET_P methods of the fields.
      For Text Area 
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_textarea.
      ENDCASE.
    For Check Box 
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_checkbox.
      ENDCASE.
    Regards,
    Lakshmi.Y

  • Livecycle: Can you click a check box and have it copy the entire field to a new location?

    I have a check box and I want to check the box and have field 1a, field 1b, field 1c be copied to location on a third page.
    These are patient goals: and those goals need to be recognized later on while trying to fill out paperwork, but I don't want to have to look back at the front page. so I want to pick which goals I want to see at a later page and have the goal  (field) and the field content that was chosen on the first page show up.
    I will choose three to five goals and I want them lined up
    field 1a, field 1b, field 1c then underneath
    field 2a, field 2b, field 2 c etc.
    THanks for the help
    CHeers

    The attachment functionality in this forum keeps fluctuating ....if you do not see an add attachmnet button on your post then email it me instead at [email protected]
    Paul

  • Problem getting check boxes and radio button to click with applescript

    This is my script, it runs through without error, i can see the check box lightly flash like its being focused in on, but it wont actually check mark the box. it does this with all my check boxes and radio buttons.
    tell application "Adobe InDesign CS3"
    activate
    end tell
    tell application "System Events"
    tell process "InDesign"
    tell menu bar 1
    click menu bar item 12
    key code 125
    key code 125
    key code 124
    key code 125
    key code 125
    key code 36
    delay 1
    end tell
    tell window "Variable Links"
    click checkbox "Use InDesign Tags Filter"
    end tell
    end tell
    end tell

    Hi craneium and welcome
    For me this script fails, going through it step by step it seems confused, as I have highlighted out in the below code.
    where is the window "Variable Links, may be I can help.
    tell application "Adobe InDesign CS3"
    activate
    end tell
    tell application "System Events"
    tell process "InDesign"
    tell menu bar 1
    click menu bar item 12 --opens spotlight search in help
    key code 125 -- highlights indesign help
    key code 125 -- highlights welcome screen
    key code 124 -- goes to apple
    key code 125 -- goes to about this computer
    key code 125 -- highlights software update
    key code 36 -- starts software update
    delay 1 -- ?
    end tell
    tell window "Variable Links" -- error cant get window variable links
    click checkbox "Use InDesign Tags Filter"
    end tell
    end tell
    end tell
    Budgie

  • How to put Check Boxes and Radio button in Smartforms

    Hi all,
    How to put check Box and radio button in Smartforms ............ from web properties there is an option to use. But How to use.     
    regards,
    Mohsin

    u can declare the checkboxes or radiobuttons whatever in driver program and pass the same to ur form...

  • All my check boxes and selection circles have disappeared. Uninstalled FF and reinstalled deleting all plug-ins, settings, and etc. IE works fine. What's messing with my boxes?

    With recent update, all my check boxes and selection circles have disappeared. I tried to uninstall FF, reinstall, but nothing fixed it. When I run safe-mode, it's fine, but then no youtube or other internet fun stuff. Tried to update plug-ins but still all jacked up. any ideas? also, my side scroll bar screws up too.

    Do you mean Firefox safe mode or Windows Safe mode?
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    If you mean Windows Safe-mode then check your security software.

  • How to add a single check box and a label to a image in Muse?

    Hello!
    I need help with adding a check box with a label to the right of it. I know about the forms, and how you can add a check box there but i don't need all the other form options.

    Hi
    It is not possible to use only checkbox from a form at the moment. An alternate way could be inserting it using html, something like below
    <input type="checkbox" name="Muse" value="Muse"> A sample checkbox<br>
    I am not sure what exactly you are trying to achieve, but this will work  with Form tag only, like in the example here
    Tryit Editor v2.5
    Do let me know if you have any question.

  • Check-Boxes and Popup Menus

    Hi, all!
    I'm a relative novice at AppleScript.
    What I'm looking for is a way to put a check box (like in a form) into a dialog box. I'd like to put it under some buttons, or a popup menu, which brings me to my next question:
    How do you add a popup menu to a dialgo box? It wold be in place of buttons.
    I know you can use Interface Builder to do this, but I don't know how to use the Xcode and Interface builder.
    I plan on learning soon, but it's kind of a daunting program…
    Anyway, any help would be much appreciated!
    Thanks in advance!
    -Nate

    AppleScript's *Standard Additions* just provides a few simple general purpose dialogs. For dialogs with other user interface items, you will need to use Xcode or third party tools such as CocoaDialog.

  • ALV with check boxs and buttons

    Hi guys,
    It's been a while since last time I used ALV and its options.
    I have a requirement to show many records in ALV format. each record starts with a check box, user can choose which record by checking each and click on a button to merge them (those record contain text). Everything should show up on ALV screen. Any idea what how should I do that??
    I think I should use screen painter but I have no idea how to implement that...
    Thanks,

    Hi Ben,
    Here is the code as per ur requirement ..
    just go through this....i hope u will get some help...
    REPORT zashu_alv_in_popup_mara.
    TYPE-POOLS : slis.
    *Data Declaration
    DATA:i_repid LIKE sy-repid.
         i_repid = sy-repid.
    Declaration for ALV
    DATA: wa_fcat TYPE slis_fieldcat_alv,
          fcat TYPE slis_t_fieldcat_alv,
          wa_fcat1 TYPE slis_fieldcat_alv,
          fcat1 TYPE slis_t_fieldcat_alv.
    *Types Declaration
    TYPES:BEGIN OF ty_mat,
           matnr TYPE mara-matnr,
           checkbox(1),
          END OF ty_mat.
    TYPES:BEGIN OF ty_makt,
           matnr TYPE mara-matnr,
           maktg  TYPE makt-maktg,
           maktx  TYPE makt-maktx,
          END OF ty_makt.
    *Internal table Declaration
    DATA:it_mat TYPE TABLE OF ty_mat WITH HEADER LINE.
    DATA:it_makt TYPE TABLE OF ty_makt WITH HEADER LINE.
    *Range Declaration
    RANGES : r_matnr FOR mara-matnr.
    *Start of Selecdtion
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM display_data.
      PERFORM display_alv.
         Form  get_data
    FORM get_data.
    Read material from MARA
      SELECT matnr FROM mara INTO TABLE it_mat.
    ENDFORM.                               " GET_DATA
         Form  display_data
    FORM display_data.
      wa_fcat-row_pos   = '1'.
      wa_fcat-col_pos   = '1'.
      wa_fcat-fieldname = 'CHECKBOX'.
      wa_fcat-tabname   = 'IT_MAT'.
      wa_fcat-seltext_m = 'SELECT'.
      APPEND wa_fcat TO fcat.
      CLEAR wa_fcat.
      wa_fcat-row_pos   = '1'.
      wa_fcat-col_pos   = '2'.
      wa_fcat-fieldname = 'MATNR'.
      wa_fcat-tabname   = 'IT_MAT'.
      wa_fcat-seltext_m = 'MATERIAL'.
      wa_fcat-outputlen = 50.
      APPEND wa_fcat TO fcat.
    Display data in a POPUP
      CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
           EXPORTING
                i_selection          = 'X'
                i_zebra              = 'X'
                it_fieldcat          = fcat
                i_tabname            = 'IT_MAT'
                 i_checkbox_fieldname = 'CHECKBOX'
           TABLES
                t_outtab             = it_mat.
    IF NOT it_mat[] IS INITIAL.
    LOOP AT it_mat  WHERE checkbox = 'X'.
            r_matnr-sign = 'I'.
            r_matnr-option = 'EQ'.
            r_matnr-low = it_mat-matnr.
            r_matnr-high = ' '  .
            APPEND r_matnr.
            CLEAR r_matnr.
          ENDLOOP.
        ENDIF.
    select matnr maktx maktg from makt  into table it_makt where matnr in
    r_matnr.
    ENDFORM.                               " DISPLAY_DATA
    *&      Form  DISPLAY_ALV
          text
    -->  p1        text
    <--  p2        text
    FORM display_alv .
    *ALV Display in a POPUP window
      wa_fcat1-row_pos   = '1'.
      wa_fcat1-col_pos   = '1'.
      wa_fcat1-fieldname = 'MATNR'.
      wa_fcat1-tabname   = 'IT_MAKT'.
      wa_fcat1-seltext_m = 'Material No'.
      APPEND wa_fcat1 TO fcat1.
      CLEAR wa_fcat.
      wa_fcat1-row_pos   = '1'.
      wa_fcat1-col_pos   = '2'.
      wa_fcat1-fieldname = 'MAKTX'.
      wa_fcat1-tabname   = 'IT_MAKT'.
      wa_fcat1-seltext_m = 'DESCRIPTION'.
      APPEND wa_fcat1 TO fcat1.
      wa_fcat1-row_pos   = '1'.
      wa_fcat1-col_pos   = '3'.
      wa_fcat1-fieldname = 'MAKTG'.
      wa_fcat1-tabname   = 'IT_MAKT'.
      wa_fcat1-seltext_m = 'GROUP'.
      APPEND wa_fcat1 TO fcat1.
      CLEAR wa_fcat1.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program                = i_repid
         i_grid_title                      = 'Material Description'
         it_fieldcat                       = fcat1
      I_SCREEN_START_COLUMN             = 30
      I_SCREEN_START_LINE               = 10
      I_SCREEN_END_COLUMN               = 70
      I_SCREEN_END_LINE                 = 30
        TABLES
          t_outtab                        = it_makt
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " DISPLAY_ALV
    Thanks & Regards
    Ashu SIngh

  • ITunes continuous play check boxes and iPhone sync

    Hi  Here is my problem..if I want iTunes to play each songs on my library one after the other the check boxes have to be marked BUT if I synch my iPhone with iTunes I don't want to upload on it all of my songs then I check/uncheck only the albums I want to upload.. So now, I can't play one after the other, on my MBP, the songs which are not synched on iTunes because of the check boxes? I miss something?  Thanks, ciao!

    Use playlists for syncing. One or more regular and/or smart to suit your needs.
    Checkboxes are best for marking the occasional unchecked track as something you won't want to hear unintentionally, e.g. interview tracks or holiday music out of season.
    tt2

  • I am new to using flash and need to know how to add check boxes and forms

    I have been going mad trying to figure this out as well as searching until exhaustion.
    So I am hoping someone can point me in the right direction.
    Okay here is what I am trying to accomplish.
    I have laid out my design as a psd and brought it into adobe flash pro cs5.
    I have menu items such as toppings that I want to put check boxes next to each and then once someone goes thru the page and places their choices,I want to be either be emailed what they have chosen from the form... This seems like it might be the easier of the ways to capture data, Or if there is a better way in flash to capture this data, I would take that as well.
    SO here is as far as I can get.
    Imported the psd and added one checkbox in front of the first item and labeled it strawberries. Now I really don't want the word strawberries to show up at all on the page,just the checkbox. But I am not sure if the label for the checkbox actually passes on the value of the checkbox.
    I admit I am lost.
    I did also slice and export this same image into dreamweaver and then I made a separate apDiv for each checkbox, and added into a form. It emails the results,but it is not outputting it in a very readable way.
    Oh I also brought this int Flash Catalyst and added the checkboxes, but I don't know where to go from there.
    So if anyone can let me know the proper way to do this or point me to some videos or tutorials or even a sample file that I can alter....
    I would really appreciate it.
    Thanks

    http://www.flashloaded.com/userguides/ezform/formelements.html

  • Relation between 'only balance in local currency'  check box and OBA1-KDF

    Hi,
    in the master data of the GL account, the check box 'only balance in local currency' should be unchecked it to set that account as Valuation account, i.e in the OI exchange rate defferences?
    or , if the account takes only in local balance also set as valuation account in OBA1-KDF
    Thanks...

    Hi Yogesh,
    Thanks for your quick replay, i use this transaction code "OB_GLACC12" when i was save it showing Error Message like
    "You want to save your changes. They will take immediate effect for all objects chosen. This action cannot be undone."
    0000115405 // 3130 : The data contains error, you cannot save  Message No.FH511
    0000115405 // 3130 : Changing the balances in local currency not possible; acct has a balance Message No.FH085
    0000115405 // 3130 : Keep balance sheet accounts in local currency only  Message No.FH132
    Can you help me how to change the Only balances in Local Currency Check box.
    Thanks,
    Bhaskar.

Maybe you are looking for

  • Using variable name for Netstream Publish() (actionscript)

    Relatively new to Actionscript.  In the netstream publish() or play() methods, can I pass variable names to the methods instead of hard-coding the stream name? Example: private function publishLiveStream():void             ns = new NetStream(nc);    

  • Video Batch Capture

    During the 1990s I edited my DV firewired footage on Canopus Storm editing which, from the start, had a very simple but marvelous Batch Capture facility enabling frame accurate clips to be captured to the timeline.   Could anyone tell me which of the

  • Problem in Keeping one table columns in multiple pages and achive commit

    Hi, i'm using ADF BC+JSF. I have one table which holds 100 column, when i design the UI page, i'm using show one tab to show the fields and kept 50 columns in one tab another 50 columns in second tab. I filled the first tab 50 columns and i try to mo

  • Looking for a stand alone belt clip for new ipod

    I am trying to find out if anyone knows where I can get a stand alone belt clip for my 5gen 60GB ipod. I purchased the invisibleSHIELD and just need a belt clip that does not include a whole ipod cover. Thanks in advance.

  • Exporting for the best quality

    I am making a highlight tape of my children with some music. What is the best way to export the sequence for DVD with the best quality? DO I export it using the "Quicktime" option and make it a "Self contained movie" or do I uncheck this box? (There