Problem with creating a new line in widget glossary

I use 6 Captivate and have a problem with trying to display text on a new line in the description field of the widget glossary. In playback mode, a carriage return displays form \n

I read in another discussion (from early last year), that this problem had been resolved and that the fix would be communicated soon on the blog of captivate for users without a subscription. Anyone know if the fix has been shared yet - I can't find it anywhere?

Thanks for any help you can provide.

Tenneil

Hi Tenneil,

Greetings from Adobe.

Please click on the link below and download the Interaction of Glosarry updated.

https://files.Acrobat.com/a/preview/0a17bb28-049e-4AC7-b8f7-dbdacef5e91c

  1. Extract the zip to your desktop.
  2. Copy "08_Glossary.wdgt" into the extracted zip file.
  3. Go to: C:\Program Files (x 86) \Adobe\Adobe Captivate 6 (32 bit) \Gallery\Interactions (for 32-bit Captivate) or C:\Program Files\Adobe\Adobe Captivate 6 (64-bit) \Gallery\Interactions (for 64-bit Captivate).
  4. Replace the glossary widget in the record of the interaction. Restart the Captivate 6. (Make sure you take the backup of the original Glosarry Widget)
  5. Ask the widget again and check the issue.

Let me know if it works for you.

Kind regards

MILIN

Tags: Adobe Captivate

