Possible to change the variable cpQuizInfoPassFail through advanced actions?

Is it possible to change the variable cpQuizInfoPassFail through advanced actions? I do not see this or the other quizzing variable when I try to create an advanced action and change by entitlement or expression. Let me explain what I want to accomplish, I ask the wrong question. I have a training project, with that I need to include a post test. I don't really like the captivate quizzes. I want the post-test to play as a ride on jeopady where the user chooses issues category and gets points if the user answers correctly. For this I must ask questions on a game board and (from what I can fig) you cannot have multiple questions on the same page. I'm building the quiz with my own custom variables and coded so that the program jumps to a page of the certificate if the user gets more than 84 points. THA all works very well. But I have to be able to tell the database that the program will connect with the user has passed the quiz. I thought I could do this if I assign the value 1 to the variable cpQuizInfoPassFail. Is there a way to do this? Thanks in advance for any help,

Doug Jackson

Hi Doug,.

I don't see the version you are using. Each interactive object can be marked, has a report following properties in the control panel (if you use CP5 or CP5.5) or a tab in the Properties dialog box reports, if you use a different version. You must add a score (default value is normally 1 point) and make sure you add it to the total score.

If you want to make me a glance, post your file on acrobat.com (free, use your Adobe ID), share and publish. You will have a link that you can copy into a private message to me.

Lilybiri

Tags: Adobe Captivate

