An Array of Text Entry Boxes

I am trying to make a servlet that has an array of text entry boxes for entering numbers. By changing numboxes, I would be able to vary the number of boxes. The problem is that it is only finding the first occurrence of the text entry boxes.
If the idea of an array of text entry boxes is totally stupid, feel free to say that as well, as well as any suggestions as to a better basic approach. Thanks!
To run my servlet:
http://www.mycgiserver.com/servlet/waynefrank.ManyAverageServlet1
My servlet:
package waynefrank;               
//** Computes an average of many numbers input by the user
//** ManyAverageServlet1.java
import javax.servlet.http.HttpServlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.*;
import java.util.*;
import javax.swing.*;
//imported for buttons, labels, and images
import java.awt.*;
//imported for layout manager
public class ManyAverageServlet1 extends HttpServlet
// numboxes is the number of number-entry boxes we have.
double numboxes = 04;
String ctrCharValue = null;
public void service(HttpServletRequest req, HttpServletResponse res)          
throws IOException {
res.setContentType("text/html");
     PrintWriter out = res.getWriter();
          Enumeration flds = req.getParameterNames();
          if (!flds.hasMoreElements()) {
     //*** No form submitted -- create one:
out.print("<form method=\"POST\"" + " action=\"http://www.mycgiserver.com/servlet/waynefrank.ManyAverageServlet1\">");
out.print("<font face=arial>");
out.print("** Please enter numbers that you want to average. **");
out.print("<br><br>");
// xxxxxxx put processing to form text boxes
for( int ctr = 1; ctr <= numboxes; ctr++) {
out.print("<td><input name=numbox[ctr] size=17></td>");
out.print(" "+ctr);
out.print("<br>");
// put out buttons
out.print("<input type=submit name=sobmit value=Compute><br><br>");
out.print("<input type=reset name=sobmit value=Clear><br><br>");
out.print("Press the Compute button to get the average");
out.print("</font>");
// end of putting out form      
out.println("</form></html>");
//          Process events from page
          } else {
double average;
String[] NumEntered = {null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,};
double[] numin = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,};
String ACTION;
ACTION = req.getParameter( "sobmit" );
if( ACTION.equals( "Compute" ) )
// xxxxxxx text box processing
try {
average = 0;
out.print("<font face=arial>");
for( int ctr = 1; ctr <= numboxes; ctr++) {
// ??????? it is getting just the first one
NumEntered[ctr] = req.getParameter("numbox[ctr]");
numin[ctr] = Double.parseDouble((String) NumEntered[ctr]);
out.print("Number "+ctr+"= "+NumEntered[ctr]);
out.print("<br>");
average = average + numin[ctr];
average = average / numboxes;
out.print("<br>");
out.print("Average= "+average);
out.print("</font>");
} catch(NumberFormatException e) {
out.print("<img src=http://www.mycgiserver.com/~waynefrank/katie.jpg>");
out.print("<font face=arial>");
out.print("<br><br>Even Katie knows you have to enter numbers !! ");
out.print("Use the browser back button and try again. :)");
out.print("</font>");
}      out.close();
     } } ///:~ end of servlet

I did what you suggested (I think) and it still comes up using just the first occurrence.
out.print("<td><input name= '+ numbox[ctr] +' size=17></td>");
NumEntered[ctr] = req.getParameter("+ numbox[ctr] +");
The whole servlet:
package waynefrank;               
//**  Computes an average of many numbers input by the user
//**  ManyAverageServlet1.java
import javax.servlet.http.HttpServlet;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.*;
import java.util.*;    
import javax.swing.*;
//imported for buttons, labels, and images
import java.awt.*;
//imported for layout manager
public class ManyAverageServlet1 extends HttpServlet
//  numboxes is the number of number-entry boxes we have.
double numboxes = 04;
String ctrCharValue = null;
public void service(HttpServletRequest req, HttpServletResponse res)          
throws IOException {
res.setContentType("text/html");
     PrintWriter out = res.getWriter();
          Enumeration flds = req.getParameterNames();
     if (!flds.hasMoreElements()) {
     //*** No form submitted -- create one:
out.print("<form method=\"POST\"" + " action=\"http://www.mycgiserver.com/servlet/waynefrank.ManyAverageServlet1\">");
out.print("<font face=arial>");
out.print("** Please enter numbers that you want to average.  **");
out.print("<br><br>");
// xxxxxxx  put processing to form text boxes
for( int ctr = 1; ctr <= numboxes; ctr++)  {
out.print("<td><input name= '+ numbox[ctr] +'  size=17></td>");
out.print("<br>");
//   put out buttons
out.print("<input type=submit name=sobmit value=Compute><br><br>");
out.print("<input type=reset name=sobmit value=Clear><br><br>");
out.print("Press the Compute button to get the average");
out.print("</font>");
// end of putting out form                           
out.println("</form></html>");
//            Process events from page
          } else {
  double average;
String[] NumEntered = {null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,};
double[] numin = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,};
         String ACTION;
         ACTION = req.getParameter( "sobmit" );
if( ACTION.equals( "Compute" ) )
// xxxxxxx  text box processing
try {
average = 0;
out.print("<font face=arial>");
for( int ctr = 1; ctr <= numboxes; ctr++)  {
  NumEntered[ctr] = req.getParameter("+ numbox[ctr] +");
   numin[ctr] = Double.parseDouble((String) NumEntered[ctr]);
out.print("Number "+ctr+"= "+NumEntered[ctr]);
out.print("<br>");
average = average + numin[ctr];
average = average / numboxes;
out.print("<br>");
out.print("Average= "+average);
out.print("</font>");
}  catch(NumberFormatException e) {
     out.print("<img src=http://www.mycgiserver.com/~waynefrank/katie.jpg>");
out.print("<font face=arial>");
out.print("<br><br>Even Katie knows you have to enter numbers !!  ");
out.print("Use the browser back button and try again.  :)");
out.print("</font>");
}       out.close();
     } }   ///:~  end of servlet

Similar Messages

  • 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.

  • How do I incorporate text entry boxes into a quiz?

    Hi Everyone,
    I am very new to Captivate 8. I am trying to incorporate TEB's into a quiz. When I try to check the button (include in quiz) it is grey and does not allow me to check it. In addition I do not know how to let the programme know what text I would consider correct or incorrect after the student has typed it into the text boxes.
    I am obviously missing something and would be very grateful for help because I am losing my patience ++ (all the videos on the web regarding this do not appear to be for captivate 8, only earlier versions :-()
    Thanks
    Alex

    Hey everybody.
    Im very new to Adobe Captivate and I try to create questions where the students have to enter numbers only. So I don't want them to be able to enter letters in to the field.
    In text entry boxes I'm able to set it to numbers only. Is there a way to control this in quizzes as well?
    If I try to create a new question I get only the choice showed on the pic below. Is there a possibility to add text entry boxes as quiz questions to the question-pool?

  • Text entry box not funtioning

    Does anyone know if project a project size affects the functionality of text box entry.
    We have a project with 377 slides and for some reason, certain text entry boxes are not funtioning.
    when we break the project down to smaller pieces, the functionality is restored.
    is there some type of size limit for project/ text box funtionality?
    tlockos

    Hi there
    Project size affects lots of things. You should consider yourself lucky that you haven't seen corruption and loss of data with that many slides!
    Captivate 5 should change this limit, but versions 4 and earlier should adhere to a typical guideline of 50-65 slides. Sometimes you can get away with as many as 100-150, but it depends on many factors such as number of objects, how much audio is present, project resolution, etc.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Text Entry Box not showing all text

    I am creating a simple exercise where I would like the user to copy text from the course, paste it into word, and report back what the word count is.  I thought perhaps the Text Entry Box would be the best way to go, since if you click on the existing (default) text, you can copy it.  However after I place the paragraph of text in the box, and resize in the editor so that all the text shows, it does not show all the text when playing back, either previewd or published.  It only shows the last few words of the last line at the top of the box.
    Is there something I am missing?  Or, is there an easier/better way to do what I need?
    Thanks

    Hi all
    If this is Captivate 4, there may not be any need for a widget to do this. I'm guessing you haven't tried enabling the Scroll Bar for the Text Entry Box (TEB)?
    When I just plop a TEB on a slide, I get this in edit view:
    During playback it looks like this:
    But if I edit the TEB properties and enable the Show Scrollbar option:
    I get this in the output:
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Text Entry Box not working right??

    This is strange…. If anyone has any thoughts…
    that would be great.
    I have a slide that tests someone's knowledge for inputting
    into a text entry box. I want to give them 2 tries for doing this
    task - and if they don't perform the task correctly, I want an
    error message to display. However, I want the error message to be
    different based on the 1st time that they try and the second time.
    The method to accomplish this.. I have done many times, and has
    always worked. However, for some reason, it's not working this
    time.
    In order to customize the error message based on whether it's
    the 1st try or the second - I have created 2 text entry boxes.
    The first text entry box is set to display at 0 seconds, is
    set to display for 2 seconds and is set to pause after 1.5 seconds.
    If the user enters a successful text entry the user will be
    navigated to the next slide, if the user enters an incorrect text
    entry they will continue on the same slide and a failure caption is
    selected to display (this is the first error message that displays
    for the first try.)
    The second text entry box is set to display at 2 seconds, is
    set to display for 2 seconds and is set to pause after 1.5 seconds.
    If the user enters a successful text entry the user will be
    navigated to the next slide, if the user enters an incorrect text
    entry they will continue on the same slide. No failure caption is
    selected to display. This is the important point... I have not
    selected for a failure caption to display for this text entry box.
    I have a text caption that displays at 4 seconds - this is
    the second error message that the user will see if they input an
    incorrect text entry into the second text entry box.
    Everything seems to work fine except... for some reason, when
    I enter an incorrect text entry into the second text entry box, I
    get the failure message that I set for the first text entry box.???
    Very strange. I have recreated this 3 times - each time it works.
    Then, all of a sudden, it stops working. I’ve even tried
    recreating the movie from scratch… but same results.
    Any thoughts?
    Thanks,
    Lynn

    Hi again
    Okay, makes sense. I suppose in this case, I'd simply use
    another slide. From what you have explained, it would appear there
    is a possible issue Captivate is having with multiple text entry
    boxes on the same slide.
    So I would insert a slide following the existing slide. Then
    on failure of the first text entry box, direct to the next slide.
    On success of the first text entry box, skip over the new slide to
    the proper "continue" slide.
    Hopefully that makes sense... Rick

  • Text Entry Box not displaying

    Hello,
    I apologize if this has been answered prior, but I've searched and couldn't find a solution (although I might just be terrible at searching).
    Whenever I do a software simulation recording in a particular Captivate project (I'm running 5.5), the recording doesn't seem to auto-insert the TEB's for the text fields I've used (at all).  Instead, when the slide that's suppoesed to require text-entry is shown, it just auto-fills all the text I entered during the simulation and skips to the end of the slide.  I can't for the life of me figure out why; there are no TEB's on the timeline either for that slide.
    I do have my Custom settings setup to "Automatically Add Text Entry Boxes for Text Fields"
    Any idea why this is happening?

    Hi there
    Unfortunately there are a few variables in this equation. Captivate may not understand that a text entry field is a text entry field. It sometimes misunderstands other controls it encounters. I believe that it largely depends on how the application developer elected to name the element. I believe that's how Captivate knows what an element is. By its name. So if an application developer created a Text Entry field but named it something obscure, Captivate fails to recognize it as such and insert the appropriate element.
    The good news here is that you are free to add any element you like after you have recorded. So even though Captivate failed to catch it, there's nothing preventing you from manually adding it. It's a hassle to have to do it, but at least you aren't prevented from doing it.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Font specified in Text entry box not what shows in playback

    Hi,
    I specified 10pt. Arial in my text entry boxes, but the text
    shows up much smaller. Only sometimes. Any idea why? Is this a bug?
    Thanks,
    Deepali

    Try selecting all the text in the caption and setting it to
    10 pt arial even if it is already set that way. Sometimes there are
    invisible formatting characters embedded in the text. Be sure to
    delete any blank characters or lines that appear after the text -
    these can hold formatting characters also.
    If none of this helps delete the caption and start again
    making sure your font is set correctly before you start typing.
    Also be sure not to copy and edit a caption that has give you
    trouble, even if it is fixed now.
    A useful hint:
    If you are cutting and pasting text from another application
    (such as Word) copy it to Notepad first, then reselect it and copy
    it to Captivate. This strips spurious formatting characters.
    HTH
    Carol

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Text Entry Box--Advanced Actions--Conditional Statement--Double quotes in literal input value

    Hello forums,
    I'm new to the forums (and Captivate in general), but I'm having a real problem carrying out a tutorial design and I think you may be my only hope.  Let me explain what I want to do and the difficulty that I'm having:
    I'm an instruction librarian at a university, and I'm designing an interactive tutorial for English 100 students to complete in order to become familiar with how to search the library catalog.  What I've done is taken a screenshot of the catalog search page, made it the background of a slide in Captivate (vers. 6), and placed a text entry box over the search bar in the screenshot.  The idea is for the students to conduct a simulated search by choosing one of three suggested search string formulations, and depending on the search string they enter, the tutorial will jump to a slide featuring a screenshot of what the actual search results would look like.  The idea is to emphasize the use of keywords over full-sentence phrases, and the use of double quotation marks to enclose multi-word search terms.
    So I've set the action for the TEB to "Execute Advanced Actions" and then created some IF/THEN statements in the "Advanced Actions" pop-up window (with action type set to 'conditional'). The script is such that if the student enters the first search option (how does sleep affect college students) in the TEB, the tutorial jumps to 1 slide, if they enter the second option (college students AND sleep), featuring a Boolean operator (AND), the tutorial jumps to a 2nd slide, and if they enter the third option ("college students" AND sleep) with the double quotes around "college students" and the Boolean operator, the tutorial should jump to a 3rd slide.  This action script works fine for the first two input options, but I can't make it work for the third search option.
    I think that it has something to do with the fact that the third input option features double quote marks, and this seems to throw off the script (I tried a quote-less input value for the third IF/THEN just to make sure that it would work jumping to the 3rd slide and it did), and I'm wondering if anyone has any suggestions as to how I can get around this issue.  Again, I need it to work so that if the student enters "college students" AND sleep, with the quote marks and the Boolean operator, the tutorial will jump to a slide showing the search results if those search terms were used in a real search of the catalog.
    I'd be extremely grateful for any help that anyone here can give me, we've been trying to make our online tutorials more engaging and interactive (and therefore more interesting), and I think this would be a great way to teach students about using quotes in their catalog searches.
    Thank you for your time and consideration.
    Andrew Wilk
    College Library
    UW-Madison

    The tutorial is for a "how to use catalog searching" instruction in an undergraduate library session.  We use boolean operators (AND, OR, NOT) to combine search terms, ex. to search for books about the sleeping habits of college students, I would enter "college students AND sleep."  Because "college students" is a multi-word phrase to describe one concept, I need to put quotation marks around the phrase to prevent the catalog from searching for the individual words separately, so the most correct search becomes ["college students" AND sleep] with quotation marks around only "college students," a user-typed "AND," and the word "sleep" (no q-marks).
    A colleague of mine worked out a pretty cool (if complicated) solution that I'll share if anyone is interested.  Since the q-marks where the problem, we've set it up so that the TEB validates the response for the search string with q-marks around "college students." If they enter it correctly, the tutorial jumps to the corresponding slide. The attempt # is set to 1, and if the user fails to enter the validated phrase (they misspell or use one of the other response options) then the TEB is set to run an Advanced Actions Script in which the other two options are scripted in IF/THEN statements that cause, when the term is entered correctly, the tutorial to jump to their corresponding slides. We've created another tab of IF/THEN statements that say that if the response is NOT equal to one of these response options, then the slide restarts (technically the slide "jumps" back to itself and starts over) and the user gets another chance to start the cycle over again.
    I know this is confusing (I had a really hard time explaining it in words), so if anyone is interested I could make a Jing video when I have some time.
    Thank you for all your suggestions

  • Can I have multiple text entry boxes on one slide?

    Can I have multiple text entry boxes on one slide, each with it's own possible answer without having to have a separte submit button for each?
    Message was edited by: Suzanne Petty

    I'm using Captivate 5 - I'm thinking I would like to put two or three text entry boxes on one slide - say labeled Name, Email and Company I'd like to have any answer be accepted, yet I still want to have the answers included with the quiz reporting for our main quiz which I set up using a question pool.
    I understand I can uncheck the validate user input box in the general menu in the property inspector, but that also makes the reporting menu inactive for the text entry box.
    Is there a way to make validate user input accept any answer that is typed in the box, but still have the answers reported with my quiz?
    Thanks
    Heather

  • Text entry boxes in CP6 - Enter key to validate input does not work in Safari?

    I'm using Captivate 6 to create a step by step walkthrough of some different processes that are commonly completed in my workplace. Some of the example processes have portions where text is entered to simulate a process the end user might need.  I have text entry boxes in these slides that require validation of the input to move along, with Enter used as a shortcut key. This works great in Firefox, Chrome and IE all the way down to 8....but if the course is run in Safari, the enter key does nothing.  Is this a known issue?
    Additional info: For many of these text entry boxes, the point is that it is a search field that has a little binoculars icon next to it that executes the search in the actual software we are simulating. For these slides I actually have the submit button associated with the text box made invisible (no fill, no stroke) and placed on top of the binoculars icon. This is an acceptable method of doing the task we're demonstrating, and just so happens to be a workaround for the enter key not working in Safari. However, a few places we have text entry that doesn't have the search/binocular icon next to it because there is a different goal on that section of the software we're visualizing. In those cases, there is no place for me to put an invisible submit button, and I can't make the submit button visible because that's not how the software we're demonstrating would work (thus defeating the purpose of the training).

    Sorry, this is a known bug with no fix available yet, but the makers of SwiftKey are aware of it and we will work with them to fix it: https://bugzilla.mozilla.org/show_bug.cgi?id=617298
    For now, the only solution is to use a different keyboard when using Firefox.

  • How can I get a click box to interact with a text entry box on the same page?

    I'm creating a tutorial on using a specific system and trying to recreate what the end user would actual do in the system.  On one slide, the end user must enter text into a field, then press a button (click box) to advance to the next slide.  I want to be able to have the click box validate if the text entry is correct before advancing to the next slide.  Is there a way to get the click box to validate the text entry?  Not sure how to get the two objects to "talk" to each other rather than function independently.
    Literally, I want the end user to enter the data in the text entry box, then click on the Get button.  I need the Get button (click box) to both validate that the data entered in the text entry box is correct and, if it is, advance to the next slide.  If the data is incorrect, I need the Get button (click box) to show the failure caption and have the end user re-enter the data correctly.
    How do I get the objects to work together?

    Hi there
    You need to delete the Click Box. Yes, you heard me. Delete the puppy.
    I  know it sounds weird. But bear with me. After you delete it, double-click the Text Entry Box. Then click the Options tab. See that option called Show Button? Click it and click OK to dismiss the TEB properties.
    Now you have the button you want. If you don't want a button, double-click it and set it as transparent. Remove the text. Position as desired where the Click Box was before.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • 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

  • How to hide the cursor in text entry boxes

    I didn't see this answer in the forum, and it took a while to figure this out so I thought I'd post my
    solution.
    The issue is that a question requires that the user know where to click before typing, then type the correct value.
    The problem is that a text entry field shows the cursor; a dead give-away as to where the user is supposed to type.
    My solution is:
    1) Hide the text entry box (give it a name and uncheck 'Visible' in the options).
    2) Add a transparent button (with default text if needed) over the area where the user must click.
         - Set the 'Success' option to 'Show', and make the 'Show' item the name of your text entry box.
         - Disable all captions (unless they get points for clicking in the right place).
    3) Set the object timing so the button displays until clicked, then end the button display.  Start the display of the text entry field immediately after the end of the button display.
    The effect is that the user clicks the correct area, then the cursor displays in the correct location, ready for the text entry.

    Brilliant!
    You get a gold star for this idea.  Very original thinking.

Maybe you are looking for

  • HT1338 how do you perform a clean install for imac

    How to perform a clean install for imac, because I cannot upgrade to version 10.6?

  • Issue :ORA-01890:NLS error detected

    Hi all, i am using oracle 10g, when i execute below query Select column_1,column_2,column_3 from view_name where trunc(c_date) >to_date('05-24-2011','MM/dd/YYYY')); I am getting this error in Toad, but no errors in SQL developer. Error: ORA-01890:NLS

  • Forms 10g WebUtil

    Hi, I've a unix AS server and windows client, now i've also searched in the forum, but nothing answer was ok for my problems. I've created a directory named webutil under forms90 in AS under this directory i've copied this files ffisamp.dll jacob.dll

  • Convert Formula from BSO to ASO

    "Rate"=(1-@POWER ((1-("Total Net Surrender Amt"->"JAN"/(@mdSHIFT("ACCOUNT_VALUE",-1,"Years",,11,"Periods",)))),(12/1))) ;

  • How to run Windows update for Win XP SP3 using Firefox

    My desktop PC is running windows XP with SP3. My spouse uses IE 8 for her browser. I use Firefox Version 24. for my browser. Previously, whenever we ran MS or Windows update it starts IE and runs fine. IE 8 has blown up and no longer works (Runtime E