How can I get a name to populate in Certificate Widget?

Hi,
I am using Captivate 5.5.  I am trying to use the Certificate Widget which I pulled into my project.  How can I get a user name to populate in the first line?  I will be using a text-entry field to ask for the name and that is the name I want to print on the certificate. 
Also, I am passing the assessment with a score of 100% but on the Certificate it says 0% and Fail. 
Any help would be greatly appreciated.
Thanks

I am having the same problem. I inserted the blank slide after the results slide and then put the widget in that blank slide.
I also entered the information into the properties box. The only time the information actually came into the certificate was the very first time. The widget does prompt the use for their name but that only worked the first time. I was also not able to print.
From what I see in the forum, the widget does not work and we have to create our own.
I also do not see how the results slide helps determine if they see the certificate or not. If the person fails, they should not see the certificate but I don't find any place to set that up. I have not found these answers in the forum so far.

Similar Messages

  • How can I get the name of a output module template

    Hey guys,
         SDK newbie here.
         How can I get the name of every output module template?
         Thanks
    Zhiqiang Li

    Ok. Bravo
    Please mark this as 'Answered' - it will help others on the forum -

  • Network : How can I get  the name of all computers in the lan ?

    Hi.
    Network : How can I get the name or the IP of all computers in the lan ?

    Easiest way to find all IPs would be to scan the network. Ping every possible IP in the network and all IPs that replied to the ping exist.
    Since I don't know how to do a ping in Java, I would scan for some Ports used by OS Services.
    Since I don't know which ports are used by windows, I think you should look for a ping class (or library).
    Scanning all ports for every IP in a class C network shouldn't take too long. And after finding one port you don't have to try the other ports for that IP, since it has to be online ;)

  • How can I get interface name ?

    Hi there.....
    I wonder that how can I get interface names?
    We can get interface name using by "netstat" or "ifconfig".
    But I don't want to use system() or execl() function.
    Is there any function similar to netstat or ifconfig ?

    See the inet(7P) or inet6(7P) man pages for the
    programatic interface to the interface, to get its
    IP settings, and then look at the
    gethostbyname(3SOCKET) call for IPaddr to hostname
    resolution.

  • How can I get parameter name?

    ODatabase odb("test", "scott", "tiger");
    OParameterCollection params = odb.GetParameters();
    -------> and next how can I get parameter name?
    I hope get stored procedure parameter names and settiing parameter Add just like below.
    Plz tell me how can I get parameter name?
    I'm Korean, and my english is poor. sorry : )
    // add a parameter named 'DEPTNO'
    params.Add("DEPTNO", 20, OPARAMETER_INVAR, OTYPE_NUMBER);
    // add a parameter named 'EMPCURSOR'
    params.Add("EMPCURSOR", "", OPARAMETER_OUTVAR, OTYPE_CURSOR);
    //Execute the SQL statement
    odb.ExecuteSQL("BEGIN Employee.GetEmpData (:DEPTNO, :EMPCURSOR); END;");

    ok, alright. I'm trying to write a program to easily test EJBs with a user giving input and directly seeing the results of function calls to the Bean. The user gives the JNDI name of the EJB, I instantiate the bean, give the user a list of function calls from the bean, and then he/she chooses the function they want to execute and give input of the parameters values they want. Everything is done remotely and at runtime, and the only real problem is that the user only sees "myFunc ( String )" and it would be confusing if there are several parameters of the same type.
    Yes, I do realize there are other ways to test, I was developing this to try a new method that I thought could be beneficial to me.

  • How can i get rulefiles name in  appllication with using custom java code.

    Hi.
    I want to get rulefiles names from analytic service with using java api.
    How can i get rulefiles name. Which api can i use for this issue?

    Hi,
    Use IEssCube.getOlapFileObjects() api to retrieve rule files.
    Insert this code snipid in your code, it will list all the rule files.
    IEssCube cube = olapSvr.getApplication("Sample").getCube("Basic");
    IEssIterator itr = cube.getOlapFileObjects(IEssOlapFileObject.TYPE_RULES);
    IEssBaseObject[] rfs = itr.getAll();
    System.out.println("Rule file count: "+rfs.length);
    for (int i = 0; i < rfs.length; i++) {
         System.out.println("RuleFile"+i+": "+((EssOlapFileObject)rfs).getName());
    you can also list data files and other file objects by changing IEssOlapFileObject.TYPE in getOlapFileObjects()
    Regards
    Rajeev Singh

  • My partner's name shows in my "e-mail" address.  We both share the computer and I have been set up separately.  How can I get my name to show.

    How can I get my name on my e-mail address.  I share the computer.  My partner is the "owner" and i have a separate log-in.  His name shows on my e-mail.

    Log into your account, launch Mail, and select Preferences from the Mail menubar option->Accounts and delete his and add yours.
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.4), ML & SL, G4 450 MP w/Leopard, 9.2.2

  • How can I get file name using JSTL ?

    Hi,
    I'm now using <c:out value="${pageContext.request.requestURI}"/>
    this return servlet path
    How can I get just file name
    or user path (in location bar) ?
    thanks in advance

    The original uri (before forwarding) is available in a request scoped attribute.
    These attributes are given the values obtained by calling the related method on the original request received by the container.
    javax.servlet.forward.request_uri
    javax.servlet.forward.context_path
    javax.servlet.forward.servlet_path
    javax.servlet.forward.path_info
    javax.servlet.forward.query_stringSo if those two above don't work for you these might.
    <c:out value="${requestScope['javax.servlet.forward.request_uri']}"/>
    <c:out value="${requestScope['javax.servlet.forward.servlet_path']}"/>If these values are null, then the value in the request object is the correct one.
    You mentioned the value in the address bar being a .html file. Do you perchance use framesets? If so the value in the address bar is always the url used to load the frameset, and doesn't change no matter where you travel within those frames. That won't be available to the server, because it has nothing to do with the current request.
    Cheers,
    evnafets

  • How can I get the name of weblogic.Server

    Hi all,
    in my EJBs I want to know, on which server instance I´m running. I need this for
    logging info. How can I get the servers name?
    When I load the JNDI tree and select java:comp, an error occurs and a lot of information
    is printed. One is weblogic.Server and that is what I´m searching for.
    I use WLS 6.1 SP1
    Any ideas? Thanks,
    Nicole

    Use JMX. See http://dima.dhs.org.
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    Clustering Weblogic? You're either using Coherence, or you should be!
    Download a Tangosol Coherence eval today at http://www.tangosol.com/
    "Nicole" <[email protected]> wrote in message
    news:3c4d6daa$[email protected]..
    >
    Hi all,
    in my EJBs I want to know, on which server instance I´m running. I needthis for
    logging info. How can I get the servers name?
    When I load the JNDI tree and select java:comp, an error occurs and a lotof information
    is printed. One is weblogic.Server and that is what I´m searching for.
    I use WLS 6.1 SP1
    Any ideas? Thanks,
    Nicole

  • How can i get procedule name in a package if knowing the line num?

    There is package and serveral procedules in it. How can i get a procedule name if i know the line num? Thx a lot

    # Works in most of cases where the procedure is the first word [optionally starting with blanks or spaces ]
    # However there may be cases like /* My PROCEDURE */ PROCEDURE <proc_name> IS where below wont work
    WITH GET_PROCEDURE_NAME AS
      SELECT owner,NAME, line, text
      FROM   dba_source
      WHERE  NAME = '&pkg_name'
      AND    TYPE = 'PACKAGE BODY'
      AND    upper(ltrim(text)) LIKE 'PROCEDURE %'
      AND    line <= &line_no
      ORDER BY line DESC
    SELECT *
    FROM GET_PROCEDURE_NAME
    WHERE ROWNUM = 1

  • How can I get the name of my songs in iTunes

    I imported the songs in my iTune without internet connect before, now I can connect to internet, how can I get my song's name?
    Thanks.

    If you imported them from CD, using iTunes, select all tracks of the album and choose 'Get CD Track Names' from the 'Advanced' menu.
    This does not work if you imported them from a playlist or imported them from CD with another application and then added them to the iTunes library.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.8)   iTunes 7.0.1

  • How can I get my name to appear as caller ID?

    How do I get my name (not account owner) to show as caller ID

    You need the other person to have your phone added to a contact with your name.
    You can create a contact of yourself and send him or her by email, to ease the process.
    Hope it helps.

  • Using JSDK 1.4, How can I get disk names in Windows system?

    Using JDK1.3,I can got disk names via:
    FileSystemView.getFileSystemView().getRoots();
    Or, aFile.listRoots();
    Now, I will switch to JSDK1.4, the aformentioned methods only returns me "D:\Documents and Settings\Administrator\desktop", no disk name returned.
    So, How can I get them back?
    Note: To keep compatible with JSDK1.3, I do not want to use new APIs since 1.4.
    Thank you in advance.

    I get mine at NetBeans:
    FileSystemView.getShellFolder: f=C:\Program Files\NetBeans IDE 3.5\::{450D8FBA-AD25-11D0-98A8-0800361B1103}
    java.io.FileNotFoundException
    at sun.awt.shell.ShellFolder.getShellFolder(ShellFolder.java:197)
    at javax.swing.filechooser.FileSystemView.getShellFolder(FileSystemView.java:459)
    at javax.swing.filechooser.FileSystemView.getSystemIcon(FileSystemView.java:179)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI$ShortCutPanel.<init>(WindowsFileChooserUI.java:592)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI.installComponents(WindowsFileChooserUI.java:355)
    at javax.swing.plaf.basic.BasicFileChooserUI.installUI(BasicFileChooserUI.java:130)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI.installUI(WindowsFileChooserUI.java:175)
    at javax.swing.JComponent.setUI(JComponent.java:445)
    at javax.swing.JFileChooser.updateUI(JFileChooser.java:1701)
    at javax.swing.JFileChooser.setup(JFileChooser.java:345)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:320)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:273)
    at Infoseer.<init>(Infoseer.java:265)
    at Infoseer.main(Infoseer.java:3820)
    java.lang.NullPointerException
    at javax.swing.filechooser.FileSystemView.getSystemIcon(FileSystemView.java:180)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI$ShortCutPanel.<init>(WindowsFileChooserUI.java:592)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI.installComponents(WindowsFileChooserUI.java:355)
    at javax.swing.plaf.basic.BasicFileChooserUI.installUI(BasicFileChooserUI.java:130)
    at com.sun.java.swing.plaf.windows.WindowsFileChooserUI.installUI(WindowsFileChooserUI.java:175)
    at javax.swing.JComponent.setUI(JComponent.java:445)
    at javax.swing.JFileChooser.updateUI(JFileChooser.java:1701)
    at javax.swing.JFileChooser.setup(JFileChooser.java:345)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:320)
    at javax.swing.JFileChooser.<init>(JFileChooser.java:273)
    at Infoseer.<init>(Infoseer.java:265)
    at Infoseer.main(Infoseer.java:3820)

  • How can i get my name on the finder bar?

    How do i get my name on the top right corner next to the search bar? I have OS X Mountain Lion 10.8.5

    System Preferences > Users & Groups
    Click the lock to unlock it, if you have to.
    Click "Login Options".
    Enable " Show fast user switching menu as" and select "Full Name".
    Best.

  • How can I get the name of the column in Cursor

    hi,
    how can i derive the name of the columns in cursor
    e.g
    suppose I have a cursor
    cursor c is select * from emp;
    c1 c%rowtype.
    for c1 in c
    I want to display the name of the column how can I do. i don't
    remember the name, but i need it to be displayed tooo.
    thanx in advance
    Sreekant

    You can only do this by DESCing the tables in the cursor and
    then coding eg. v_no := c1.empno;
    APC

Maybe you are looking for