Strikethrough option in Form

Dear all,
I am trying to create a form with an option to strike through either one the words "Yes" or "NO" as shown below". I cannot find anyway to do so, but I do see some forms download from the internet can do it. Please help.
Q1. Are you a xxxx?.......................*Yes / No
* strikethrough as appropriate
Here is the form with strikethrough option
http://www.bd.gov.hk/english/forms/Ba04_f.pdf
see "I/We (name in full)" on the first page.
Thanks,
warsur

Thanks George,
I have no knowledge about script things. I tired to google it. And managed to write a script as below. However, it doesn't work. Where goes wrong?? Please help.
if(event.target.buttonCaption == " ")
{event.target.buttonSetCaption("Pushed Down");}
else
{event.target.buttonSetCaption("");}
Regards,
warsur

Similar Messages

  • How do I open a document sent to me via EchoSign.  Can I disable it as an option for forms sent out?

    I created a form in LiveCycle and saved as an PDF.  75% of respondents filled out the PDF, saved it, and returned it as an attachment. The ones returned via EchoSign are ALL BLANK.  Can I disable it as an option for forms I send out?

    Correct, you'll need to move it to your itunes library and then sync it to your phone.

  • Attributes select-options in form view.

    How to make UI form view context attributes multiple selection ?
    Ex: Employee Id attributes. I need provide this employee id like select-options in form view.
    Thanks,
    kaaviya

    Hi,
    this is an interesting requirement.
    please correct me if my understanding is wrong, do you mean that you want to enable a function like:
    employee ID = 3271 or 3270
    if we take this field in employee IC employee identification for example, you'd like to enable customer to enter more than one ID to start the search without using wildcard (as sometimes wildcard does not help)
    if this is your requirement, maybe try to check the following?
    here is an example for account ID search
    I enter Account ID = 3271;3270 and start search
    in
    CL_ICCMP_BP_BUPASEARCHB2B_IMPL
    FIRE_QUERY
    it will
    er_bo_col  ?= iv_query_service->get_query_result( ).
    how about use a loop to make two query?
    In the above example,
    IV_QUERY_SERVICE->PARAM_STRUCT_REF->PARTNER = 3271;3270
    maybe try to split the string with ; and start the query until the end of this string.
    and then combine the two collection?
    Hongyan

  • How to call dicoverer through menu option in forms

    Hi,
    Need help.........Can anybody tell me .....how to call dicoverer through menu option in forms.
    Thanx
    Sunil

    Hi,
    You can define a Form Function filling the basic information and
    HTML call Set as OracleOasis.RunDiscoverer. You can even define Paramters during the form function registration. With this definition you will able to create a link to a Discoverer workbook that will automatically open Discoverer Plus or Viewer to display the workbook using Apps security.
    Please refer to the following Metalink Note for more details:
    278095.1- How to Create a Link to a Discoverer Workbook in Apps11i
    Hope This helps
    - Sanjeev

  • Running OS X 10.9 but when trying to list an item to sell on ebay it say=Sorry. Your browser doesn't support the popular listing options selling form. If you'd like to try it, please try using Internet Explorer 6 or higher, or Firefox 1.5 or higher. Help

    I am running OS X 10.9
    but when trying to list an item to sell on ebay it say=  Sorry. Your browser doesn't support the popular listing options selling form. If you'd like to try it, please try using Internet Explorer 6 or higher, or Firefox 1.5 or higher.
    Help please so I can continue my sad life

    Tried to see if it is looking for flash and it is disabled or not installed by default; java (not being installed and best to turn it off normally), browser agent to report it as something else.
    Opera comes the closest I've read to spoofing a site telling it is IE but you have to do so per site. Also OmniWeb.

  • ABAP WD application using Select Options  & Adobe form :Don't see form data

    Hi,
    I am trying to get multiple PDF forms by passing multiple order numbers.I was able to get one PDF form successfully and now I am enhancing this application.
    For doing this I have created nested WD Context .
    1) Created a Node for Selections. ND_SELECT  ,
    Cardinality: 1..n ,
    Selection: 1..n ,
    Intialization lead Selection : Checked ,
    Singleton : Checked
    2) Created a Node for Output Structures ADOBE_DATA
    Properties same as above
    3) As we need Nesting Under ADOBE_DATA node I have created a subnode for Header: HEADER
    Properties same as above
    4) Under HEADER node I have created a items Node : ITEM
    Properties same as above
    As I have used Select-options and I am getting both header and Item data in to button search method .
    DATA lo_nd_adobe_data TYPE REF TO if_wd_context_node.
      DATA lo_nd_header TYPE REF TO if_wd_context_node.
      DATA lo_el_header TYPE REF TO if_wd_context_element.
      DATA ls_header TYPE wd_this->element_header.
    * navigate from <CONTEXT> to <ADOBE_DATA> via lead selection
      lo_nd_adobe_data = wd_context->get_child_node( name = wd_this->wdctx_adobe_data ).
    * navigate from <ADOBE_DATA> to <HEADER> via lead selection
      lo_nd_header = lo_nd_adobe_data->get_child_node( name = wd_this->wdctx_header ).
      lo_nd_header->bind_table( new_items = it_header  set_initial_elements = abap_true ).
      DATA lo_nd_item TYPE REF TO if_wd_context_node.
      DATA lo_el_item TYPE REF TO if_wd_context_element.
      DATA ls_item TYPE wd_this->element_item.
    * navigate from <CONTEXT> to <ADOBE_DATA> via lead selection
      lo_nd_adobe_data = wd_context->get_child_node( name = wd_this->wdctx_adobe_data ).
    * navigate from <ADOBE_DATA> to <HEADER> via lead selection
      lo_nd_header = lo_nd_adobe_data->get_child_node( name = wd_this->wdctx_header ).
    * navigate from <HEADER> to <ITEM> via lead selection
      lo_nd_item = lo_nd_header->get_child_node( name = wd_this->wdctx_item ).
    lo_nd_item->bind_table( new_items = it_item  set_initial_elements = abap_true ).
    Could you please tell me where I am doing wrong?
    In adobe form
    Created one MainForm  and its properties are
    Binding : $record.HEADER.DATA[*]
    Repeat subform for each data item Checked , Min Count: 1
    Subform Content : Flowed ,Western Text , Allow page breaks withing Content Checked
    Accessibility /Subform Role: None
    Inside this Mainform I have created a small table ITEMTABLE  with 3 fields and mapped it item data.
    Itemtable properties
    Binding : ITEM
    Uncheck Repeat table for Each Data item.
    I have Itemtablerow inside Itemtable  and its properties are:
    Binding : DATA[*]
    Repeat row for each data item Checked ,Min count: 1
    Accesibility:/Subform Role: Body row
    Row: body row, Check Allow page breaks within content
    Still donu2019t see data on form.here is what i have in Hierarchy tab.
    ADOBE_DATA (no Caption)
    - (Master pages)(no caption)
             Page1
                      Untitled Content Area(no caption)
    - Mainform(no Caption)
                       PSPID {PSPID}
              -ItemTable (No caption)
                      - ItemtableRow (no Caption)
                                   PSPID(no Caption)
                                    CJTDAT(no Caption)
                                    CPERCO(no Caption)
    What could be going wrong ?
    Rgds
    Vara

    Hi John,
    In the WD4A view, there is a button "Show/Hide Layout Preview".
    Click on that button to be able to see the Layout.
    Note that this button is next to the Pretty Print button.
    regards,
    Reema.

  • Highlight Fields Option on Forms

    Hi, I have noticed when I place form fields in documents in Acrobat 8 professional, that sometimes it automatically creates an icon at the top left, just above the "Pages" icon, for having the purple bar accross the top of the page with the button to highlight the fields. But sometimes after placing form fields in a document it doesn't enable this option. And even when I look in the "Forms" menu dropdown the option to highlight fields is grayed out. Why does it lock this option off on some files and how can I manage this option? FYI: I don't have the box checked under edit preferences for "Forms" that says "Always hide forms document message bar".
    Thanks

    Ok thanks that seems to be it. I added two more fields to a file that only had one and it did seem to enable it. Seems odd that Adobe requires at least three before this can be enabled instead of simply if the file has fields or not.

  • Sapscript options inside form

    Hi,
    I've a problem. I'd like to distinguish inside the form if it is print preview or normal printout which goes to printer , but such structure like OPTIONS isn't passed by print program (it's empty). Also inside form RESULT and OPTIONS structures are initial.  Is there any field TDPREVIEW which is field after selection screen with printing options? I cannot modify print program.
    Regards,
    Wojtek

    Hi Wojtek
    You could try to read that value from memory.
    Insert a form in you sapscript, and in that form inset a piece of code like that:
    DATA ITCPP LIKE ITCPP.
    FIELD-SYMBOLS: <FS> TYPE ANY,
                   FIELD(30) TYPE C VALUE '(SAPLSTXC)ITCPP'.
    ASSIGN (FIELD) TO <FS>.
    ITCPP = <FS>.
    If you're lucky you should get the print data.
    Max
    Message was edited by: max bianchi

  • Muse drop down option in form widget

    Hi, I'm looking for help in the form widget. I've created a form and I need to provide a drop down option for one of the fields. Is there a way I can do it in Muse? Can anyone help me??

    Hi
    With Native Muse form widget we cannot include drop downs but if using Business Catalyst you can insert the form with drop downs and then use in Muse.
    Please refer to this post :
    http://forums.adobe.com/message/6100050#6100050
    Thanks,
    Sanjit

  • Add yes/no option in forms

    Is it possible to add a "Yes/No" option in the forms to be used in conjunction with the skip logic feature?

    The answer is likely yes though I would need to know more to be sure.
    Randy

  • Image Upload option for Form within Muse CC

    Hi, Rohit776 suggested I post this question here for a feature in Muse:
    Hi,
    Im building a website via Muse and BC for a movie star client who has images of herself tattooed by ardent fans. Basically, the website is a gallery for fans showcasing the very best in inked images of herself on their skin. On the contact form in Muse, I'd like to add an option somewhere for the client to upload an image of their own tattoo to be included in the gallery (which will be added/edited manually in PS).
    Is this possible without too much xtra code? Or, will I need a single page where folks can upload their image to us which will include some sort of widget? I'd like to be able to manage it though without giving out an email address if possible?
    Any help most appreciated.
    Cheers
    [edit] And here is the original discussion with Rohit's great advice and my completion using FormsCentral. Re: Is it possible to add an 'Upload Image' option to a form in Muse CC 2014

    Hi Rohit, thank you for that.
    I do have a FormsCentral account and notice on a tutorial I found on AdobeTV, that you can specify file types. This is something I'd like to be able to do as they will be images so PSD, png, jpg etc. But just looking over on BC I see that you can add 'Attach File 250mb limit' to a form (as you advised) but I can't see where you can limit to type? Is it in there?
    Finally, will the image be uploaded to the BC server-side (if I use BC form creation method and not FormsCentral) in some type of assets folder or, will the form simply send any clients uploaded images to the specified email account within the form?
    Whoops, final finally: Do you think that it is better to use FormsCentral for this or BC? I want the page to be customised so the form sits on some b-ground artwork. The client has a famous image where she is holding a burning card invite. I have already used this and overlaid a contact form in Muse which has worked really well, so I want to create a (hidden from menu) uploaded page looking exactly the same and this page will be linked directly from the other Contact page, driving any fans there who wish to then upload an image rather than just send a general contact. I hope that makes sense?
    I guess what Im trying to find out is wether FormsCentral data gets fed back to BC in the same way a BC-created form would be seen in the dashboard area.
    Thanks Rohit

  • Currency Option in Form

    Hi,
    I have created a form where the user has to enter a payment amount which can be $, £, €, CHF, etc is there an easy way of allowing them to do this in a numeric field as the form will automatically pick up the default locale?
    Many thanks

    Hi,
    You have two options.
    In the File > Form Properties > Defaults tab, you can set the locale for the whole form. One option is to specify the user system locale.
    If you want to do it on an object-by-object basis, you can specify the locale in the patterns dialog:
    Note that in the patterns dialog, "default locale" refers to the setting you have in the File > Form Properties > Defaults tab (see above).
    A word of caution, if the user's version of Acrobat/Reader or their OS is set to a different locale, then you may get different results.
    You can also change the locale at runtime. See here: http://assure.ly/hVcqlj.
    Hope that helps,
    Niall
    Assure Dynamics

  • Emailing option in form personalization

    Hi All,
    Is it possible to send email thru form personalization option? For example, if I want to notify some users on some triggering event, is it possible?
    Thanks
    SA

    Hello there,
    I don't think that there's a built-in function that sends email. You can use personalization events to call a stored procedure in the database that sends an email.
    Aaron.

  • Disable Save option in Forms 6i

    Hello,
    I am building a custom form which has couple of windows, if one of the window is open i want to disable the save option,
    please let me know where i need to put the code.
    Thanks,
    Srikanth

    write trigger on FORM level KEY-COMMIT and write code this
    null;Baig
    [My Oracle Blog|http://baigsorcl.blogspot.com/]

  • Set accessability  options for form elements in DW12.2

    I cannot find how to set the acccessabiility opdions for form elements in DW 12.2. Because of the changes in the cloud version, options available in DW 12.0 no longer appear in their former locations and I have not been able to find anything about this on the web. I am studying DW CS6 from a text based on Ver 12.0 and it is very frustrating!!!
    Jay Fries

    Copy & paste what you need into code view.
    http://www.htmldog.com/guides/html/advanced/forms/
    Nancy O.

Maybe you are looking for

  • Delete variable from Query

    Hi Guru's,    I copied a query saved with a new name and made some changes to the new one, when I run the Query I get 3 variables(pop up) eg., PlanVersion, Period Interval, Year. I dont need Plan Version, Period Interval, but need just the Year...Whe

  • Domain Migration :from single domain to multiple domain.

    Hi , We have an urgent requirement for the domain migration The scenario is currently we are using MS AD as LDAP server to store portal users and thier credentials. Lets say we have current domain name as : ad.abc.com we are planning to migrate from

  • Help: WRT54GL v1.1 keeps loosing my isp settings

    Hello, Having trouble right out of the box with the above mentioned router with the latest firmware 4.3.12: I can setup my settings ok - isp with DHCP + MAC clone and get the internet (wired and wireless) to work fine but once very often the router g

  • Export video clip from Premiere into an existing Encore project

    New to encore.....love the software so far....but not much experience with it yet. Here is my question: How do I go about exporting a video clip from premiere CS3 into an open/existing encore project. When I try to export to encore from the prem. tim

  • Big problem applet-midi-au sound

    hello all, i have in my applet an String in rtttl Format (for mobile phones). how can i convert this string into the *.au Format. i have already an rtttl to midi converter (returns a byte array in midi format) in my applet, but can't play this byte a