Help/ advice with score slide

Hi,
I am trying to create a quiz using the captivate programme
and I have discovered there is a next button on the score page
which goes to a Blank screen !!. Can anyone give me advice on how I
can remove it or edit it. I have looked in the help docs but so far
no joy.
Any help would be appreciated.
Thanks
A

Hi A. If you intend to allow your users to "review" the test
(scoring) results, you should always leave the "Next" button
available. It allows the user to continue to the end of the movie
following the review (among other uses).
Which brings up that "blank screen" you mentioned. It is a
good practice to close the movie on a non-question (scoring) slide.
Perhaps one that ends the movie by saying "Thanks for
Participating" or whatever. Then the "Next" button will take the
user there following the quiz and review process. If there is no
slide following the last Question slide, you will see ... what you
are seeing ...
Finally, my advice is to learn by doing. Build yourself a
short movie, say 5 slides with an "Intro" slide, 3 "Question"
slides, and a "Thank You" slide. Then play with the buttons that
are displayed, to get a better idea of their functions and required
presence (see "Movie > Quiz Manager" as well as the individual
question-slide settings) .
Hope this sheds some light ...

Similar Messages

  • Need help/advice with tic tac toe game

    Hello all. I am working on a tic tac toe game. I was able to program the first 4 moves fine, but ame having trouble with moves 5 and 6 for reasons that are unknown to me. Everything complies fine, its just that the move is displayed int the wrong space (B1) instead of in B2 or B3. Also the move that is supposed to be in A1 disapppears when B2 or B3 is clicked. Also, I need advice as to how to keep the prior moves from being over written.
    At this point I ahve gone over the code on-screen, printed it out, and stared at my drawings... and I'm not having any luck. I'm sure its a small, stupid thing that I'm missing, that anyone else would easily catch. Once again, thx for all your help.
    import java.awt.event.*;
    import java.awt.*;
    import java.applet.*;
    public class game3 extends Applet implements MouseListener{
         String move = "";
         boolean player1 = true;
         String gameBoard[][] = new String [3][3];
    public void spaceA1(Graphics g){ // MOVE IS A1
         if(gameBoard[0][0] == "X")
              g.drawString("X",65,65);
         if(gameBoard[0][0] == "O")
              g.drawString("O",65,65);
    public void spaceA2(Graphics g){ // MOVE IS A2
         if(gameBoard[0][1] == "X")
              g.drawString("X",95,65);
         if(gameBoard[0][1] == "O")
              g.drawString("O",95,65);                         
    public void spaceA3(Graphics g){ // MOVE IS A3               
         if(gameBoard[0][2] == "X")
              g.drawString("X",125,65);
         if(gameBoard[0][2] == "O")
              g.drawString("O",125,65);
    public void spaceB1(Graphics g){ // MOVE IS B1
         if(gameBoard[1][0] == "X")
              g.drawString("X",65,95);
         if(gameBoard[1][0] == "O")
              g.drawString("O",65,95);                    
    public void spaceB2(Graphics g){ // MOVE IS B2
         if(gameBoard[1][1] == "X")
              g.drawString("X",95,95);
         if(gameBoard[1][1] == "O")
              g.drawString("O",95,95);
    public void spaceB3(Graphics g){ // MOVE IS B3
         if(gameBoard[1][2] == "X")
              g.drawString("X",125,95);
         if(gameBoard[1][2] == "O")
              g.drawString("O",125,95);
    public void spaceC1(Graphics g){ // MOVE IS C1
         if(gameBoard[2][0] == "X")
              g.drawString("X",65,125);
         if(gameBoard[2][0] == "O")     
              g.drawString("O",65,125);     
    public void spaceC2(Graphics g){ // MOVE IS C2
         if(gameBoard[2][1] == "X")
              g.drawString("X",95,125);
         if(gameBoard[2][1] == "O")
              g.drawString("O",95,125);
    public void spaceC3(Graphics g){ // MOVE IS C3
         if(gameBoard[2][2] == "X")
              g.drawString("X",125,125);
         if(gameBoard[2][2] == "O")
              g.drawString("O",125,125);
    public void init(){
         addMouseListener(this);
         public void paint(Graphics g){
              g.drawString("    1       2       3", 50,45);
              g.drawString("A",40,70);
              g.drawString("B",40,100);
              g.drawString("C",40,130);
              // first row of boxes
              g.drawRect(50,50,30,30);
              g.drawRect(80,50,30,30);
              g.drawRect(110,50,30,30);
              // second row of boxes
              g.drawRect(50,80,30,30);
              g.drawRect(80,80,30,30);
              g.drawRect(110,80,30,30);
              // third row of boxes
              g.drawRect(50,110,30,30);
              g.drawRect(80,110,30,30);
              g.drawRect(110,110,30,30);
              if(move == "A1"){
                   spaceA2(g);
                   spaceA3(g);
                   spaceB1(g);
                   spaceB2(g);
                   spaceB3(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[0][0] = "X";
                   g.drawString("X",65,65);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[0][0] = "O";
                   g.drawString("O",65,65);
                   player1 = true;
                   return;
              } // end of A1
              else
              if(move == "A2"){
                   spaceA1(g);
                   spaceA3(g);
                   spaceB1(g);
                   spaceB2(g);
                   spaceB3(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[0][1] = "X";     
                   g.drawString("X",95,65);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[0][1] = "O";
                   g.drawString("O",95,65);
                   player1 = true;
                   return;
              } // end of A2
              else
              if(move == "A3"){
                   spaceA1(g);
                   spaceA2(g);
                   spaceB1(g);
                   spaceB2(g);
                   spaceB3(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[0][2] = "X";
                   g.drawString("X",125,65);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[0][2] = "O";
                   g.drawString("O",125,65);
                   player1 = true;
                   return;
              } // end of A3
              else
              if(move == "B1")
                   spaceA1(g);
                   spaceA2(g);
                   spaceA3(g);
                   spaceB2(g);
                   spaceB3(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[1][0] = "X";
                   g.drawString("X",65,95);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[1][0] = "O";
                   g.drawString("O",65,95);
                   player1 = true;
                   return;
              } // end of B1
              else
              if(move == "B2"){
                   spaceA1(g);
                   spaceA2(g);
                   spaceA3(g);
                   spaceB1(g);
                   spaceB3(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[1][1] = "X";
                   g.drawString("X",95,95);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[1][1] = "O";
                   g.drawString("O",95,95);
                   player1 = true;
                   return;
              } // end of B2
              else
              if(move == "B3"){
                   spaceA1(g);
                   spaceA2(g);
                   spaceA3(g);
                   spaceB1(g);
                   spaceB2(g);
                   spaceC1(g);
                   spaceC2(g);
                   spaceC3(g);
                   if(player1){
                   gameBoard[1][2] = "X";
                   g.drawString("X",125,95);
                   player1 = false;
                   return;
                   else
                   if(!player1){
                   gameBoard[1][2] = "O";
                   g.drawString("O",125,95);
                   player1 = true;
                   return;
              }// end of B3
         }// end of graphics
         public void mouseReleased(MouseEvent me){}
         public void mousePressed(MouseEvent me){}
         public void mouseDragged(MouseEvent me){}
         public void mouseEntered(MouseEvent me){}
         public void mouseExited(MouseEvent me){}
         public void mouseClicked(MouseEvent me){
              int x = me.getX();
              int y = me.getY();
              if((x >=51) && (x<= 79) && (y >= 51) && (y <= 79)) //MOVE IS A1
                   move = "A1";
              else
              if((x >=81) && (x<=109) && (y >=51) && (y <= 79))  //MOVE IS A2
                   move = "A2";
              else
              if((x >=111) && (x<=139) && (y >=51) && (y <= 79))  //MOVE IS A3
                   move = "A3";
              else
              if((x >=51) && (x<= 79) && (y >= 81) && (y <= 109))  //MOVE IS B1
                   move = "B1";
              else
              if((x >=81) && (x<=109) && (y >=81) && (y <= 109))  //MOVE IS B2
                   move = "B2";
              else
              if((x >=111) && (x<=139) && (y >=81) && (y <= 109))  //MOVE IS B3
                   move = "B3";
              repaint();
    //<applet code = "game3.class" height =300 width=300> </applet>     

    writing a tic-tac-toe is harder than it sounds.. i wrote one last year in my computer science class.. i have it on my website, if you want to look at code. i wrote it in c++, but the logic is all that matters :)
    btw-last year, i wasnt too good of an OOP programmer, so the program is procedurely written. heres the url:
    http://www.angelfire.com/blues/smb
    also, to tell if a box is already taken, you can just add an if statement:   if ( gameBoard[selX][selY] == null )  //not taken, fill box:many people resort to a boolean matrix of the same idea, but with booleans that store which boxes are taken. i prefer the way above, saves code, memory, and makes it more understandable.
    hope it helps.

  • Need Real Help & Advice With Replacement MBP Options!

    Hi All,
    Please kindly give me some advice as I need to act quickly - I already have a MBP 15" 2.4 Unibody replacement agreed by Apple only last week (replacing a Intel 2.2 GB MBP) but I am pretty sure that the Senior Customer Services Person I spoke to was not aware of any due upgrade as he was very helpful and probably genuinely did not know. In view of the new models announced, should I stick with this or ask for the new 2.53 version which is actually cheaper and therefore I am somewhat hopeful they should do (or would they now generally offer me the new one?) Can any of you kind folks also please tell me:
    1. What are the advantages/disadvantages between the old 2.4 Unibody MBP & the new 2.53 Unibody MBP?
    2. I know the new one comes with an SD card slot and loses the Express Card Slot but is the loss of the latter a big thing? Can the old one with the use of card readers actually shift data from the MBP to a SD card (or any other) via card reader/device? Is Express Card or SD Card Slot more desirable and better utilised?
    3. I think the newer one has less better 9400M integrated graphics - is that true and how big a deal is that? (I plan on downloading and watching lots of HD content) Is it better to go for the dual 9400M/9600GT graphics
    4. I know the new one can be upgraded to 8GB of Ram which sound really good for future-proofing and general super-smooth running purposes so I guess this feature is really important? I guess it can take 4 x 2GB sticks?
    5. Some have stated that they are very happy that the new ones have Firewire back but was that also not on the old 2.4 one?
    6. How big/good/bad a thing is it to have a non replaceable battery even though in theory, it may last longer?
    7. The new version makes a big deal about the screen - is it a good reason to upgrade or as good as they make out?
    8. Are the Hard Drives on these latest versions user-replaceable/upgradable? (250GB is still a little low for my future needs and I was planning to upgrade to a higher capacity).
    9. As I am not a savvy as most when it comes to this sort of stuff, is there anything else that I have not considered/should consider or have taken into account and which may prove to be be of significance in the future?
    10. Is it safe to assume that the newer model may be better as it may have had bugs or issues the old one may have had ironed out?
    11. Because of the better graphics and larger Hard Drive (320GB), I am also inclined to go for the 2.66 model - how should I best proceed if I choose this model - will they likely give me one (or better still, how can I best wangle one!) or is it possible to offer to pay some money to make up for the difference and what would be considered a fair and reasonable amount?
    I am very sorry to ask so many questions but I need to act fairly quickly on this one and would be extremely grateful for the help and input!
    Many Thanks To All!
    SB!

    Suave! wrote:
    Hi,
    Thanks for the help so far - I know the HD is replaceable on the 2.4 MBP but can you confirm that this is also the case with the new 2.53/2.66 MBP's?
    Yes. I can confirm that.
    Do you have any further thoughts regarding the benefits of the new over the old?
    I am a big fan of the unibody MacBook Pros. I had purchased mine in October 2008. I could easily purchase a new one with out a second thought. They are exceptional machines.
    OLD - Better Discrete Graphics, Express Card Slot, Replaceable Batteries, Upgradeable HD, Poorer Screen, RAM limited to max 4GB
    NEW - Poorer Integrated Graphics, SD Card Slot, Better Screen, Upgradeable RAM to 8GB, Fixed Internal Battery but with Longer Life, Unsure if HD is User-Upgradable
    The batteries can be replaced at an Apple Store at any time. The hard drive can be upgraded by the user. The graphics are still very good.
    Anything else I might have missed? I would like to choose the one that offers the most future-proofing and will operate the best when running Snow Leopard and Windows, HD Material and will cause least performance issues!
    Check out the requirements for Snow Leopard. http://www.apple.com/macosx/specs.html
    You cannot go wrong with a unibody MacBook Pro. Leopard runs on Macs that are 10-years old. Whatever your choice, you will be "future proofed".
    Good luck!
    Message was edited by: LukeD

  • Need Help/Advice with Photo Web Gallery coming from SQL Database

    This is my first attempt at a database driven website. I assume what I am trying to accomplish should be fairly easy for more experienced but I am stuck at this point.
    First, let me explain what I am trying to accomplish.
    I want to create a thumbnail photo gallery displayed in columns and rows. I want to be able to hover over or click on the thumbnail image and have a lightbox script display the image over the thumb page. I am developing locally right now with intent to upload to the hosting site upon completion.
    I am developing with ASP vbScript pages. I have an SQL database where the paths to the image thumbnails and pictures are stored in a table. On the gallery page, I have created a div tag to hold my image recordset. Within this div, I have inserted 3 absolute positioned divs to hold the pictureID, the pictureName and the image inserted as a datasource. I then inserted the information from the bindings panel of my recordset. Last, I used a horizontal looper extension from Tom Muck to get the thumbnails to display in columns and rows. Everything works up to this point just fine.
    Now, I want to be able to hover or click on a thumnail image and have it displayed in a lightbox. I downloaded and used a javascript called Lightbox 2 which contains 3 javascript files and a css stylesheet. I inserted the files into the head tag like instructed to but could not get things to work properly. Here is where I need help. Currently, I am clicking on the thumbImage binding within the image Div and creating a link holder. I am then binding the larger pictureImage to it with the a.href selected in the bind to. I am then adding the command to call the lightbox javascript. Now, when I test my page, my thumbnail images do not show up (my alt text does in its place) but the links are in place and you can click on the alt text and it will return the correct larger image, but not in the lightbox, just in a new window with no styles.
    Am I going about this correctly? Can you use lightbox scripts with data-driven galleries? Does anybody have any suggestions of what I may be doing wrong or missing? Are there better ways to go about accomplishing this?
    Any help would be appreciated as this dynamic data thing has my head spinning. Although I know a database is needed to simplify the update and maintenance of the photos while allowing them to be searchable by keywords and tags also set up in the database.
    Thanks

    As I explained, I am developing locally a the moment. I will see about getting the databased moved up to the hosting server and then provide a link for an example.
    In the mean time, can you or anyone else explain a way that you would go about displaying an image thumbnail photo gallery laid out in rows / columns, with any lighbox script that would overlay the larger image over the existing page instead of opening a new browser window?
    I don't have to use the method I tried to describe.
    In all of the lightbox examples I have looked at thus far, they give instructions on how to append that javascript to a single static image or a group of static images, not images from a datasource. That is where I am getting confused.
    Don't know if this will help or not but please see code below:
    Javascript and CSS positioned in head tag
    <!--beginning of lightbox script with css -->
    <link href="CSS/lightbox.css" rel="stylesheet" type="text/css" />
    <script src="Scripts/protype.js" type="text/javascript"></script>
    <script src="Scripts/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
    <script src="Scripts/lightbox.js" type="text/javascript"></script>
    <!--end of lightbox script with css -->
    Calling for javascript in the galleryimage div when hovering over thumbnail image
        <!--beginning of gallery div -->
        <div id="gallery">
          <p>
            <!--beginning of galleryImage div -->
          </p>
          <table width="400" border="0" align="center" id="galleryNav2">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
          <p> </p>
          <table align="center" id="HorzLooper">
            <%
    startrw = 0
    endrw = HLooper1__index
    numberColumns = 5
    numrows = 5
    while((numrows <> 0) AND (Not rs_ssfGallery.EOF))
    startrw = endrw + 1
    endrw = endrw + numberColumns
    %>
            <tr align="center" valign="top">
              <%
    While ((startrw <= endrw) AND (Not rs_ssfGallery.EOF))
    %>
              <td><div id="galleryImage">
                <div id="galleryThumb"><a href="images/pic/<%=(rs_ssfGallery.Fields.Item("picture_url").Value)%>"rel="lightbox"><img src="images/thumb/<%=(rs_ssfGallery.Fields.Item("thumb_url").Value)%>" alt="<%=(rs_ssfGallery.Fields.Item("alt_url").Value)%>" /></a></div>
                <div id="galleryImageID"><%=(rs_ssfGallery.Fields.Item("picture_ID").Value)%></div>
                <div id="galleryImageFamily"><%=(rs_ssfGallery.Fields.Item("family").Value)%></div>
              </div></td>
              <%
    startrw = startrw + 1
    rs_ssfGallery.MoveNext()
    Wend
    %>
            </tr>
            <%
    numrows=numrows-1
    Wend
    %>
          </table>
          <p> </p>
          <table width="400" border="0" align="center" id="galleryNav">
            <tr>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_moveFirst%>">First</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If MM_offset <> 0 Then %>
                  <a href="<%=MM_movePrev%>">Previous</a>
              <% End If ' end MM_offset <> 0 %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveNext%>">Next</a>
              <% End If ' end Not MM_atTotal %></td>
              <td width="100" align="center"><% If Not MM_atTotal Then %>
                  <a href="<%=MM_moveLast%>">Last</a>
              <% End If ' end Not MM_atTotal %></td>
            </tr>
          </table>
    <!--end of galleryImage div -->
        </div>
        <!--end of gallery div -->
    Thanks for any help or suggestions.

  • System now workin :) help/advice with XP please if you can

    finally got my new system to post so looking good sp far...... started installing win xp and had an error message - disc might be a dodge one!! then thought 'o sod it, i think i'll use win 2000 anyway as seems to have less probs than xp at the mo'
    the problem is, as the install didnt complete, each time i put my win2000 cd in the drive it tries to finish the xp installation. i cant seem to get it to boot from the win2000 disc.
    how do i stop win xp doing this?? can you 'back-it-out' some how or shouldnt it do this and the win2000 should 'take-over'
    bit confused on what to do.
    hope someone can help.
    thanx

    Hi
    Your first problem with XP not completing does sound like a bad disc or your rom drive. Can you borrow another CD or Rom Dive. Can you make a copy of your XP CD on another machine and try the copy.
    Whether you stick with XP or go to Win2000 I suggest you delete partion, reformat and start again. If you are a games player do not move over to Win2000.
    Best of Luck. Russ Pyne

  • Help & Advice with Lion

    Hi there!
    Since upgrading to Lion my MacBook Pro (Mid 2009) it keeps freezing and it takes much longer to boot compared to Snow Lepoard.
    I upgraded it from 2GB to 4GB hoping it would run smoother but it was so hot in operation (I literally couldn't hold it after just a few minutes) I had to take it back to 2GB.
    I also notice that all my apps return on logon even though I have specificed not to re-open apps.
    I have verified and repaired the disk using Disk Utility and also ran a supposed recovery of Lion but it took 1hr (including Lion download) however when I logged back on it was the same software and data etc; is it possible to do a complete data wipe and install Lion?
    It has updated to the latest software however I'm starting to get very frustrated; just earlier the whole thing froze and I had to force it to power off.
    Any help or advice much appreciated!

    If you have more than one user account, these instructions must be carried out as an administrator.
    If you have an optical drive, make sure there is no disc in it.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter "BOOT_TIME" (without the quotes) in the search box. Note the timestamps of those log messages, which refer to the times when the system was booted. Now clear the search box and scroll back in the log to the last boot time when you had the problem. Post the messages logged during the time something abnormal was happening. That time might be before or after the boot.
    For example, if the problem is a slow startup taking three minutes, post the messages timestamped within three minutes after the boot time, not before. If the problem is a system crash or freeze, post the messages from before the boot time, when the system was about to crash or was failing to shut down. In either case, please include the BOOT_TIME message at the beginning or the end of the log extract.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in Console, look under System Diagnostic Reports for crash or panic logs, and post the most recent one, if any. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if present (it may not be.) Please don’t post shutdownStall or hang logs — they're very long and not helpful.

  • My itouch screen is frozen, wont slide to unlock. have done what adviced with buttons...can anyone help please?

    my itouch scrren is frozen, it wont slide to unlock..i have done all that was adviced with the buttons but that didnt work..can anyone help please?

    Force iPad into Recovery Mode
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times.

  • Cap 6 - how to capture quiz score/route based on score & prob with Master slide?

    Hi --Using Cap 6 on a Windows PC. I have a module with weighted questions, and want to analyze the score when the user completes the questions. If they score 69% or below, they must view the entire module. If they score between 70% and79%, then they can just take the quiz questions again. If they score 80% of better, their score is recorded in the LMS and they are given credit for the module.
    I have two challenges:
    1) The course originally was going to be an acknolwedgment-only module, so I deleted buttons from the results slide (not the results master) but when I select Reset Mater Slide in the slide properties, the deleted buttons do not re-apply onto the slide. How do I get those buttons back?
    2) I created an Advanced Action called start_over. It's simple - and the "Else" statement is "continue". I set this up in Quiz Pref. Does this also get assiend as an Action on the slide properties? 
    Result is that the quiz just stops. The quiz results slide displays - but without any content. If you select play again from the skin, the next slide is displayed.
    I have searched forum, etc., but can't find a solution -- I need to re-create this scenario for several other modules too. Thanks in "Advance" for help!
    G

    About your second question, think you are using the wrong system variable. It is hard to read, but I think you use cpQuizInfoQuizPassPercent, which is the percentage required for passing. And you should have used cpInfoPercentage, which is the percentage acquired by the learner. Have a look at my blog post about system variables:
    http://blog.lilybiri.com/system-variables-in-captivate-6
    But I don't think you need such an action for Quiz Preferences? Because you have two possible actions there: Success action and Failure action? Why need an advanced acton for a simple Jump?
    As for the score slide: Quiz Preferences, Settings: click the button Quiz Result Messages under Show score slide and you'll be able to mark the fields you want to show.
    You can also create a custom score slide:
    http://blog.lilybiri.com/question-question-slides-in-captivate
    http://blog.lilybiri.com/intermediate-score-slides
    Lilybiri

  • Can anyone help me with advice for a replacement hard drive

    Hi there,
    Can anyone help me with advice for a replacement hard drive and RAM upgrade for my Mac Book Pro 5,3
    Its 3 years old & running Snow Leopard 10.6.8
    I do a lot of audio & movie work so performance is important.
    The logic board was replaced last summer & I was advised to replace the hard drive then...oops
    Anyway it has limped on until now but is giving me cause for concern...
    I have found a couple of possibilities below...so if anyone does have a moment to take a look & help me out I would be most grateful
    http://www.amazon.co.uk/Western-Digital-Scorpio-7200rpm-Internal/dp/B004I9J5OG/r ef=sr_1_1?ie=UTF8&qid=1356787585&sr=8-1
    http://www.amazon.co.uk/Kingston-Technology-Apple-8GB-Kit/dp/B001PS9UKW/ref=pd_s im_computers_5
    Kind regards
    Nick

    Thanks guys that is so helpful :-)
    I will follow your advice Ogelthorpe & see how I get on with the job!!! Virgin territory for me so I may well shout for help once my MBP is in bits!! Is there a guide for duffers for this job anywhere??
    & yes in an ideal world I would be replacing my old MBP but I'm just not in a position to do that at the moment....let's hope things pick up in 2013
    All the very best
    Nick

  • Since updating to the new 3.6.14 Firefox, I cannot get pictures (i.e. pictures with recipes), slide shows (health), email links, etc. Frustrating!!! Please help!

    Each time there is a new update on Firefox, I lose information, etc. that I had with the old version. Since updating to the new 3.6.14 Firefox, I cannot get pictures (i.e. pictures with recipes), slide shows (health) email links, etc. Frustrating!!!

    See:
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * You can check the exceptions in Tools > Options > Content: Load Images > Exceptions
    * You can check the Tools > Page Info > Media tab for blocked images (scroll through all the images)
    There are also extensions (Tools > Add-ons > Extensions) that can block images.

  • Quiz Score Slide - Review Questions

    Hi all,
    I have put a number of discussions now and still can't seem to get this to work.
    Once a user has completed the quiz and got to the quiz score slide to find out if they have passed or failed - for both I would like them to be able to 'review answers'. I know there is a review quiz but this just tells them what they got wrong or right and not why.
    I have searched on Captivate and online to figure out how to make this work. I would like the user to be able to go through each slide and when there is a question they got wrong, there is an explanation for them.
    Is this possible and how do I do it?
    Thanks

    Hi there,
    You can have a slide as an explanation slide next to your quiz slides. You can use a conditional advanced action under On Enter property of the explanation slide. With the help of a variable called cpQuizInfoLastSlidePointScored, you will check whether the last answer was correct or not and have the explanation slide show/hide accordingly. For example, if each question in your project has 10 points associated. The variable will check whether the last question slide scored points were equal to 10, if yes then jump to next question slide and if no then go to the explanation slide.
    Here is how it will look in the advanced action window:
    Where Slide 4 is the next question slide and Slide 3 is the explanation slide.
    Hope this helps!
    Thanks!

  • Help needed with Vista 64 Ultimate

    "Help needed with Vista 64 UltimateI I need some help in getting XFI Dolby digital to work
    Okay so i went out and I bought a yamaha 630BL reciever, a digital coaxial s/pdif, and a 3.5mm phono plug to fit perfectly to my XFI Extreme Music
    -The audio plays fine and reports as a PCM stream when I play it normally, but I can't get dolby digital or DTS to enable for some reason eventhough I bought the DDL & DTS Connect Pack for $4.72
    When I click dolby digital li've in DDL it jumps back up to off and has this [The operation was unsuccessful. Please try again or reinstall the application].
    Message Edited by Fuzion64 on 03-06-2009 05:33 AMS/PDIF I/O was enabled under speakers in control panel/sound, but S/PDIF Out function was totally disabled
    once I set this to enabled Dolby and DTS went acti've.
    I also have a question on 5. and Vista 64
    -When I game I normally use headphones in game mode or 2. with my headphones, the reason for this is if I set it on 5. I get sounds coming out of all of the wrong channels.
    Now when I watch movies or listen to music I switch to 5. sound in entertainment mode, but to make this work properly I have to open CMSS-3D. I then change it from xpand to stereo and put the slider at even center for 50%. If I use the default xpand mode the audio is way off coming out of all of the wrong channels.
    How do I make 5. render properly on vista

    We ended up getting iTunes cleanly uninstalled and were able to re-install without issue.  All is now mostly well.
    Peace...

  • Can someone help me with a problem I have publishing photos to Facebook and Flickr

    I am using LR4.4 on my HP laptop (Windows 7 Home premium) with Mozilla Firefox as my default browser. I was able to publish some photos from LR to my Facebook account early in October. I have some new photos to publish, but find I now can no longer publish to Facebook.  I get a message – “Facebook authentication check failed”. I have tried to reset up publishing to Facebook within LR, but when I click on the Authorize in Facebook, I get a Firefox Error Message:  “The address wasn't understood Firefox doesn't know how to open this address, because one of the following protocols (lightroom) isn't associated with any program or is not allowed in this context. You might need to install other software to open this address.”  I have tried using IE as the default browser, but I get the following Internet Explorer Error Message:  “The webpage cannot be displayed. Most Likely Cause:  Some content or files on this webpage require a program that you don't have installed.”  From the Adobe website (helpx.adobe.com/lightroom/kb/errors-occur-using-lightrooms-publish.html) I have unsuccessfully tried all 5 solutions to resolve this issue.
    Other steps I have tried - I have removed the LR app from Facebook, then attempted to Authorize from LR. I can get through 3 steps in Facebook (request for Public Profile, accept Posting to Facebook, and accept managing FB pages), but the final step again fails.  In Lightroom, after the authentication step fails, I note that the “Failed to receive authentication token” is highlighted blue. When I click on this, a popup appears (see below). I had found a suggestion that this should be changed (I can’t recall what the alternative url was – but part of it was …”export.facebook”…) but I’m not sure where this change should be made. I attempted to paste the new link into this field, but this didn’t seem to work either.        
    I have also tried to set up publishing of photos to my Flickr account. I go to the LR setup, which directs me to my Flickr account, and click on the authorize button. But again I get the same error message!  I am just about at the end of my knowledge / ability to solve my Publishing problem. I would really appreciate you help and advice with this issue. Can you please help me?

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • Help/Advice needed on setting up home office network please

    Hi
    I hope someone can help me with some technical difficulties i am having with a home / office network.
    Computer equipment i have is:
    2 desktop PCs on same floor  different rooms.
    2 laptop PCs to be used wired in office and/or Wifi if possible any room
    2 Apple mac Laptops to be used wired in office and/or Wifi in any room.
    1 HP Laser printer with network enabled
    1 TB HDD network enabled
    1 Linksys WiFi extender unit
    Connection equipment:
    I have an NTL Cable modem
    Linksys WR54G ver 2 router ( with the option of going to aLinksys WRT300N ver 2 router)
    A Netgear Dual speed hub DS116
    What i would like to do is have one office holding 1 desktop pc, 1 HP Printer and the other office holding the 2nd desktop PC with USB printer attached. I would like to be able to go Wifi around the house for all PC & Mac Laptops with the option of connecting them by wire in the office if required.
    Idealy i would like to be able to share files, folders and printers between all units as well as all having internet access through the router's firewall.
    I also use Zone Alarm Pro.
    At the moment i have in one office the WR54G attached to the cable modem with one Desktop PC wired in to one of the 4 ports. in a 2nd port i have a cable going to the 2nd office into the DS116.
    Connected to the DS116 is the 2nd Desktop PC, the HP Laser printer and the 1TB HDD.
    The Wifi extender is in another room.
    For some reason every now and then the whole system goes wobbly and seems to loose settings at which point internet access is denied and ihave to go back to 1 pc into the cable modem and starting rebuilding the network.
    Can anyone give me an idiots guide to settin this kind of system up with specificsettings on each item if possible.
    I would say i would also like to use 1 desktop PC for gaming now and then which at the moment sems very hit and miss with speed etc.
    Any help warmly welcomed
    Best Rgds
    Kev

    ryclark wrote:
    Following on from Steve's advice I would probably not bring the unwanted channels all the way down on the faders, either in a live mix or if mixing subsequently in Audition, as it may change the background acoustic too much. Leaving a bit of the background mics faded up a bit helps to pull the whole recording together and also means you have a better chance of getting all the faders back up in time for when they are needed without missing anything.
    I didn't actually touch on this at all - perhaps I should have. There's definitely more than one way to undertake this sort of operation, and it rather depends on exactly what equipment you have available. So far, we know you've got potentially 16 channels available, but have no idea how you were planning to cover the different aspects of it. For instance, I would always consider it worth it to have a pair of ambience mics up all the time - which would get around this particular problem anyway....
    The other thing you really have to pay quite a bit of attention to before you start is making damn sure (the previous day) that everything is in good order, and it all works when connected together. And if, for instance, you're going to rely on radio mic feeds from clergy,  that you can tap into these without difficulty, etc. Make sure your mic stands are not falling apart, and that you've got all the right mic stand adaptors - amazing how many times people have screwed that one up! 
    What this generally means is that even if you're familiar with the location, you still need to do a reccé just to make sure that everything in the venue is as you think. And if you can grab a dedicated assistant for the event, go for it. This can make carting stuff about a lot easier, and provide additional security for your equipment. And sometimes other benefits too, like tea...

  • Who can HELP me with an seemingly impossible iTunes dilemma?

    Good day all and greetings from Malta (EU),
    I have what seems to be the need for an "impossible" solution. Let me explain my dilemma.
    I have never wanted to use the new versions of iTunes past 10.7 for ONLY ONE simple reason that the developers of iTunes have decided to eliminate.
    I am a digital dj - I use iTunes as my cataloging system for all the tracks I play. I am the kind of person that likes to prepare as much as possible before I play. Up till 10.7 there was an option to open MULTIPLE playlist windows. This was very important to me because that would mean practically that how ever the mood moved on the dance floor I was able to just choose from the open playlist windows without having to spend needless time searching for them while playing (which can be a big distraction)
    I have recently purchased my FIRST Mac (17" MacbookPro) and I have Yosemite running on it. I have followed tutorials to downgrade iTunes (using Pacifier & AppZapper) to 10.7 in order to get the only one feature I needed but was not available in future upgrades.
    I have a few problems. When I connect my iPhone it is not recognised and when I use the finder window I constantly get error messages popping up.
    So here's the thing. I DON'T mind re-installing the updated version of iTunes to make the OS run properly and to connect my iPhone but I can't do this without the old version as well.
    Is there a way to be able to rename the 10.7 version of iTunes so I can continue using that and it's own library AND also be able to install the latest iTunes so I can eliminate my problems and continue using the 10.7 version. I can point out that the updated version does not need to have the same library... I'd ONLY need that to eliminate the error messages & be able to connect my devices.
    can ANYONE PLEASE PLEASE help me with this dilemma? I searched "high and low" on Google and in the Apple Support Forum but I have failed to find an solution....
    Thanks and I am sooooo looking forward to someone helping me as soon as possible.
    And Happy Holidays EVERYONE!!!
    Chris Brown

    You could repartition your drive to have a different OS X with the older iTunes there, and the newer iTunes on the existing partition. Back up everything beforehand. See Kappy's advice in this thread. Partitioning my Hard Drive

Maybe you are looking for

  • Kernel panic won't go away and can't boot?

    I am not sure what OS I have. It's an iMac and only a year and a half old. I know it doesn't have leopard and that's about it. Anyway, my problem started two days ago. I got the notification that updates were available so I went ahead and did it. I w

  • I have two itunes accounts.  How do I get rid of one?

    I accidently have tow Itunes accounts and would like to get rid of one of the.  anyone have any ideas about how to do this?

  • Install Oracle 10g on SUSE Enterprise 10

    Hi, I'm having some trouble with my Oracle installation and it would be great if someone could please point me in the right direction! At about 62% into the install I receive the following error message: Error in invoking target 'client_sharedlib' of

  • Transfering image, sound and text from server to client

    I implemented a client and a server and right now it is only implemented that it transfers only plain .txt documents only. Now I want to alter it to transfer everything. I was thinking about reading the data and then create a new file in the client a

  • Macbook won't startup after cover is closed.

    I have a 13 inch macbook core2 duo running OS X 10.8.4, which has performed beautifully since I bought it until just recently.  The problem that I am having is that after starting up the macbook and using it, I close the cover until I need to use it