Multiple text boxes on slide not advancing properly

First let me say that this is my very first post - ever - anywhere.  I don't even know if I'm 'posting' correctly, so please forgive me if I'm doing this wrong.  I am brand new to Captivate (1 week), but am already under a work deadline to produce a CBL.  I have built a very simple CBL and it works fine except for 1 problem.  My CBL moves forward on its own, but if the user decides to click the 'forward' button on the navigation bar, it advances to the next slide instead of displaying the next text box within the current slide.  I want to keep the navigation bar for those who read more quickly than others, this way they can advance the CBL at their own pace.  For example, I have a slide with 3 text boxes.  Each text box needs to be read in order.  The first box appears and after so many seconds the first box disappears and the second box appears.  Then the second box stays for so many seconds and disappears and the third box appears for so many seconds and then it advances to the next slide.  However, after it's published, the first box appears and if you click the 'forward' button then it goes to the next slide (not the second text box on the current slide).  I know there must be an easy solution to this and if I had the time to read more tutorials before my deadline, I'm sure it's listed in one of them.  I would appreciate any help you can give me and again, I apologize if I've posted this in the wrong section or did not post this correctly.  Thanks so much!

Hello,
Welcome on the forum.
The Next button on the playbar will always go to the next slide (or the previous slide for the Previous button).
If you really want a simple solution: put only one Text Caption per slide, time the slide for the duration of reading that Text Caption. To simulate your present situation, if you have 3 Text captions, put the first one on slide 1, copy it to slide 2 and add the second Text caption, etc. The 'quick' readers can use the button on the playbar to advance but they will be able to see all the Text Captions. Do hope this explanation makes sense: you are really splitting up your unique slide with 3 Text Captions in 3 slides.
Lilybiri

