Using text entry Box or Text are button

Hi,
How do I do these?
using text entry box or text area widget.
to describe:
in my first slide I have text entry boxes for
    1. User name
     2. name of superior
     3. email of the superior
let say: 1. refer to varialbe V_UserN
             2. refer to V_sup
             3. refer to V_emailS
next slide would be a video
next slide would be a text entry or a text area..this is where the user writes anything
     Text entry box with submit button
What I want from this text entry box is..if the user doesnt write anything, upone clicking the submit button, the interaction wouldbe "please write a review on the text area"..if the user write something the something, the submit button will execute continue.
how do I do this?
next slide would be a text entry box or a text area..wherein the user write something based on question (this is not a quiz slide). The message would be sent to the superiors email. how do I do this?
hope you can help me.
Thanks

To check if the user didn't write anything you'll have to compare the value of the associated variable of that TEB or Text Area with a user variable v_null. You have to create that user variable and just leave it empty.
Have a look at my blog post:
Where is Null?
You'll have to create the custom question slide with standard objects. There is an mail widget included with Captivate, but didn't try out if you can insert the value of a variable as an email address.
Lilybiri

Similar Messages

  • HTMLDB_TOOLS by Vikas  (Post Tab Delimated Data using Text Area)

    Hi
    We want to upload tab delimated data using text area (user will paste data in text atrea instead of uploading csv file)
    The data format will be
    .-----Col_1-----Col_2-----Col_3
    1-----10.78-----12.58-----11.92
    2-----11.66-----12.77-----12.49
    3-----10.83-----13.05-----12.92
    4-----11.54-----13.27-----13.72
    5-----11.45-----12.83-----12.89
    6-----11.81-----11.29-----12.33
    7-----12.60-----12.31-----12.72
    8-----11.78-----12.44-----12.55
    9-----11.97-----11.95-----12.49
    10-----11.50-----12.28-----12.15
    Where
    ----- indicates tabs
    1. Col_1 ,Col_2,..... are column headings
    2. Col_1 heading will be always blank as indicated
    3. Default Data Type for all columns will be varchar2(10)
    4. Number of Columns may vary upto *150*
    Regards
    Edited by: jazib on Jan 21, 2009 8:15 PM

    thanx for the re Dalerich1, but no, unfortunately i have a
    banking CRM-app which i have to simulate, and within that
    simulation swf there has to be that functionality.
    plus, since the app is still in development, it may change
    within the next couple of weeks, so i'd have to be able to record
    the functionality again with captivate (customer requirement) &
    then efficiently & quickly make it work like in the real thing.
    otherwise (if thmy customer wouldn't insist in using
    captivate) i might have dropped captivate in favor of flash a long
    time ago...
    any other directions anybody? i can't believe this simple
    task is costing me so much time and effort.
    thanx
    caveman

  • Text entry box with double-click button - is this possible?

    I need to produce a simulation in Captivate 3 where the user types in some text, then double-clicks a button to open another window.
    With a normal text entry box the button doesn't seem to have the option to respond to a double click.
    I can't add in an extra slide with a click box to simulate the double-click as I have icons that change colour with time on the first slide.
    Are there any other ways of getting round this?

    Thanks for the suggestion. That would work brilliantly normally, just not on this slide, unfortunately.
    The reason for this is I have two hint icons on the screen - 1 shows a basic one then the second is a rollover slidelet with a clip of the correct action being performed. The first is on screen for a few seconds, then the second takes over.
    The earliest I would be able to set the second click would be around 8 seconds in, to allow the second hint to appear before the text box pauses the slide. So anyone who immediately knew which area to click would have to click once then wait a while to make the second click.
    It's annoying that the problem is of my own making by having the 2 icons, but as I've done this through a series of lessons, I can't really change it now.
    I might just go ahead with the single click option (unless there's a double-click in C4? [hoping to get this soon!]) and hope that no-one notices that the screen changes a bit too quickly to really have registered the second click.

  • Text are+button, some change in text

    Sorry for that question, but i don't understand.
    I have a text are, and a button. I need, then i selected some text in text area and press the button, the <b>my letters </b> will be add. How do that? I don't undestand at all =(
    Big thx for any help.
    If you don'y mind, please make example. Thx very much

    I solve the problem
    String awd = jTextArea1.getSelectedText();And all code, if any one need
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.datatransfer.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.table.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    * @author mmakarov
    public class TextEditor extends javax.swing.JFrame {
        /** Creates new form TextEditor */
        public TextEditor(
            initComponents();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            jButton1 = new javax.swing.JButton();
            jScrollPane2 = new javax.swing.JScrollPane();
            jTextArea1 = new javax.swing.JTextArea();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            jButton1.setText("jButton1");
            jTextArea1.setColumns(20);
            jTextArea1.setRows(5);
            jScrollPane2.setViewportView(jTextArea1);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 243, javax.swing.GroupLayout.PREFERRED_SIZE)
                            .addContainerGap())
                        .addComponent(jButton1)))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addContainerGap()
                    .addComponent(jScrollPane2, javax.swing.GroupLayout.PREFERRED_SIZE, 153, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(75, 75, 75)
                    .addComponent(jButton1)
                    .addContainerGap(46, Short.MAX_VALUE))
            jButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jButton1ActionPerformed(evt);
            pack();
        }// </editor-fold>
        * @param args the command line arguments
         private void jButton1ActionPerformed(java.awt.event.ActionEvent evt)
    System.out.print("Hello World ^_________^");
    String asd = jTextArea1.getText();
    String awd = jTextArea1.getSelectedText();
    try {
        if (awd != null)
            jTextArea1.setText("<b>"+awd+"</b>");
       System.out.print(awd);
    else
    System.out.print("la la la~ figna");
    catch (Exception ex)
        System.out.print(ex);
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new TextEditor().setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton jButton1;
        private javax.swing.JScrollPane jScrollPane2;
        private javax.swing.JTextArea jTextArea1;
        // End of variables declaration
    }

  • How can i add & update records in a database by using text feild & buttons

    i ,ve a difficulty to make an application which should add,retreive,update,find&delete records to a database in SQL server2000.
    how can i do it easily plz reply me as soon as possible.

    Your question is WAY too broad. People are here to help with problems, not write programs for you. Do you know anything about AWT? Swing? JDBC? SQL? Databases? If not, I suggest you start working with the Tutorials to the left side of this page and come back when you have a specific question.

  • Using a check box to enable/disable buttons.

    I am just beginning to dive into the world of mobile application development, and encountered the first time I think I need to use a function (<mx:Script... private function) and was wondering how I would go about making it so when a specific check box is selected, a set of corresponding buttons are enabled. When it is unselected, these buttons are then disabled. I'm sure this is a super novice question, so I'm hoping someone out there can help. This is for an iOS mobile app. Thanks!

    Thanks for your response.
    Based on your reply, I've entered this -
    if (this.rawValue == 1){
    Company1.rawValue = Company2.rawValue;
    Contact1.rawValue = Contact2.rawValue;
    Phone1.rawValue = Phone2.rawValue;
    Email1.rawValue = Email2.rawValue;
    Address1-1.rawValue = Address2-1.rawValue;
    Address1-2.rawValue = Address2-2.rawValue;
    Address1-3.rawValue = Address2-3.rawValue;
    City1.rawValue = City2.rawValue;
    ZipCode1.rawValue = ZipCode2.rawValue;
    Country1.rawValue = Country2.rawValue;
    and when I clcik the check box in the Preview PDF pane, nothing happens.
    Do I have to save this as a "reader enabled" file before I can check to see if it works?  Our clients that receive this form will be filling it out using Adobe Reader.
    I'm only focused on the first two columns for now.  I may eventually add the "End User" column down the line, but I just want to get the first part working first.
    Company1 corresponds to the binding value in the "Company" field in the first column (Invoice or Bill To).  Company2 corresponds to the binding value in the "Company" field in the "Ship To (from freight forwarder)" in the second column.  This is the same pattern all the way through.
    In the address fields, the binding values are shown as as follows -
    Address1-1 means column 1, field 1
    Address1-2 means column 1, field 2
    Addrress1-3 means column 1, field 3
    Etc...
    I think I need to change the binding value for each field as I don't think the script like the "dash" in the binding values of the address fields.
    Again, I'm sorry for these are stupid questions, but I am completely uneducated and green when it comes to using scripts.

  • Text entry box actions based on value

    Hi there..
    I am currently working on a software simulator where users search for orders by typing an order number in a search field... In Captivate I have created a Text Entry box with "submit" button, what I am trying to achieve in is if the user type specific value (numbers) and click "submit" button it will take them to a specific slide in the project BUT if they type difference value (in the same text entry box) and click "submit" button it will take them to different slide in the project ?
    hope I have explained the question clearly.. btw I am using Captivate v5
    thanks

    OK, you know how to add the correct entries. Set attempts to infinite, and create this conditional action to trigger by Success for the TEB:
    I created a user variable to associate with the TEB instead of the generic one, it is labeled v_order.  I labeled the slides to jump to as well, makes it easier to use in an advanced action. Screenshots are from CP8, so will look bit different for you, but what you hneed is the same.

  • Text Entry Boxes and their content not being captured in Automatic Recording

    I have searched the forums here and elsewhere extensively and whilst I have found people with similar issues, I have yet to find a solution. My problem is this:
    I am trying to record myself using a piece of software which contains numerous text fields. In the past, when using Captivate 3, I would simply fill out these fields and Captivate would record my entries automatically. When the project was played back, the training simulation would pause and allow the user to type in the text field and provided the entry matched the options I had defined, the simulation would continue to the next step.
    So, my colleague and I have since bought Adobe Tech. Comms. Suite 2 and have upgraded Captivate 3 to version 4. Ever since doing this we have both been unable to successfully capture text entry boxes with their content when recording automatically in any mode. We have checked and triple checked the settings to make sure that the automatic capture of text entry in fields is turned on yet we still cannot get Captivate to perform this task it once so easily could. We both suffer from the same problem on both of our installations of Captivate 4. We have tried recording in all modes with no success.
    I am tearing my hair out as I need to come up with some sample content for a major Governmental client which would be worth a 5 figure sum to my company and I really don't relish having to manually create every text entry box as there are a LOT of them in this application!
    I have also reported this as a bug to Adobe using the correct form. As yet, no response.
    I would really appreciate any genuine help that can be offered by you guys.
    In desperation,
    Rob.

    Ok, I think I've sussed it!
    I've been pulling my hair out for weeks on this and after posting on here, I decided to try something and I think I may have found the problem.
    I work with a laptop as I am a Trainer and therefore quite mobile. When I'm in the office, I dock my laptop and use the Extended Desktop functionality of Windows so I have my laptop screen and a second 19" monitor which i find incredibly useful as screen real estate is always at a premium. And this is where I believe the problem lies.
    I performed a simple test and have repeated this test with identical outcomes everytime. Here is what I did. I fired up Captivate and Outlook and opened up a new mail window in Outlook. I then set Captivate to record the new mail window and hit record. I typed some text into the To field and the Subject field and then stopped the recording. I then previewed the results. When the new mail window was on my primary screen, (i.e the laptop) the Text Entry Box recording worked 100% fine. However, if the new mail screen was residing on my secondary screen, i.e. the monitor, the Text Entry Box recording failed!
    So it would seem that Captivate 4 has an issue with seeing the text entered on a secondary monitor when Windows is running in Extended Desktop mode. I am absolutely certain this wasn't an issue with Captivate 3 as I created plenty of content without any of these problems and I was using the Extended Desktop back then.
    So, if anyone else is having the same issue, and you are running an Extended Desktop, try what I did above.
    In the meantime, I am raising this issue with Adobe in the hope they can get this fixed, but at least now I can carry on with my content creation
    Regards,
    Rob.

  • Text entry box question

    Hey all, I am currently working on a project and have run
    into a snag and cant seem to find the answer, or even if what i
    need can be done.
    Question 1: how do I advance a slide with the correct entry
    of a text field without a button or keypress?
    Question 2: if this is not possible, how can i have a text
    entry box check for correct input using a custom button?
    Any help would be appreciated, Thanks.
    M. Anderson

    Hi M. Anderson
    The first question may be accomplished if (and only if) the
    last letter the user is supposed to type is unique among all the
    letters. For example, BOFFO would not work. O occurs twice. But
    LIFE would work, because E is unique. You could then configure the
    letter E to be the shortcut for the Text Entry Box.
    For the button, it's pretty easy. Click the Options tab and
    look at your choices. Make sure the "Button" option contains a
    check mark. After you dismiss the dialog, you end up with a rather
    generic looking button. But once you enable the button, you may
    then double-click it to edit its properties. You could choose an
    image, or you could make it invisible and position the invisible
    button over another image you placed on the slide as a simple image
    object.
    Hopefully this helps some... Rick

  • ButtonMode for Text Area

    Hi,
    I'm hoping to use text areas as "buttons."  After setting a text area's buttonMode = true and editable = false, still no "hand."  Can this work?
    Thanks.
    Doug

    I tried this, but still no hand.  Please let me know if I implemented correctly (code below).  I wondering if my Flash Player might be the problem.
    <s:TextArea 
    x="1" y="87" width="147" height="42" text="5. Complete and Assign&#xd; in COMIT Tracking" borderVisible="false" toolTip="line one of text line two of text etc etc etc line three of text line 4 of text and on and on" useHandCursor="true" buttonMode="true" editable="false"/>
    Thanks.
    Doug

  • Text area limits

    how do i make it so that after a user puts in a certain amount off characters that the box would automatically set the user on the next line instead of allowing them to go very far and make the scroll bar at the bottom very skinny?

    HI
    you can specify the no of columns (which is no. of characters in one line) in the constructor of the Text area or you can use the setColumns() method . Once you specify that, the text area will take care of the thing which you want, that it will go to the next line when the columns are exceeding the specified limit.
    If you are using Text Area in AWT, it will manage the scrolling. If you are using JTextArea, then you will have to use JScrollPane for the scrolling purpose.
    Hope that helps,
    Parag

  • Need to show some values from Lookup in Text Area of Request Dataset

    Hi,
    I have a requirement where I need to display values(which are roles) coming from a lookup in text area. The reason behind is to show to end users list of roles. They should not be able to select these roles.They will just refer the list and enter desired role in a text field. I thought of using text area as the component to be used for showing these roles. However, I cannot use lookup property for widget="textarea" in the request dataset.
    Can we do this or is there any other component where I can show list of roles so that users can just refer the list.
    Thanks.

    Lookup Property ??
    TextArea is different type of widget. It doesn't come with lookup.
    Search developer's guide.
    – textarea: Specifies a large text field for entering multiple lines of text.
    Even if they select then don't use that field for further processing. You can use Attribute instead of AttributeReference.
    Workaround:
    Have one text are and use Prepopulate adapter to populate those values.

  • Safari and TEXT areas?!?

    Am I missing something?
    If I'm on a web site that uses text areas, it allows me to type as many lines as I need, but there is no scroll bar that allows me to scroll up/down within the actual text area.
    This seems to me to be a massive oversight.
    Does anyone know if this problem will be fixed? I mean, really...

    Oh wow - I never heard that - I'll give it a shot - thanks!

  • Submit All button for all text entry boxes at end of exam in Captivate 7

    Hi everyone,
    I am new to this forum, and I was hoping that someone could help me out with a problem that has been eating my lunch for the last week.
    I have a captivate 7 project that I am setting up as a virtual workbook, with text entry boxes asking true/false, yes/no, and short essay questions through out the most part of the workbook, and then at the end it has a series of multiple choice questions that are set up on question slides. Is there a way to have all of the text entered in the text entry boxes submited along with the quiz questions at the end, to my LMS? And if at all possible, still inform the user if there are any questions that have not been answered? Like I said, I am new to this forum, so if I forgot to include any important information, I apologise, but if anyone could help me ouot, I would be extreemly thankful!
    thanks,
    Luke

    thenks for the reply Lilybiri! As far as I have been able to find, there is no way to associate a submit all button with TEBs, so I am not sure if this is something that I am overlooking, or if I am misunderstanding the recomemendation.
    What I am trying to do is set up a bunch of TEBs to be answer entry boxes for questions throughout the workbook, which will lead up to an exam. The exam, I am good on, because it has the submit all button attached. But the TEBs that I am using as the answer entry boxes, I can't seem to find a way to link them all to the same submit button.
    I hope I am being pretty clear about it, but I've been pounding away at this for a while, so I fear it might come out a but rambly. So, please let me know if I need to clarify anything.
    Thanks!

  • How do I show a hand cursor for a text entry box button

    I'm using Captivate 5 and have run into an annoying problem...
    For a general click box, there is an option for "Show hand cursor over hit area" which will result in the cursor changing to a hand when rolling over the click box region in the published presentation.  I want to do the same for the 'submit' button in the text entry box. Is this even possible?  I'm hoping to keep things consistent as a user is clicking through the presentation.
    I find it odd that it doesn't have the same property as found on the clickbox considering it has the same purpose.  I'm using a background screenshot image to simulate an entry in an application, so I'm actualy hiding the submit button, but the button I want them to press lacks the hand cursor that would indicate it is clickable.  I don't want to use a click box to allow the user to move on because I still want a failure in the text entry box to prevent the user from moving on.
    Hope that all makes sense.

    Hi there
    Another approach is to use a Rollover Caption. Just remove any text and configure the caption as transparent. Then layer the Rollover area over the part where you want the hand to change to a cursor. The net effect will be that the cursor change will occur. Clicking will then result in triggering the underlying Submit button, which appers to be invisible and layered over an image.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

Maybe you are looking for

  • Automatic Send mail when sales order is change

    Hi friends, I have a requirement that  when ever sales order is created or change i.e in va01 or va02 automatically mail to send to customer. So please can u sujjest me in doing this ? with regards, prasad.

  • How do I transfer my iWeb files to a new computer?

    I recently did a clean install of Yosemite to my new iMac, getting rid of years of unneeded files. I have successfully reinstalled all the programs I use frequently, but I am stumped on how to transfer my iWeb files so they work on my new computer. I

  • Anyone tested 24" iMac with FW800 drive?

    Just wondering if anyone has tried using a FW800 drive with the 24" iMac? I tried my Macally enclosure with a Samsung 250 GB drive. I found that the write speed was about 70% of the read speed (using Quickbench 2.1)---very similar to my old dual G5.

  • How can I get Flash Player for Android 4.1.2?

    How can I get Flash Player for Android 4.1.2?

  • Halo 5 and The Master Chief Collection at Best Buy

    Halo 5: Guardians Continue the Halo saga with next installment of the franchise, this time for Xbox One, Halo 5: Guardians. Pre-order your copy of Halo 5: Guardians from Best Buy today and get ready to don Master Chief’s armor again once it’s release