Similar Questions

  • change the variables in a smart camera by a remote computer

    Hello

    I have a smart camera NI1722 and I want to change some variables inside the camera by a computer which is connected to the camera.

    Is it possible to change the variables inside the camera from a computer outside? On the computer we program with CVI. We have a RS232 and TCP/IP connection.

    Anybody can help us?

    Thank you

    Oliver

    Hi Oliver,.

    You use a LabVIEW or Vision Builder AI program the smart camera?

    There are several ways to Exchange data between a smart camera and CVI on the host computer.

    The easiest way is probably to use shared variables.

    If you use LabVIEW to program the smart camera, the following article explains how to create and deploy shared on the target variables.

    http://zone.NI.com/DevZone/CDA/tut/p/ID/4679

    If you use Vision Builder AI, first connect to the smart camera, then select Tools > Variable Manager...

    Select the tag System Variables, and then click Add to create the variable for the data you want to share. Be sure to select publish it on the network box.

    You can set the value of these variables in Vision Builder, using the step set the Variable, located in the tools palette.

    And a lot of steps allow for use directly in their configuration page, clicking the arrow to the bottom of some digital controls.

    Now, on the side of the CVI, this example shows how to connect, read and write variables that you created on the smart camera.

    https://decibel.NI.com/content/docs/doc-3806

    I hope this helps.

    Best regards

    -Christophe

  • MAC address: Is it possible to change the MAC address of a machine & also if there is a way to see the physical address of the machine on the other to see through the command line...?

    Is it possible to change the MAC address of a machine & also if there is a way to see the physical address of the machine on the other to see through the command line...?

    Is it possible to change the MAC address of a machine & also if there is a way to see the physical address of the machine on the other to see through the command line...?

    Yes.

    Yes.

    Of course - you use 'other/unknown', then...?

    (Google for "MAC spoofing").

  • Is it possible to change the PDF document on my site through editing in the browser after I publish my Web site?

    I have downloaded site but want to change PDF assets via browser Edition. Is this possible?

    Hello

    It is not possible to change the active PDF using IBE.

    Kind regards

    Aish

  • Satellite P100-400: is it possible to change the graphics card?

    Hello

    I would like to know if it is possible to change the graphics card? It's the nvidia Go 7900 Gs with 512 MB...
    Have the nvidia mxm?
    Thanks in advance and sorry for my bad English

    At first, I must say that your English is very good and understandable.
    Back to your question: update graphic card is not possible. The graphics card is part of the motherboard and cannot be exchanged separately.

    Please note that the portable is not so extensible as on desktop computers. The upgrade can be done with RAM or HARD drive very easy, but not with processor or graphics card.

  • Satellite M70 395: is it possible to change the graphics card?

    Hi there is there a way to change the graphics card in this laptop, I know its integrated into the motherboard, but on the intel site it says this chipset supports pci express http://www.intel.com/products/chipsets/915gm/index.htm

    so I didn't know if I could add a pci card, thanks in advance I'am a noob so please go easy :)

    Hello

    No, it is not possible to change the graphics card. It s attached to the motherboard.
    Please don Office mix t with a laptop PC technology

  • Is it possible to change the values of particular #define of the various controls in CVI.

    In my application, I have different panels to file single .uir. When I save the .uir file, I get the same values of #define for different controls in different panels. For this reason, I am not able to use these #defines block switch. Is it possible to change the values of #define according to my condition.

    Hi, a little more Wolfgang post. It is the combination of the Panel to manage and control the unique ID: as you know, you can load the same panel more than once, so even if you recover the full chain of PANEL_CONTROL you have duplication. items that exactly identifies a particular control in a particular group are the combination control panel manage AND panel_control ID.

    On the one hand which guarantees more flexibility to your application, you can design only a few panels and reuse them whenever you want, even having some of them loded several times in the same instant. On the other hand, as you have discovered, there is the possibility (Finally, almost certain) duplicated in your app ID.

    To resolve the problem of duplicated IDS you can act in two ways:

    1. If you know that no Panel is never loaded several timer in your application, you can retrieve the name of constant of Panel with GetPanelAttribute (panelHandle, ATTR_CONSTANT_NAME, string); and to distinguish between the name of constant, then switch between control ID

    2. If you happen to have duplicate panels you will need to store each panelHandles in the non-volatile variables, switch between them and then switch between the control ID

    An alternative might be to use Panel callbackData attribute and assign a significant value during the loading of the Panel, other callbackData finally from a control ID. Something like this:

    Loading panels:

    panelHandle = LoadPanel (0, "myfile.uir", PANEL1);

    SetPanelAttribute (panelHandle, ATTR_CALLBACK_DATA, (void *) 1);   Assign different callbackData in each instance

    During the failover between controls:

    void * cbkd;

    GetPanelAttribute (panelHandle, ATTR_CALLBACK_DATA, &cbkd);)
    Switch (cbkd (int)) {}
    case 1: / / elements of the PANEL1
    switch (command) {}
    case PANEL1_NUMERIC:

    your code here
    break;
    case PANEL1_STRING:
    your code here
    break;
    }
    break;
    case 2:
    // .....
    break;
    }

    One final note: it seems to me that all this is necessary in a very limited situation, where you have the same callback called on various panels/controls. Whenever the reminder is unique to a specific panel or controls on a single panel you don't need to work that way.

  • Is it possible to rename the variable loop for I?

    I do a lot of work with 2D arrays.  Sometimes, it would be useful when browsing the tables for one of the index named i and the other named j.  Is it possible to change the name of the variable increment other than what actually in another variable?

    Thnaks.

    Hummer1,

    As already said, there is no way to change the image of the final iteration.  However, you can add a description to the wire.  Click with the right button on the wire, then select "Description and Tip", type the name/description you want in the box.  Now you can move your mouse over the wire, and the description will appear in the context-sensitive Help window.  I hope this helps.

    Chris M

  • Is it possible to change the timer increment?

    The timer is changing in increments of 100 milliseconds. Is it possible to decrease it to 1 millisecond? For my application, I need to know when the waveform is a multiple of a number specified, for example, 7 millisecond. I have a Boolean indicator, and I would that he true to see the ot whenever the time is a multiple of this value.

    Is is possible to change the timer for this increment? Or y at - it a better way to reach my goal?

    Your problem of synchronization is the express VI simulate Signal.  You say it take value of 100ms of data.  So your loop will run through the 100ms.  If you want your loop to go to the 1ms (good luck with Windows), tell the express VI to collect only 1ms to a data value.  In your case, it would be 360 samples instead of 36 samples k.

  • Is it possible to change the size of icons on the desktop?

    Is it possible to change the size of icons on the desktop? My computer crashed recently the only thing I could do was to reformat my hard drive and reinstall windows XP Service pack 3. Now I have these giant icons which cover half of my screen.

    Original title: the Windows desktop icons

    That has to have been the easy way, but...
     
     
    Right click on the desktop | Properties | Appearance | Advanced button. In the menu item drop-down select icon.  Change the size of the icons there.
     

     
  • OfficeJet pro 8600: not possible to change the scanning of the Panel of the printer resolution settings

    With my Officejet pro 8600, there is no possibility to change the scanning resolution settings when you are working in the control panel of the printer (not present button to touch) when I want to scan to the computer, while in the manual it is mentioned that, after pressing the Document Type, it should be possible to reach the resolution to change the resolution of the scan setting. On the other hand, when the scan to a memory card the button change the resolution settings is present.

    Sometimes for the scanning of all computers to select (winXP SP3 installed on it). The HP printing software is installed on all computers and manage digitization to the computer is turned on. It is possible to change the resolution settings when using my computer with the HP printing software, but as I said not in the use of the printer.

    Thank you to help you solve the problem!

    Hey mk75053,

    Scanning to memory card has the parameters of resolution through the front because that is the only way for the device perform this type of analysis.  However, to change the resolution settings for the Scan of the computer, one will have to perform scans through the software installed on the PC.

    I have all three types of 8600 models where I am located (base, more high quality) and of all printers simply ask to start the analysis after selecting the scan type.

    I hope this helps.

  • Is it possible to change the length of an mp3 file that I downloaded on the internet?

    Hello

    I'm not very technical interest, please bear with me. I have Windows Vista Home Premium.

    I downloaded a song from Vodafone Live! I thought going to my phone mobile phone as a ringtone, but finished in my music player.  I managed to get it on my phone, but its way too long.  As I said I need only as a ringtone.  When my phone rings I get the beginning of the song, but miss the best bits! So, which defeated the purpose of buying the thing.

    Is it possible to change the mp3 file, I received on my laptop to make it shorter.

    Thanks in advance.

    Claire

    Hello

    Make a copy of the MP3 - copy it to another folder and work on the copy.

    Plenty of capable edition

    Audacity - free
    http://Audacity.sourceforge.NET/

    Free Audio Editor 2010 - free
    http://www.free-audio-editor.com/

    Those who should help him.
    Rob - bicycle - Mark Twain said it is good.

  • Is it possible to change the alert message default javascript '1 article has been added to your basket' to something nicer?

    Hey BC Community!

    Well, I may have missed in the docs (and if I have, please do not hesitate to show it to me) but I was curious to know if it was possible to change the default javascript alert popup that says "1 item added to cart" to something more pleasant as perhaps a green bar that temporarily shows downstairs which said "added to shopping cart." I would create a jquery script to intercept the default alert?

    Thanks in advance for anyone of you guys help!

    Hello

    Have you already checked this

    Customization of shop alert stations online

  • Is it possible to change the default settings of signature in EchoSign for 'first' and "Do I sign" Please?

    Hello

    I still need to sign the documents first and change the settings each time - when in a hurry, I managed to send the document without signing which is really irritating. I wonder if it is possible to change the settings so that it uses by default "That I sign" and "first"? If this isn't the case, please this feature could be added?

    Thank you very much in advance.

    Hello Char40486575,

    If you have an account level P1 (Enterprise and above), you can enable the setting by clicking on the tab accounts-> account settings-> send settings and select "Sender sign sign first then recipients" under "Default signing the order" and also check the default "sender signs a document" Yes.

    -Usman

  • Is it possible to change the theme of the Application Builder?

    Is it possible to change the theme of the Application Builder? There are themes for applications; What happened to the constructor itself? I looked but did not see a selection for that.

    I'm a Geek through and through, I guess, but I think that you might be retentive xxxx love all of these square boxes. And these old eyes squint to focus among the vast sea of shades of gray. Black on gray and gray on white gives me a pain in the eye!

    If this is not the case, is there a place where the suggestions like this are made. Thanks - Howard

    Hello

    Is it possible to change the theme of the Application Builder?

    The short answer is, no.

    You can offer this feature here
    https://Apex.Oracle.com/pls/Apex/f?p=55447:1

    Kind regards
    Jari
    -----
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

Maybe you are looking for

  • reminders in double or auto-complete caused by Apple Watch?

    I use the reminders of Apple app and I have quite a few set recurring reminders in place. It seems that since I started using Apple Watch, my reminders have gone a little messy: -Sometimes, if I score expandable reminder completed using my watch, one

  • My imac end 2012 work El Capitan?

    I have a late 2012 27 "imac 3.4 GHx Intel core i7, with 32 GB of ram I'm running on OS 10.8.5 I need to update my os I think that the only option available is El Capitan El Cap will run smoothly on my machine? I hear stories to reduce the performance

  • p108tx: disable the Equalization of the Volume / Compression? Help?

    I love that I was given an alternative Panel with Realtek on windows 10 Beats, but it seems be identified by HP beats 'Legalization of the Volume' function with no way to turn it off... (Play two tracks, a low and a high, itll them equalize and make

  • Brother mfc210c driver for xp pro sp3

    multi funtion peripheral does not recognize scanner possible twain driver needed made the new installation of xp pro sp3

  • Vista sevice of pk 2 - where to download SP2

    original title: pk 2 Vista Sevice Where can I download service pk 2 for vista I don't have it on Windows vista