Similar Messages

  • Find and Replace Font Colors in Multiple Text Boxes

    Hello,
    I have Illustrator version 15
    I made many text boxes with multiple colors, red and black on each letter. I was wondering if there is a find and replace tool for multiple text boxes. I want to change the reds to black and the blacks to light grey. I tried clicking on change swatch color but it only worked for the letter I had selected, even with the global option selected. I then when to select -> Same -> Color Stroke but it just selected each text box on the page....Is there anyway to do this?
    Jordan

    Not exactly a find and replace but you can do it.
    Select the text frames yu want to change the colors using the shift key to click select the frames.
    Then go to Edit>Edit Color>Recolor Art
    You wll see a dialog with red and black bars along side two shorter bars click the shorter bars to select a New Color a color picker will appear you can use the swatches or the color mixer.
    There is a live preview /so you will see the change in case you want to pick a different gray, of course you can always go back to the recolor art dialog.
    I am afraid you manually have to select text frames with multiple colors in order to accomplish what you want but the method above I believe is the only want to change the colors.
    This video shows how the dialog works but pretend the one frame I did not select is another color.
    http://www.wadezimmerman.com/videos/RecolorText.mov

  • In Pages, How to duplicate a design (multiple text boxes

    In Pages, How to duplicate a design (multiple text boxes & graphics) which is on the top half of the page, onto the bottom half? I appreciate anybody's suggestion!
    Alan

    Hi alanhome,
    Not trying to be cheeky, but a copy and paste doesn't work?
    Cheers,
    GB

  • Multiple Text Boxes into One Text Box

    I need multiple text boxes to populate into one text box.  I've got it to work with....
    a=a + "\n " + (this.getField("Other Current Illnesses 1").value)
    However, if the field is blank, it gives me a blank line.   What is the code if the box is "empty" to "skip" that text box?
    Here is what I tried, but it takes everything away even if there is something in the textbox:
    if (this.getField("Other Current Illnesses 1").value !==null) {a=a + ""} else
    a=a + "\n " + (this.getField("Other Current Illnesses 6").value)
    Any help?

    From the sample forms supplied with the Acrobat distribution CD, you can use the "fillin" function that can process up to 3 fields at one time and automatically adjust for null value fields and add an option separator string;
    The document level function:
    // Concatenate 3 strings with separators where needed
    function fillin(s1, s2, s3, sep) {
    Purpose: concatenate up to 3 strings with an optional separator
    inputs:
    s1: required input string text or empty string
    s2: required input string text or empty string
    s3: required input string text or empty string
    sep: optional separator sting
    returns:
    sResult concatenated string
    // variable to determine how to concatenate the strings
      var test = 0; // all strings null
      var sResult; // re slut string to return
    // force any number string to a character string for input variables
      s1 = s1.toString();
      s2 = s2.toString();
      s3 = s3.toString();
      if(sep.toString() == undefined) sep = ''; // if sep is undefined force to null
    assign a binary value for each string present 
    so the computed value of the strings will indicate which strings are present
    when converted to a binary value
      if (s1 != "") test += 1; // string 1 present add binary value: 001
      if (s2 != "") test += 2; // string 2 present add binary value: 010
      if (s3 != "") test += 4; // string 3 present add binary value: 100
      /* return appropriate string combination based on
      calculated test value as a binary value
      switch (test.toString(2)) {
      case "0": // no non-empty strings passed - binary 0
         sResult = "";
      break;
      case "1": // only string 1 present - binary 1
         sResult = s1;  
      break;
      case "10": // only string 2 present - binary 10
         sResult = s2;  
      break;
      case "11": // string 1 and 2 present - binary 10 + 1
         sResult = s1 + sep + s2; 
      break;
      case "100": // only string 3 present - binary 100
         sResult = s3;
      break;
      case "101": // string 1 and 3 - binary 100 + 001
         sResult = s1 + sep + s3; 
      break;
      case "110": // string 2 and 3 - binary 100 + 010
         sResult = s2 + sep + s3; 
      break;
      case "111": // all 3 strings  - binary 100 + 010 + 001
         sResult = s1 + sep + s2 + sep + s3; 
      break;
      default: // any missed combinations
         sResult = "";
      break;
    return sResult;
    Then a custom calculation field for a full business phone number consisting of 4 fields could be:
    // Business telephone number w/country code and extension
    function doFullBusinessTelephoneVoice() {
      var cc = this.getField("business.telephone.voice.countrycode"); // country code;
      var ac = this.getField("business.telephone.voice.areacode"); // area code;
      var nu = this.getField("business.telephone.voice.number"); // exhchange and phone number;
      var ex = this.getField("business.telephone.voice.extension"); // internal extension number;
      event.value = fillin(cc.value, ac.value, nu.value, "-"); // first 3 fields;
      event.value = fillin(event.value, ex.value, "", "-"); // combined 3 fields and internal extension;
    doFullBusinessTelephoneVoice();
    It looks like a lot of code, but it is easy to insert document level scripts into t pdf so the actual coding is not that much. And if one hase multiple fields that requrie multiple input fields, the coding task is even less compared to working out each field.

  • Can you calculate multiple text boxes to achieve a total value?  If so how is that done?  I am trying to create a order form where multiple items can be purchased but i would like the values of each item to calculate so I can achieve a total value.

    Can you calculate multiple text boxes to achieve a total value?  If so how is that done?  I am trying to create a order form where multiple items can be purchased but i would like the values of each item to calculate so I can achieve a total value.

    Hi sashby51,
    I've moved your discussion to the PDF Forms forum--the folks who visit this forum regularly should be able to point you in the right direction.
    Best,
    Sara

  • Exporting Text from multiple text boxes?

    I'm using InDesign CS3 on the Macintosh. I need to export text from multiple text boxes/stories into one text file. The Export File command only exports text when the text tool is selected and the cursor is in the text box. Unfortunately, I have 8-20 individual text boxes per page, none are linked, and my document is 100+ pages, so selecting each text box individually is much too time consuming. There must be a better way - Please help!
    Thanks!
    Carolyn

    The text exporter plug-in seems to work! I did a quick test - text still will need some clean-up to make sure it's in the correct order, but MUCH better than exporting each story individually. THANKS!

  • Quiz slide not advance when using question pools and advance answer options?

    Hi,
    I am using CP 5.5. I created a small test where I have just 2 question in a question pool.  The questions are using the advanced answer options to show some specific feedback. When I insert the questions in to the project using a random question slide, after the user answers where you should be able to press Y or click to move on, I click, but nothing happens.  You can't get off the quiz slide.  The quiz slides work fine when they are inserted in the project as reqular quiz slides, but not when they are being pulled from a question pool.
    Is this a known bug? Is there a workaround? Anyone else run in to this?
    Thanks!
      Lori

    I was having the same problem on the last Random Question slide (total 10 RQ slides), and was able to fix it by following the next steps:
    Make sure Quiz: Pass or Fail actions are set to Continue for both Passing and Failing actions in the quiz preferences.
    Delete the RQ slide not advancing, then duplicate one of the RQ slides working, and assign your question pool to the new slide if different from the original duplicate. This step will make sure you are using a good working RQ slide.
    For some reason, my last RQ slide was corrupted and wasn't advancing to the Score slide at the end of the quiz.
    I can finally finish this project.
    Good luck.

  • Is it possible to do a multiple-records data merge that doesn't generate multiple text boxes?

    Is it possible to do a multiple-records data merge that doesn't generate multiple text boxes? And if so, how?
    For publications such as a directory with contact information, it would be easier to manage the layout by merging multiple records into one text box. However, it seems like the only option in InDesign is to merge the records into each of their own text boxes.

    No, but it's possible to stitch the frames together after the merge, then reflow.  See Adobe Community: Multiple record data merge into paragraph styles-applies the wrong style

  • Multiple Text Boxes on 1 Slide...

    There have been a lot of threads about this, but I've been unable to find an answer to the specific situation a colleague is facing.
    We are simulating a mainframe system where the user enters multiple values, then presses enter.  The client wants the simulation to replicate the system as closely as possible, and therefore we would like the user to Tab between the fields.  After the last field is complete, the user should press Enter to move forward.
    I can't get the text boxes to validate upon exit/lose focus...
    In the screen shot below, the text boxes are highlighted for the sake of this thread.  The yellow boxes have shortcuts of "Tab". The last text box (highlighted in purple)  has a shortcut of "Enter".    My hope was that, if a yellow box was not correct, when the user pressed  tab, they'd receive the failure caption, but this has proved wholly  unreliable.  Sometimes it won't appear at all, sometimes the failure caption for a different yellow-shaded text box appears.
    The text boxes don't seem to validate in any discernable order (not by the order they are in the timeline, not by reverse order in the timeline, not by the order they focus when the user presses tab).  I've tried putting an advanced action on the last text box which should check each text box variable against its correct entry and only move forward if each are correct.  This didn't work at all, it would still allow the user to move forward.  I've tried setting it up so that each text box appears after the pause of the previous text box...  I've tried setting the "on complete -> show -> next text box" (maybe I'm missing some key component of this method, 'cause I couldn't get the target to display on this at all)...
    Thanks in advance- I could use any clues you have!

    Hello,
    I thought you wanted one Advanced action in which you will check the entries in all the TEB's (stored in user variables)? Do you think the 'focus lost' event is a good idea to trigger that since you are not sure that it will happen? And if you use the Submit from the 'last' TEB (that can be doubled as a shortcut), this means that you are imposing the sequence, not, you will have to be sure that this one will be the last TEB to be entered? Or do you want an advanced action that will be triggered by all 'focus lost' events and by all the Submit's?
    What do you mean exactly by multiple custom scripts? Perhaps my lack of knowledge of English is puzzling me? You can trigger only one advanced action with an event, but this action can have a multitude of condtional actions, an unlimited sequence of standard actions and even combinations of standard and conditional actions (as I have been describing in the articles I did mention). If you are thinking about something else, please try to explain by giving more details.
    Lilybiri

  • Multiple text boxes on one slide

    Hi all-
    I want the user to enter their First Name, Last Name, then User ID on one slide.
    I am using 3 text boxes.
    1.  I want the cursor to be positioned in the First Name text box when the user gets to that slide.
    2   I am not validating their information but don't want them to get past a box if they don't enter anything.
    How can I accomplish #1 and #2?
    Thank you as always.
    Erika

    Hi gtmatt22
    Well, in case you are interested, I may have discovered a way
    to accomplish what you initially asked without the use of a
    question slide.
    Add your text entry boxes. Then stagger them so the second
    doesn't appear until the first has been successfully answered.
    Configure the start point just beyond the pause point. Repeat the
    process for each text box.
    Hopefully this helps... Rick

  • How to edit multiple text boxes (not linked/chained) in story editor?

    I don't have a book with running text, but lots of pages (70) with separate text boxes on each page plus some captions. It is a design for exhibition panels.
    It is really painful to proof read. And taking a print for all these pages to proof read is a waste! Is there no way I can see "all" the text in a view, one by one (without selecting the text boxes on each page) to simply review and edit the text? Is the story editor so basic? (I don't see any options or functions in the story editor window!)

    No way I know of in InDesign but what you could do is export all the content to an InCopy assignment. Open the assignment in InCopy and then check it out. That will give you all the stories to edit in Galley, Story or Layout view.
    InCopy is a part of Creative Cloud. If you're on something earlier, there's little else I can offer unless you happen to be on CS6 since InCopy CS6 can still be purchased.

  • Dynamic action on text box change does not working

    i have a page with following components.
    a report that has and edit link.
    a text box to catch the primary key from report link when it is clicked
    a number of elements (text boxes, check boxes and LOVs) which are used as data entry form.
    Now my design is that user enter values save them and no sooner did they save, the report depicts new
    values. if user want to edit any record, they click on edit link and the data entry form elements
    should now bring all those values from DB on page. i m successful to pick primary key and bring
    it in a hidden text box and wrote a dynamic action on its change event that will bring values from
    DB and set all page elements. but but but.........the change event doesnt work. it only work
    when focus is lost from the text box...!! offcourse user wont want to click in that "hiddent" text
    box and then click some where else to bring values in page data entry form......
    help is humbly requested from forum or if any other solution approach is to be used easier than
    one i m using, would be appreciated.
    thanks in advance for reading my bore question :)

    bundles of thanks for reply. i m going to elaborate.
    1. My page no is 3.
    2. Hidden Item name is P3_EDIT_ACTIVITY_ID
    3. Data entry form, hidden item and the report are on the same page.
    4. on the edit link of report, i have used following settings.
        Target: Page in this application
         Page: 3
         and i set hidden item as follows......
         Item 1   P3_EDIT_ACTIVITY_ID         Value #ACTIVITY_ID#
       well, when i click the link on report it does bring Activity_Id in the hidden box (which is not yet hidden for debugging purpose)
    Next i wrote Dynamic action which fires on the change event of P3_EDIT_ACTIVITY_ID and run PL/SQL code with in it which is as follows
      declare
      Dept varchar(50);
    begin
       select my_dept into Dept from activity_main ACTIVITY_ID = :P3_EDIT_ACTIVITY_ID;
       :P3_Dept := :Dept;          (i did use :P3_Dept := Dept also but this wont work)
      insert into testdynamic (stamp) values (Dept);  (I did this to check whether correct value is brought from DB, yes it works correctly, correct Dept is being inserted in stamp column)
    end;
      i have created another true action to check when the dynamic action is fired. its very simple alert. and the problem is, it only fires when focus is lost from the P3_EDIT_ACTIVITY_ID. i mean, when u keep changing value inside the text box, nothing happens, when u go outside, the alert is fired and so the pl/sql procedure. but the line
        :P3_Dept := :Dept;       OR      :P3_Dept  := Dept;         arent working which is the actual requirement.
      I m not using set value here as i have to set a lot of values on page not one. further. plz let me get rid of this lost focus thing as i want the form to be populated with correct values related to P3_EDIT_ACTIVITY_ID as the user click on any edit_link in the report.
    Thanks for persistence. i hope i have provided all the details.
    looking forward.

  • How to populate multiple text boxes by selecting a value from drop down

    I apologize in advance if this is redundant, but I have searched this forum relentlessly to no avail. I have a form  connected to an MS Access database. The database is linked to another datadase on an Advantage server. This is dynamic data that has an ODBC driver allowing to link access tables to the Advantage data. Macros on access updates the table being used on this form. The livecycle form connects to the access data via a DSN on a machine that uses acrobat (not reader). This is a physician office, this form should expedite ordering radiology tests on patients. The plan is to use a drop down to select a chart number that will trigger several text boxes to populate dynamically with the corresponding demographic values like name, age, insurance etc.
    Using a data drop down I am able to select the chart number. When I used the example from the office supplies database, so that a button will trigger the event with the following code:
    if (Len(Ltrim(Rtrim(SelectField.rawValue))) > 0) then
    $sourceSet.DataConnection.#command.query.commandType = "text"
    $sourceSet.DataConnection.#command.query.select.nodes. 
    item(0).value = Concat("Select * from OfficeSupplies Where ID = ", Ltrim(Rtrim(SelectField.rawValue)) ,"") 
    I recieve a syntax error, despite adjusting quotation since I am using text rather than numeric fields.
    My question is the following:
    Is there a simple javascript that I can use to populate these text boxes (which may be read only but would be better if it allows user input)? Or does anyone recommend an alternative method? I would be happy with a link that solves this problem if someone can provide. I am somewhat familiar with js but open to any suggesstion.
    Thanks
    PS this form could also be linked to a Sequel database if that offers an advantage.

    The View object API has a setQurery() method that you can use to set the query as needed before executing it via executeQuery(). You can do this in a custom Application Module method exposed to its client interface and bound to the binding layer. You can call this method from your backing bean on a value change listener.

  • Populating dropdown list with entries in multiple text boxes?

    I'm creating a form that needs to be simple to use and complete.  I would like to be able to populate a drop-down list with entries the user puts into text boxes.  Can this be done?
    For more detail:
    In one location is a table, the use will type into a text box a Project Name, then other information such as location and total acres.
    In another location I've got a table where the user will enter the offerings from each project they listed in the 1st table.  It is a long table as it is, I cannot combine the two (will not fit on one page if I do combine them). 
    Instead of making the user type in the project names multiple times, I'd like to be able to take the project names the users input (from table one) and have those entries automatically populate the dropdown list in the second table.
    Any suggestions would be greatly appreciated!!!

    Not exactly a find and replace but you can do it.
    Select the text frames yu want to change the colors using the shift key to click select the frames.
    Then go to Edit>Edit Color>Recolor Art
    You wll see a dialog with red and black bars along side two shorter bars click the shorter bars to select a New Color a color picker will appear you can use the swatches or the color mixer.
    There is a live preview /so you will see the change in case you want to pick a different gray, of course you can always go back to the recolor art dialog.
    I am afraid you manually have to select text frames with multiple colors in order to accomplish what you want but the method above I believe is the only want to change the colors.
    This video shows how the dialog works but pretend the one frame I did not select is another color.
    http://www.wadezimmerman.com/videos/RecolorText.mov

  • Syncing Multiple Text Boxes in a Single Indesign File

    In theory this problem seems rather simple and there should be a simple way to accomplish my task, but every search I've tried for syncing text only explains how to thread text boxes.
    What I need to do is layout a template that is 4UP on the page. Currently, whenever I make any edits to my text I have to copy the change multiple times to reflect the change in each instance of my layout on the page.
    What I'd like to do is sync all my textboxes so that any changes or updates will automatically be reflected in each instance of the layout. In the past I've accomplished this in Illustrator using symbols and instances a symbol, but I've yet to find a simlar method in Indesign.
    Any insight would be greatly appreciated.

    zslash64 wrote:
    I had stumbled cross referencing, but didn't understand I needed a  seperate reference for each paragraph within the text box. This worked  pretty well, however when making changes to the original reference  sources, I found the cross reference would break so by time I updated  and re-linked each reference in every text box it ended up taking more  time than simply copying the original text box 3 times. I guess I'm looking for more of a dynamic solution.
    Thanks for the help!
    Zach Barner
    Hi, Zach:
    Thanks for the feedback. You shouldn't have to relink or update multiple changed cross-references in a document individually.
    I did a test on my suggestion, because x-refs aren't supposed to break completely when source context is changed. I saw that I didn't caution you about deleting the cross-reference marker (AKA "Text Anchor"); when you create a cross-reference to source material, in the same or different documents, InDesign inserts a cross-reference marker at the beginning of the source paragraph. If it's not visible, enable Type > Show Hidden Characters. It looks like a colon character (:) in the layer's indicator color.
    NOTE: InDesign uses the term "Destination" to describe the paragraph that a cross-reference pulls into the cursor position when you insert a cross-reference, and it uses the term "Source" to describe the pulled-in destination paragraph that's displayed at the position where the cross-reference is inserted. This usage derives from the terms used for InDesign hyperlinks, where it makes better sense. Depending on your pre-InDesign experience with cross-references in longhand, typewritten, or other computer applications, you may find it, as I do, counterintuitive. I think of "source" as what you pull in, "destination" as the place where you display what's pulled in, and "reference" as the thing that's pulled in. I also use the term "source document" to describe the document that contains the reference's source, and I use the term "container document" to describe the document that contains the reference (the stuff that's pulled in.)
    So, when you change a cross-reference's source material in the source document, if you take care not to delete the cross-reference markers/text anchors that are created at the beginning of source paragraphs, the references in the container document's Hyperlinks/Cross-references panel display a yellow warning triangle for each changed source, and you can update them in one action.
    Updating the changed cross-references can also be confusing: If no changed (yellow triangle) cross-references are selected in the Hyperlinks / Cross-References panel are selected (highlighted,) whether you use the Update cross-references button at the bottom of the Hyperlinks / Cross-References panel, or the Update Cross-Reference item on the Hyperlinks / Cross-References panel's flyout menu, ALL changed cross-references are updated. However, if one or more changed cross-references in the panel are selected, the update button or menu item updates only the selected references.
    See if this helps simplify your operations.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for

  • Opening a video playback app causes a system-wide stutter...

    I've been experiencing a very odd bug, and I can't find anyone else who's had it, let alone had a solution to it. When I open any app that plays back video (iTunes, QuickTime, VLC, DVD Player, etc.), it causes the display to hang up every few seconds

  • Generating a flat file

    Hi, I have data in my oracle DB and I generated the data using procedure, using consume adapter service, oracleDBbinding. The schema has been formed in my Visual Studio project which it will be my source schema. Now I need to generate a text file wit

  • Plugin check makes incorrect or misleading diagnosis about quicktime version on Mac OS X 10.6.4

    After reading about security issues with plugins, I ran the Mozilla plugin check to see if my plugins are up to date. It says my Quicktime plug-in is out of date and points me to the Apple web site for an update. However the information on the apple

  • Can't open iPhoto Library / Reorganize WITHOUT iPhoto

    I have about 6000 photos, (now backed up onto my 160Gb HD)--about 3500 in iPhoto (which makes it run so slow I cannot use it) and the balance in labelled folders in my Pictures folder. I am finding it increasingly difficult to keep track of my pics u

  • External page addressing problem 2

    I have started a site for my daughter http://inspireuphotograghy.com It's an iweb site, http://web.mac.com/chuckusher/IWeb/Debbie/ with the domain name pointed at it. It's just a starting point. Anyway, I saved a power point file as a web site and lo