Similar Questions

  • Create a new line in VO

    Hi all

    How to create a new line in VO programmatically

    I am using jd 11.1.1.4

    I will execute a VO and retrieves a line, so I want to attribute this line as a new line in the VO and store it in the database table

    pls tell me how to do this.

    Thanx

    Solve you this problem or to have?

  • Create a new line, the prior editing lock

    LCD display 9, Acrobat 9, Windows 7

    Gurus-

    I'm doing a table of observations, and when you create a new line the prior is locked for editing.

    To add a line, I put a button in the table with this code:

    _Row1.addInstance (true);
    xfa.for.Recalculate (true);

    I'm not familiar with the code to browse an index of the table, so don't have no idea how to put in place so that in addition to these two lines above, code goes something along the lines of access = 'protected' to every cell in the previous row.

    Ideas?

    Hello

    First of all, my script was incorrect. ReadOnly must be enclosed in quotes, for example: = "readOnly";

    In addition, you must remove the Row1 readOnly lines and it should work. This is because the reference to Row1 is included in the variable of the bow.

    For example:

    pRow.comment.access = "readOnly";
    

    Hope that helps,

    Niall

  • How to create a new LINE

    Hello

    How to create a new line in the view object to programmatically support (without using the create operation).
    give some ideas

    Kind regards
    Rami

    That help you

    ViewObject vo = findViewObject("YourViewObject");
    ViewObjectImpl viewObject = (ViewObjectImpl)vo;
    Row newRow = viewObject.createRow();
    // set your attribute for the new created row
    
    //...................
    viewObject.insertRow(newRow);
    
  • How to create the new line in actionscript 3

    I have this simple script that is supposed to take a comma to separate values from xml and transform into something similar to an unordered list if only I could get a '\n' to work. Here is my script.

    var dont_forget:Array = myXML... dont_forget [n]. Split(",");

    var d: Number = dont_forget.length;

    While (d-) {}

    detailsMovieClip_mc.dont_forget.text = ">" + dont_forget [i] + "\n\r";

    trace (dont_forget [d]);

    }

    When the trace is running it shows me the values so I know they are there. However, I see that the last value. How to create a new line as a 3?

    Use the appendText method.  By assigning the text using "=" you're crushing on each pass through the loop.

    detailsMovieClip_mc.dont_forget.appendText (' > '+ dont_forget [d] + "\n\r" ');

  • Problem with create table as select (DEC)

    Hello

    We try to data cleaning of huge tables. And a customer of guise is reanme main table to the backup table. Then create a master table in select * backup table with some test.

    Now the problem with create table select, is that it creates the table without indexes and constraints. Is it possible to use the ETG (create the select table) with the same structure that he was the (all index, constriaints).

    Or any other solution to solve this problem?

    Thanks in advance

    Sweety wrote:
    Hello

    We try to data cleaning of huge tables. And a customer of guise is reanme main table to the backup table. Then create a master table in select * backup table with some test.

    Now the problem with create table select, is that it creates the table without indexes and constraints. Is it possible to use the ETG (create the select table) with the same structure that he was the (all index, constriaints).

    Or any other solution to solve this problem?

    Thanks in advance

    No, this is not possible. You need to get the manuscript of dependent object and create it manually.

  • Problem with Script using New() to create a #Vectorshape

    Hello

    I'm having a problem with a movie in a movie script, I build and I can't understand why.

    The unique film script, developed by JC in 2004, is reproduced below. It works perfectly in a film in itself. But I need to integrate it into a sequence exists in which the other sprites and behaviour must co-exist.

    The problem I see is that George is created with the new command (can be seen in the message using window put George), but it won't allow attachment of gMem.regPoint, gMem.centerRegPointand so on. These errors any return.

    I would also be open to another solution to the problem. What I have to do is to create rectangles which represent a plan view of a roof on an underlying grid and then be able to slide and place other images on it (it's not a game for training purposes).

    I use MX2004 on a PC. Any help, greatly appreciated.

    Rod Wolford

    ------------------------------------------------------------------------------------------ --

    George overall, gCount, gNum, gLoc, gCreateVert, gMemNum

    on prepareMovie
    clearGlobals()
    _movie.puppetTempo (60)
    gCreateVert = False
    gMemNum = 5
    end

    on mouseDown
    If not (gCreateVert) then
    George = new (#vectorShape, Member gMemNum of castLib 1)
    gMemNum = gMemNum + 1
    gMem.regPoint = point (0,0)
    gMem.centerRegPoint = False
    gMem.closed = False
    gMem.antialias = True
    gMem.strokeWidth = 0.25
    gMem.strokeColor = rgb (0,0,0)
    gNum = getFreeChannel()
    channel (gNum) .makeScriptedSprite (George, point (0,0))
    Sprite (gNum) .encre = 36
    gCount = 0
    gCreateVert = True
    end if

    If gCreateVert then

    If the doubleClick may
    gCreateVert = False
    gCount = gCount - 1
    gMem.deleteVertex (gCount)
    gMem.closed = True
    gMem.fillMode = #solid
    gMem.fillColor = rgb (random (256) - 1, random (256) - 1, random (256) - 1)
    gFinished = True
    output
    end if

    gCount = gCount + 1
    gMem.addVertex (gCount, the mouseLoc)

    gCount = gCount + 1
    gMem.addVertex (gCount, the mouseLoc)
    gLoc = the mouseLoc

    end if

    end

    on enterFrame

    If gCreateVert then

    gMem.moveVertex (gCount, the mouseH - gLoc [1], the mouseV - gLoc [2])
    theLoc = (gMem.vertexList) [gCount] [1]

    If not (theLoc = the mouseLoc) then
    gMem.moveVertex (gCount, the mouseH - theLoc [1], the mouseV - theLoc [2])
    end if

    gLoc = the mouseLoc

    end if
    end

    on stopMovie
    theCount = castLib (1).member.count
    Repeat with i = 1 to theCount
    If the Member (i) game = #vectorShape then member (i) .erase)
    end repeat
    end

    on getFreeChannel

    Repeat with i = 1 to the lastChannel
    If sprite (i).member.type = #empty then
    aNum = i
    output of repetition
    end if
    end repeat

    return aNum

    end

    While I have not read any of your script, try to replace

    George = new (#vectorShape, Member gMemNum of castLib 1)

    with

    George = _movie.newMember (#vectorShape, Member gMemNum of castLib 1)

    It is possible that the film you want to integrate that into a script #movie with a #new Manager, who must have been typed as a script #parent

  • Problem creating a new line when you use tabs regions

    I'm new on JHeadstart and ADF and use the evaluation version of JHeadstart (in JDev 11.1.1.3) to judge its effectiveness for a new application of significant size. As part of this evaluation, I created a small application (you can do this with the HR schema using say the Departments table) with a single entity and VO. I then placed some fields in several regions of element within a region by tabs on the same page and below the Group (Table, Table Overflow Style available below with separator style) on JHeadstart. Display the existing lines very well and I can view the data on separate tabs.

    However, if I try to create a line, I can fill in the data on the main area, but if I fill in the data on the first region of tabs I can not switch to the next without a mistake tab is generated.
    for example using departments - fill DepartmentId and DepartmentName on main region, learn ManagerId on first region by tabs and try to move to the second area by tabs to fill LocationId:
    Missing mandatory attributes for a line with key null of type HRModule.DepartmentsView1
    DepartmentId in HRModule.DepartmentsView1 attribute is required.
    DepartmentName in HRModule.DepartmentsView1 attribute is required.
    If you save, and then you can navigate.

    You can also prove something similar (but probably the same cause different error message) on the myJHSTutorial demo. If you go to an employee outside the regions page and try and create a new employee (using the button "+" under the label of 'Employees'), then the legs are not updated, and any attempt to change the tabs causes an error

    Could not validate a line with key oracle.jbo.Key [999] in HRModule.EmployeesView3
    Required attribute HRModule.EmployeesView3 wages.
    Wages must be between 6000 and 12000 for this work.

    The JHS Devguide does not help. Any thoughts? I can send the HR sample if you wish.

    David,

    That is right.
    The change in model will be added to the next version of JHeadstart so you don't have to make this change.

    Steven Davelaar,
    Jheadstart team.

  • Need to create a new line in the table with the same data as the primary key, but new PK

    Hello gurus,

    I have a table with a column as a primary key, I need to create a new row in the table, but with the same data in one of the lines, but with different primary keys, focus a double row with key primary diferent...

    Any ideas of how it can be done without much complication?

    Thanks in advance for your answer.

    Agress,
    Karim idrissi

    user9970447 wrote:
    Hello gurus,

    I have a table with a column as a primary key, I need to create a new row in the table, but with the same data in one of the lines, but with different primary keys, focus a double row with key primary diferent...

    Any ideas of how it can be done without much complication?

    Thanks in advance for your answer.

    Agress,
    Karim idrissi

    something like

    insert into mytable values ('literal for new pk',
                                           select non-pk-1,
                                                    non-pk-2,
                                                    non-pk-n
                                           from mytable
                                           where pk-col = 'literal for existing pk')
    
  • Need help with creating a new site-problem file Spry

    I can't create a new DreamWeaver CS5 site - I get a warning message that the current Spry folder is not inside the site and select a valid file in the local directory. I tried creating a folder nothing is, so is unable to create the site. Help is appreciated.

    An option if you're a Mac: your hard disk named?

    http://forums.Adobe.com/thread/654548

    Also try:

    http://forums.Adobe.com/thread/672446

  • Problem with the number of lines in the channel

    Dear community LabView,

    I'm relatively new to labview and I came across a problem that (I assume) can easily be resolved with your help.

    I need to create a digital signal to trigger a camera, but I have a problem with the configuration of my lines or exit lanes. I would not use that line output to trigger the camera. (I use a card NI PCIe-6353). LabVIEW is telling me that the number of lines in the channel does not have the number of rows of data:

    Possible reasons:

    Specified read or write operation failed because the number of rows in the data of a string is not the lines in the channel.

    If you use the digital waveform data type, make sure that the number of lines in the digital waveforms is the number of lines in the channel. If you are using Boolean data, make sure that the dimension of the array for the rows of the data is the number of lines in the channel.

    Number of lines in the channel: 1
    Number of data lines: 2

    Task name: _unnamedTask<11>

    How and why the number of data rows is connected to the resolution of my analog digital converter?

    I would appreciate your help! Labview code and a screenshot attached.

    Thank you

    Beff

    I got it to work by changing the "data format" "binary not signed" OR by plugging is not the "offset" for the Square Wave VI.  I think that the default "offset binary" data format works correctly if there is a negative value.

  • Problem with creating, truncating and deleting a database in 1 transaction

    Hello

    I came across a problem when it is in the same transaction creating a data base, truncating it and then delete it. Do these 3 things causes the following transaction validation to last forever.
    The following code causes the problem:

    File envHome = new File ("truncate-delete-test");
    envHome.mkdirs ();
    EnvironmentConfig envConfig = EnvironmentConfig.DEFAULT;
    envConfig.setAllowCreate (true);
    envConfig.setTransactional (true);
    envConfig.setTxnSerializableIsolation (true);
    Environment = environment (this.envHome, envConfig);

    Transaction txn = this.environment.beginTransaction (null, TransactionConfig.DEFAULT);

    DbConfig DatabaseConfig = new DatabaseConfig();
    dbConfig.setAllowCreate (true);
    dbConfig.setTransactional (true);
    String dbName = "test-db";
    Database db = this.environment.openDatabase (txn, dbName, dbConfig);

    CBI Close();
    environment.truncateDatabase (txn, dbName, false);
    DB = this.environment.openDatabase (txn, dbName, dbConfig);

    CBI Close();
    this.environment.removeDatabase (txn, dbName);

    TXN.Commit (); <-this statement would never return.

    I encountered this problem with version 4.0.92. I've updated to 4.1.7 but the problem still exists.
    Also, it manifests when the records are written to the database before and after it truncate.

    Looking in the process with the debugger shows the following stack trace during the commit endless happens:

    [...]
    DbTree.deleteMapLN (DatabaseId) line: 1069
    DatabaseImpl.finishDeleteProcessing (line): 1164
    Txn.cleanupDatabaseImpls (boolean) line: 1404
    TXN.Commit (durability) line: 728
    TXN.Commit (line): 549
    Transaction.Commit (line): 227
    [...]

    Depending on where I stop the process, there are additional calls on top of the stack.

    Exit Registration unfortunately does not help here, as the log messages stopped once the problem started to appear.

    Is it somehow not allowed to create, truncate and delete a database in the same transaction? I couldn't find anything in this sense in the documentation, and it is no exception either.
    Or have I came across a bug in I here?

    Thanks in advance for any advice or solutions.

    Christoph
  • Problem with creating a sequence

    Hello

    I'm having a problem with a sequence that I am creating. Basically, I'm trying to create a sequence with a default value based on the value in another table, i.e.
    CREATE SEQUENCE seq
    START WITH (
                min(customer_id) from customer
                )
    INCREMENT BY 1;
    Is this possible? I get errors.

    You can use dynamic sql or, if you use SQL * more take advantage of substitution variables:

    SQL> DROP SEQUENCE seq
      2  /
    DROP SEQUENCE seq
                  *
    ERROR at line 1:
    ORA-02289: sequence does not exist
    
    SQL> DECLARE
      2      stmt VARCHAR2(1000);
      3  BEGIN
      4       SELECT  'CREATE SEQUENCE seq START WITH ' || min(empno)
      5         INTO  stmt
      6         FROM  emp;
      7       EXECUTE IMMEDIATE stmt;
      8  END;
      9  /
    
    PL/SQL procedure successfully completed.
    
    SQL> SELECT seq.NEXTVAL FROM dual
      2  /
    
       NEXTVAL
    ----------
          7369
    
    SQL> DROP SEQUENCE seq
      2  /
    
    Sequence dropped.
    
    SQL> COLUMN s NEW_VALUE s NOPRINT
    SQL> SELECT  min(empno) s
      2    FROM  emp
      3  /
    
    SQL> CREATE SEQUENCE seq START WITH &s;
    old   1: CREATE SEQUENCE seq START WITH &s
    new   1: CREATE SEQUENCE seq START WITH       7369
    
    Sequence created.
    
    SQL> SELECT seq.NEXTVAL FROM dual
      2  /
    
       NEXTVAL
    ----------
          7369
    
    SQL> 
    

    SY.

  • problem to create a new ip and host name on ELM

    Hello.

    I am a model with CUCM, UNITY and IM/PRESENCE in V9 in my lab.

    By the link to ELM I download the txt file and generate a license demo on www.cisco.com/go/licence.

    I create an account with the ip address 10.101.1.10, hostname SV000150 and login password to synchronize the license. Everything was ok.

    I need to change the IP address of cucm but not the host name.

    I'm connect to ELM and I remove my account first CUCM but now I can not create a new account CUCM with ip adresss 10.11.0.1and the same host name.

    There is a message saying: this IP address /Hostname is already create!

    I have to insert genuine license in my CUCM and I don't know what I can do.

    Thanks for your reply.

    Excuse my English is not perfect, I'm french...

    If a restart of the node running ELM doesn't let you overcome this problem, it's time to call TAC that the record did not get erased from the database.

  • A good difficulty for problems with creating an account ePrint Center.

    Problem: impossible to register with ePrint Center

    Difficulty: The problem you are having is probably due to an old Snapfish account registered to your email address. ePrintCenter and Snapfish account information is stored in the same place and I saw this before conflict.

    You will need to go to http://www.snapfish.com/snapfish/welcome, click on "Sign In" in the upper right corner of the page and then click on the 'forgotten password' link and enter the email address that is causing your problems, you should receive an email from Snapfish, which allows you to create a new password. Once you have created a new password for Snapfish, try to Sign In on ePrintCenter (http://www.eprintcenter.com) using your email address and the password you created for Snapfish.

    If you have any other questions do not forget and let us know. We're here to help.

    If I have SOLVED your problem, please do not hesitate to provide LAURELS and make sure that you mark this thread as a SOLUTION OFFERED!

    Although I work for HP, my messages and responses are my own opinion and not of HP.

    In addition, if the fix above does not seem to solve the problem or if you are unsure if you have a Snapfish (http://www.snapfish.com) account, use the e-mail address you want to use with ePrint Center (http://www.eprintcenter.com) and then use the information that you created and try to "Sign In" or create an account on ePrint Center.

Maybe you are looking for