Character limit for the entry of short answer?

Cap 9.

I use SCORM 1.2, which imposes a limit of 255 characters for the text input, however, I can't find a way to limit the entry of text box for the quiz/short answer, which means that the people of entry much more of 255 characters and submit their responses, but unbeknownst to them, the answer is off.

Is it possible to apply a limit of characters for pre-built Answer questionnaires/Short models?

Thank you

You can limit the number of characters entered in a text entry area.  The maximum number of characters that will now be accepted by a BER 9 Captivate is 150 characters.  But you can set the number being less than that.

You can certainly include an area for text input in a quiz, but it's usually only when you set the Validation option on WE so that the text of the learner is assessed to see if it matched to a correct answer.  In your case it is not necessary for a correct answer if you want just your comments.  If you do not set a Validation we then report to the Quiz option is gray.

Developers wishing to receive feedback courses accepted by the LMS often use the value short answer question survey instead of rated.  It seems that some LMS then saves the text entered.

If it's somewhat a catch-22.  I still believe that your best option is to simply tell users NOT to go more than a few sentences of comments.

Tags: Adobe Captivate

Similar Questions

  • Character limit for ESX server name

    Hey everybody-

    Is could someone please tell me what the character limit for the server host of naming for ESX 3.5 Update 4 host computers?     I'm trying to figure whether to apply the limits of Unix (we have a new company naming convention)

    Thanks in advance!

    Steve

    see this KB article

    http://KB.VMware.com/kb/1000064

  • Character limit to the custom calculation Script?

    Hello. I have a document that has a text form field. I want to run a custom calculation script which basically says if field 'Number group' = xxxxxxx, so the 'Group name' field should = ABC company.

    I have a list of almost 575 group numbers and names that I need to put in the script. And I have the script works fine, but I'm guessing that there is a limit of characters for the field script? It doesn't let me put my complete list in there.

    Any suggestions on how to work around this problem?

    Thank you

    Brandy

    Yes, there is a character limit for internal JS Editor. The round it is to use an external, such as Notepad.

    Do go to Edit - Preferences - JavaScript and select "Use the external JavaScript editor" and then select the application you want to use.

    Don't forget, however, that you must close the external file each time that change you it if you want to update in the PDF file.

  • Character set for the words

    Hello

    Does anyone know what charset LPX uses for the words when you export a project at noon?

    I have set in Hungarian language of OS X. The correct character set for the Hungarians should be ISO-8859-2 (Latin 2), yet when I export a logical project that uses these words at noon, the external drive is not displayed correctly the

    That is to say. o is displayed as Ăł or similar, any set of characters I use in other software

    P. S.

    I submitted a bug report, as this seems to be a bug, but there was no reaction yet on the report

    PS.

    Never mind, I just realized the character encoding used is UTF-8

  • The "64K limit for the total size of all the values in a registry key" rule - not more valid?

    http://support.Microsoft.com/kb/256986
    - more information -> Description of the register article, it is said:

    Note There is a 64K limit for the total size of all values of a key.

    I don't see that this rule can be valid any longer?

    In my Windows 7 SP1 x 64, I have at least 15 keys with values that add up to more than 65 535 bytes.
    In fact, I have more than 15 values (strings, binary and multiple channels) which, by themselves, have some sizes larger than 65 535 bytes.

    Here are a few examples.

    Native Instruments Kontakt 5 installation;
    [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\B354255567BB3E5479D39FE554E87D08\Features]
    -This key contains 91 string values, where 90 are under 250 bytes, but the last of them. "FE923650A" has a length of 67 401 bytes of data.

    Autodesk 3ds Max Design 2011 installation;
    [HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\FFECC85A69B39040E99BEA59BF78957B\Features]
    -This key contains 14 values of string, ranging from 1 (the 'P' value) byte to 75 426 bytes (value "max7"), bringing the total size of 116 944 bytes.

    Installation of Windows 7 by default.
    [HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\AppCompatCache]
    -This key contains a binary value of monkey 'AppCompatCache' that has a length of 259 768 bytes of data.

    Another installation of Windows 7 by default;
    [HKLM NT\CurrentVersion\Perflib\CurrentLanguage]
    -This key contains 2 channels multiple values: 'Meter' (87 950 bytes) and 'Help' (418 345 bytes), a total of 506 295 bytes for this key.

    Finally, once again Windows 7 installation by default.
    [HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\StartPage2]
    -This key contains 3 DWORD and 5 binary values with the value "ProgramsCache" being the most important of all with its 795 404 bytes
    either a sum of 807 639 bytes for this key.

    Hello

    Check this box:

    http://social.msdn.Microsoft.com/forums/en-us/windowsgeneraldevelopmentissues/thread/84944bfe-4bf5-47cd-93ac-4d09076fcd40

    This problem can also be published on MSDN Forum.

  • Wait for the entry?

    Hi all

    I need to create a custom entry dialog box and the problem I encountered is that I can't figure out how to make my request to wait for the user to complete the entries in the framework. When you use a JDialog or JOptionPane application will stop running and wait for the dialog box to close. My question is how to do something similar without using a JOptionPane or JDialog. I just can't figure out how to get the same effect by using a JFrame or other component. I know I could just use a JDialog or JOptionPane to get input from the user, but I'm just curious to know how I can stop running and wait for the entry as the JOptionPane allows you to do, but without using a JOptionPane or JDialog.

    Thank you for your help :)
    Nathan D.

    -----
    : Edit:
    I forgot to mention that the reason main I avoids JDialogs is I need the entry dialog box to be internal not external application I use mode exclusive fullscreen. And a JOptionPane does not allow me to add the other components too it such as JLabels and other GUI. I just need a way to get input from a component or internal window and wait for the entry as a JOptionPane or JDialog.
    -----

    A NBS are:

    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    
    
    
    public class Main extends JFrame implements ActionListener {
    
        /**
         * @param args the command line arguments
         */
        public static void main(String[] args) {
            new Main();
        }
    
    
        JButton go = new JButton("Show custom input dialog");
    
        public Main() {
            setSize(300,150);
            setLocationRelativeTo(null);
            setLayout(new FlowLayout());
            go.addActionListener(this);
            add(go);
            setVisible(true);
        }
    
        public void actionPerformed(ActionEvent e) {
            InputDialog d = new InputDialog();
    
            /*
             * Here is the problem it is necessary that I create a
             * custom input dialog to allow further modifications however
             * i'm not sure how to wait for the user to enter text and press
             * continue in that input dialog. Unlike JOptionPane the code executes
             * before the user presses continue. My question is how do I wait for the user
             * to press continue in the InputDialog before I call d.getString(); without making the main
             * application unresponsive.
             */
    
            String returnValue = d.getString();
            System.out.println("return value "+returnValue); //will be null or empty because application doesn't wait for input.
        }
    
    
        class InputDialog extends JFrame implements ActionListener {
            JTextField f = new JTextField();
            JButton go = new JButton("Continue");
    
            public InputDialog() {
                setTitle("Custom Input Dialog");
                setSize(300,150);
                setLocationRelativeTo(null);
                setLayout(new FlowLayout());
                f.setPreferredSize(new Dimension(100,25));
                go.addActionListener(this);
                add(f);
                add(go);
                setVisible(true);
            }
    
            public void actionPerformed(ActionEvent e) {
    
            }
    
            public String getString() {
                return f.getText();
            }
        }
    }
    Published by: neptune692 on January 3, 2011 13:25

    neptune692 wrote:
    .. a JOptionPane does not allow me to add the other components too it such as JLabels and other GUI. ..

    Of course, it does!

    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    
    public class DumbNameMain extends JFrame implements ActionListener {
    
        /**
         * @param args the command line arguments
         */
        public static void main(String[] args) {
            new DumbNameMain();
        }
    
        JButton go = new JButton("Show custom input dialog");
    
        public DumbNameMain() {
            setSize(300,150);
            setLocationRelativeTo(null);
            setLayout(new FlowLayout());
            go.addActionListener(this);
            add(go);
            setVisible(true);
        }
    
        public void actionPerformed(ActionEvent e) {
            JTextField f = new JTextField(10);
            JButton go = new JButton("Continue");
            JPanel p = new JPanel(new FlowLayout());
            p.add(f);
            p.add(go);
            JOptionPane.showMessageDialog( this, p );
    
            String returnValue = f.getText();
            System.out.println("return value "+returnValue);
        }
    }
    
  • What is the limit for the creation of a primary key?

    Hi friends I have an another question... .Please help me...


    What is the limit for the creation of a primary key?


    Thank you

    I think that its 32

    Yes from the doc

    Primary and unique keys because composites are limited to 32 columns, a composite foreign key is also limited to 32 columns.

    Published by: Karthick_Arp on January 13, 2010 22:04

  • Current limit for the PXI-4110

    I'm a PXI-4110 with LabWindows programming. I'm trying the current limit. I have an output to 5V with a load resistance of 1 K; This makes the current 5mA. I put the current limit of 2mA to work. When I read the voltage and current is 5V 5mA. Here is my code:

    g_voltageLevel_ch0 = 5.0;

    g_currenLimit_ch0 = 2.0E - 3;

    status = niDCPower_ConfigureOutputFunction (vi_4110_0, channel0Name, NIDCPOWER_VAL_DC_VOLTAGE);
    niDCPower_error_message (vi_4110_0, status, errorMessage);
    status = niDCPower_ConfigureSense (vi_4110_0, channel0Name, NIDCPOWER_VAL_LOCAL);
    niDCPower_error_message (vi_4110_0, status, errorMessage);

    status = niDCPower_ConfigureVoltageLevel (vi_4110_0, channel0Name, g_voltageLevel_ch0);
    niDCPower_error_message (vi_4110_0, status, errorMessage);
    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, g_currenLimit_ch0);
    niDCPower_error_message (vi_4110_0, status, errorMessage);

    I find that if I put my current limit to channel 0 to 10mA, above the error message disappears. However, I can put the current limit for channels 1 and 2 to 2mA, and I do not have an error message with them. I see nothing in the power supply on a valid range on the current limit. To be clear on what happens if I do this:

    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, 8-3);

    I get the error "Invalid value for the parameter or property."

    However, if I do this:

    status = niDCPower_ConfigureCurrentLimit (vi_4110_0, channel0Name, NIDCPOWER_VAL_CURRENT_REGULATE, 10th-3);

    I don't get an error.

    Channels 1 and 2 do not have this limit. I went down to 1mA on these channels and no problems.

  • Character set for the buttons in the UI library (for example confirm Popup)?

    I get my head around the issues of fixed character for my new location requirements.

    How can I control the language of the labels on the elements that are part of the library of CVI user interface such as the 'yes' and 'No' buttons that appear in a window of ConfirmPopup()?  Are they supposed to follow the language of the operating system?

    Thank you

    Ian

    (BTW, it would be great if there is a KB page that gathers the main concepts about the locator tool user interface, several bytes in its chains code, paste the translations of a source such as a Word doc in a .c file, etc..)

    Edit:

    Not sure how I missed it before, but here's a related thread . Do I really need to go and replacements of crafts for the panels of the library?

    Hi Ian,

    Unfortunately, the CVI Run-Time Engine is not localized, and it isn't a very good mechanism to translate the integrated chains of RTÉ. It is possible, but it is clumsy, and it does allow you to dynamically change your language in a program that is already running.

    You must find the strings you need to translate into the message of the BCI (c:\windows\system32\cvirte\bin\msgrte.txt) file. When you see an underscore in the chain feature double character, this means that the following letter is underlined. So if you want to translate the 'yes' and 'No' buttons that serve to ConfirmPopup, you must replace the strings 'today' and '__Yes.

    For more information, read the Programmer's Reference > creation and distribution Release executables and dll > LabWindows/CVI Run-Time Engine > configure runtime > translate the Message file topic in the help of the CVI.

    Note that if you want to distribute a message file results in a distribution of CVI you must check the 'Install custom Run-Time Engine message file' option in the tab Advanced for the dialog box change Installer .

    I understand your point that it is not very good support for localization of the CVI programs, but also why it is not very good documentation for it. It is certainly something that is in the CVI roadmap for future improvement.

    I would like to know if you have any further questions.

    Luis

    NEITHER

  • Size limit for the parameter in an Oracle stored procedure

    Oracle 11g on Linux SUSE 11.

    What is the LIMIT on the size of a parameter (setting OUT or IN) routed to oracle (Oracle 11 g) procedure?

    If I create a procedure:

    create or replace procedure test_proc (myid number, mydoc CLOB, BLOB img)

    What is the maximum number of bytes that I can spend for each parameter?

    Thank you

    Hello

    scottjhn wrote:

    Oracle 11g on Linux SUSE 11.

    What is the LIMIT on the size of a parameter (setting OUT or IN) routed to oracle (Oracle 11 g) procedure?

    If I create a procedure:

    create or replace procedure test_proc (myid number, mydoc CLOB, BLOB img)

    What is the maximum number of bytes that I can spend for each parameter?

    Thank you

    Depend on the exact maximum size of CLOB and BLOB depends on settings in your database.  I don't know how small these limits can be defined, but I think it's always on a terabyte.

    There are no special restrictions on the parameters; they can be as large as the other BLOB or CLOB.

  • How to set the date limit for the whole process

    How to configure dynamically.
    For example, the date limit is different in each case and can be defined by a user so changed in the middle.

    Published by: YE may 6, 2009 18:09

    The deadline for the whole process is determined by what you set the variable preset 'deadline '. This interval can be set inside the process as soon as the activity to Begin.

    To set differently for different instances use a time interval variable or a parameter of the company. Here is an example. You have different levels (SLA) different service level agreements in the category of customers. Platinum level customers are 2 days, gold-level clients are 4 customer days silver are six days. In a method, you then have the logic:

    if customer.level = "Platinum" then
        // DEADLINE_HOURS_PLATINUM is an integer Business Parameter set initially to 2 days
        deadline = 'now'.addHours(i : DEADLINE_HOURS_PLATINUM)
    elseif customer.level = "Gold" then
        deadline = 'now'.addHours(i : DEADLINE_HOURS_GOLD)
    elseif customer.level = "Silver" then
        deadline = 'now'.addHours(i : DEADLINE_HOURS_SILVER)
    else
        // no deadline for the process
        deadline = null
    end
    

    If make you a business setting, a business owner could change later ALS a developer need to change the process and by redeploying the it.

    If you want to use an instance time interval variable instead to do this, the logic would be just:

    deadline = 'now' + someTimeIntervalVariable
    

    Hope this helps,
    Dan

  • Character limit for name email

    Hello... Is there a limit to the number of characters in an e-mail name? I'll set up a program in Excel to help users develop standard naming conventions and I would like to add a message that tells them if they are over the limit of characters before they paste the name into their Eloqua campaign. Thank you!

    Hi Brian, yes there is a limit of only 100 characters. Your e-mail name should not exceed more than 100 characters.

    Hope this helps

  • Default character limit in the text entry boxes?

    It seems that text is limited to 15 characters in TEBs, even if no maximum length is specified (in 'other options'). Why is this the case? Is this a known bug, or just a very stupid choice by developers Captivate?

    You're blaming the wrong people. TEBs are NOT limited to 15 characters.  More like 250 or more.

    Can you be more specific on where you see this limit of 15 characters highlighted?

    Are you sure that you see not only 15 characters when you insert the TEB variable in a text box or something?  Perhaps insert a variable to display just to add dollar signs to the ends of the name of the variable instead of using the Insert Variable dialog box?  If so, that would explain your limit of 15 characters.  Insertion of variables this way does not have the option to set the display variable duration.  This is why you should always use the dialog box.

  • "You have reached the limit for the reservations authorized by customer.

    I got this error, whatever i use different apple ID. and also another telephone number of her present on ireserve. But if I try to use another type of government identification. This works. I don't know why the apple system can keep to see my id personal Government reach the limit and it should be fine clear every day. I try to call hong kong apple support. but they said they don't have solution and any part can help with my problem. It is quite interesting that they suggested me to use the information for other people to do the ireserve. can anyone help?

    I'm really confused by your question

    You have reached too much supply of iPhone on iReserve and get an error when you try to use a different number of phone or Apple ID, telling you that you have booked too much. So you try to book using a most other Hong Kong Government issued IDS, and it works

    I'm confused on what you need help with

  • Maximum limit for the number of periods loops that can be run at the same time?

    I am developing a simulator that requires many pieces of code to execute in parallel.  As a result, we were in loops just for this purpose.  I didn't count but there are close to 100 call loops that eventually run at a given time.

    A week ago, I've reached a point where the Simulator was working fine but when I added a more timed loop, it would break LabVIEW.  When I say LabVIEW crashed, I want to say there is no warnings that popped up, and LabVIEW just stopped completely.  Worse still, LabVIEW didn't offer even to recover the work when I start it back up again.  However, removing an additional timed loop allows everyone to work normally again.

    I'm under LabVIEW 2009 Version 9.0f3 (32 bit).  I have observed this behavior even on two different systems, one that is 3.2 GHz Xeon Quad-core with 2.0 GB of RAM, running Windows XP SP3 (32 bit) and the other is a 3.0 GHz AMD Athlon 64 Dual Core with 4.0 GB of RAM, running Windows 7 Professional (64 bit).

    Because the two systems are quite different, and LabVIEW appears to hang at the same point, I wonder if someone has already noticed such behavior.  I searched online and can't seem to find any reference to such a limit on call loops.

    One last thing.  I made an attempt to replace all the loops timed with while loops, but this seems to lead to some kind of hunger because the Simulator becomes suddenly jerky, without seeming to consume all resources more than when the call loops were in place.  So, which doesn't seem to be an option.

    I think that you are limited to 128 Timed loops in a system. Could not find anything by specifying that online, I am sure that I heard him. Also, the Sources Software-Triggered clock Timing loops can only be counted between 0-127.

    However, it certainly sounds like a bug that LabVIEW would crash during the approach of this limit rather than up a significant error.

    You can do some things to help avoid the unstable behaviour of the normal use of many parallels while loops. Place one or more loops in subVIs and then distribute these subVIs enforcement systems . This will give you your application with multiple threads of execution, which will reduce the ground being. If you don't do this, your curls probably all run System Standard of performance, which, by default, cannot have 8 wires at his disposal to share between all the loops.

Maybe you are looking for

  • Who is responsible under the law of the consumer?

    AM currently in the 2nd year of contract through Virgin for an iphone6 more. After the display update was compromised with gray lines that appear periodically and become unresponsive. reboot would temporarily solve the problem, have tried all the oth

  • Questions about the brief affair sync in XP

    Synchronization of the Briefcase: PC file is '1 '. Same file in the Briefcase folder is '2 '. Same file on removable drive is '3 '. If I'm working on the #2 file, I can update a file #3... and... If I'm working on the #3 file, I can update file #2 ??

  • Cmd.exe Vista fails to run if users and/or the absent Group Auditors

    Hi allIn the current context, there is a policy where the files in the % system32% are allowed to be owned by system administrators and. A question arose where after that conversion of these permissions cmd.exe is unable to run. The addition of the u

  • Teredo Tunneling Pseudo interface displays the code 10 in Device Manager

    I have a code 10 on it. I went into the Device Manager and it says that my drivers are up to date for this device. I still have the yellow sign on it?

  • Pictrivia 15 - what type of failover is?

    What is Pictrivia? It's a story presented as an image - image more, fewer words. If you like solving puzzles, dig your brain on the puzzle, you should love this one. Who can participate? It is open to all. You can participate on Facebook, Twitter or