How to use the conditions where there are more than two options

I have a blade that collects information from the user and then makes decisions based on the values entered. On a slide I use the widget drop-down list and list of"basic", "Intermediate" and "Advanced". I hoped to do is use the Coditional Structure as follows:

1. If the Basic was selected slide goto BasicQuickQuiz
2. If the intermediary has been selected goto slide IntermediateQuickQuiz
3. If Advanced was selected slide goto AdvancedQuick Quiz

I can make this work for Basic or intermediate, but I don't see how (or even if) I have a multi level if statement.
My work is about:
1. a button added logic:
So basic, then got otherwise BasicQuickQuiz goto IntermediateQuickQuiz

2. on the Enter slide on IntermediateQuickQuiz event:
If the intermediary, then keep, otherwise goto slide AdvancedQuick Quiz

It works, but it seems awkward - y at - it another way that this goal could be achieved?

Tim

What I was hoping to see was the ability to create several Else If statements within the only condition. I've changed it now to add two conditional statements, one after the other, but still find this unscrupulous feature.
I will record a feature request to add a Select Case block / Switch style fuction to this group.
However, since it is new I can live with the workflow (for this version of Cp anyway!)

Tim

Tags: Adobe Captivate

Similar Questions

  • How to use the utility "Windows Chat" Window XP (between two computers or more)?

    How to use the utility "Windows Chat" Window XP (between two computers or more)?

    Please provide your suggestion step by step

    Hello

    Maybe this can help, http://support.microsoft.com/kb/308232

    Jack-MVP Windows Networking. WWW.EZLAN.NET

  • Why, after several months, when checking "installed updated history, there are more than 50 copies of 2 updates?

    Original title: windows updates

    Why, after several months, when checking "installed update history, there are more than 50 copies of 2 updates, KB30744230 and KB307450. Almost daily show several updates for each.

    To repeat the Net Framework updates are trying:
    http://support.Microsoft.com/kb/976982

  • How to use the conditional and made mandatory

    Hello

    I need to use the conditional and made mandatory something jspx page. Following line gives an error:

    rendered = "#{Bindings.type.inputValue! = 'abc' & & bindings.proofId.inputValue! ="} ' "

    Error: Name expected instead of &.

    What is the right way?



    Note: I use Jdev 10.1.3

    Boring, but you can use & #38; & #38; (remove the space after the &) for this.

    Timo

    Published by: Timo Hahn on 24.11.2009 08:46

    Published by: Timo Hahn on 24.11.2009 08:48

  • Lenovo u300s came with the crack in the case. Queued for more than two hours. Help, please!

    I received my phone Friday and noticed shortly after opening the package that there is a crack in the bottom right of the laptop cover. The bottom of the laptop is now separating it from the case.

    I spent more than two hours on hold trying to request a RMA. This is unacceptable.

    I want a full refund, that this failure to Lenovo may have been spotted before it was delivered to me.

    My customer information are below. Please contact me to correct this situation.

    Order number: 4288307601

    number of cases: 8000174706

    Note of the moderator; personal information under the protection of its own branch

    Hey elhortez,

    Working to get support for you to get the process of refund for you. I'll follow to the top as soon as I can with confirmation.

    Thank you

    Ty

  • How to use the extension and they are safe to use?

    Hello

    I intend to use firefox for iMac in order to get the benefits of extensions. Extensions that I use are the visited site speed measure. I am currently using gtmetrix for my site http://www.i-phony.com , I was told that it gives results from remote servers.

    My server is located in Saudi Arabia. Will be extensions of what the speed of the server measure be safe to use. And are they able to give an accurate reading of the place where I am?

    your support is much appreciated.

    Best regards

    Each addon at AMO avaible were examined and is safe to use.

  • How to use the move tool in CS5 to put two images on an A4 sheet?

    Have recently updated from CS3 to CS5.

    I often print two images on A4 paper.  In CS3, I would simply adjust and crop 2 images to say ins 7 x 5 ins, after that put in place a new A4 size sheet (new file), then using the move tool, I propose the two images on the A4 sheet to separate and print.  Very well!

    Now under the CS5, once I've adjusted my first image and then try putting a second image with one I seem to lose one of the screen.  But on going back via the bridge and by clicking on the image, it appears again - problem is, I'm losing the second image.

    When I put it up a new A4 sheet, or pictures stay on the screen and there is nothing to move.

    Have been in preferences to see if there is something there to help, but nothing appears.

    Anyone know what is happening here and what I am doing wrong that is how to do 2 separate images on an A4 sheet?

    Thank you

    Bob Eveleigh.

    You may want to disable"Open Documents as tabs"and"enable floating Document window Docking" in the Interface preferences and the framework of the Application If you are a "old"Mac-user.

  • How to leave the input field to accept more than one "specific" response

    Hello

    I work for something and try to create a game show type-box-based for one of my classes, where a text entry field can change that is the border color if 2 or more words from a list of recognized words is registration.

    For example, a list of possible answers a: R, G, B, Y to the question "name 2 colors»

    I want to create an input text area where the border of the box changes color if the 2 letters (in the list above) are entered in it.

    I tried implementing a variable NumberSuccesses and set so that the number increases by 1 for each letter entered for example

    If (Ex.text is "R");

    NumSuc = NumSuc + 1; var NumSuc has already been previously defined in the code

    If (Ex.text 'G')

    NumSuc = NumSuc + 1

    If (NumSuc == 2)

    Ex.borderColor = 0x0000FF

    but it does not work... and I tried to do it with another function which I use for several text boxes as if there are boxes A, B, C. I could set up a general function where if the correct answers were entered into A, B, C respectively, only then will say, a check mark appears by using a

    EnableCheckmark (); function of type. Don't know how to do if it is the same text entry box well. Also just tried adding in the same function re.

    If (Ex.text is 'R' + 'G')

    Ex.borderColor = 0x0000FF

    .. Does anyone know what I can do?

    The solution of Mathias with the logic of the evaluation:

    What are the possible answers

    var solutions: Array = new Array ("A", "B", "C", "D");

    function testInput(_inputText:String):Boolean

    {

    the delimiter could also be a comma, it's here a space

    var inputStringArray:Array = _inputText.split("");

    var counter: Number = 0;

    for (var i: int = 0; i

    {

    for (var j: int = 0; j

    {

    If (inputStringArray [i] is [j] solutions)

    {

    counter ++;

    }

    }

    }

    If (counter > = 2)

    {

    trace ("true");

    Returns true;

    }

    on the other

    {

    trace ("false");

    Returns false;

    }

    }

    TextField with the name input_txt onstage

    input_txt.addEventListener (TextEvent.TEXT_INPUT, answerTxtInp);

    The function that will be called by the event listener

    function answerTxtInp(txtEvent:TextEvent):void

    {

    According to the responses of characters, change the color of the border

    {if (testInput (input_txt. Text))}

    input_txt. BorderColor = 0xFF0000;

    }

    else {}

    input_txt. BorderColor = 0 x 000000;

    }

    }

  • How to configure the bookmarks bar to view more than 4 bookmarks?

    In Firefox to. 31.0, I can add multiple bookmarks to the bookmarks bar, but if I added more than four bookmarks on the toolbar and then close Firefox, the next time I open it it there are only four bookmarks in the toolbar. I've been a techie years so I tried everything I can think of including adding bookmarks different ways... by slip and fall and/or 'Bookmark this Page', click on add to the toolbar but still, I allowed four bookmarks in the toolbar after a reboot.
    Any suggestions?

    Other bookmarks moved into the overflow area and appear in the drop-down list of chevron or moved from the bookmarks toolbar?

    You can check for problems with the database places.sqlite file in the Firefox profile folder.

  • When there are more than 20 bookmarks in a folder, sorting settings are not saved

    I have several folders that contain more than 20 Favorites each. If I apply a sort to one of these folders, the kind of bookmark is lost after I closed the browser. If I reduce the number of bookmarks at less than 20, or create a subfolder and move bookmarks for her, the kind of rest between sessions.

    Use this module SortPlaces

    Check and tell if its working.

  • Don't know why there are more than 1 choice of update for AReader update?

    Dear friends in Adobe Reader for IOS,

    I'm quite a beginner and still more than a beginner to ask questions in this type of forum, so I hope that you will stick with me please.  I think I should put more in the question, but I didn't. I am sure I will learn from this experience. I hope. I have a... MacBook Air w / 10.7.5 OS trying to update Adobe Reader for IOS ENGLISH and it gives me two different choices and I don't know what to do because I've never seen more than one choice. Do need to be done in order or what, I'm really confused.  Two different choices were (AR 11.0.03 or 10.1.4) any help you would be kind enough to share with me (and maybe even others), I would be very grateful for your time and your help.

    Have a great day... GOSH, I hope I did this right.  Thanks, Tai

    No problem, Tai. But you say you're a MacBook Air, so I've moved your question to the regular Adobe Reader forum. (iOS is used to run an iPad or an iPhone).

  • Multifunction: M127n, M127fw, M227dw,: how to use the MFP if there not RJ-11?

    What Miss me? How do you send a fax without a phone line?

    I'm in the market for a color MFP laser to include fax. The models mentioned and many others, have no RJ-11 plugs.

    I guess you can send it via the internet or mobile phone, but it is not good if the destination is a fixed telephone fax machine, and is certainly not a help at the front desk...

    Sorry to be dense...

    Thanks in advance.

    Cheers, Andy

    Afternoon @alavarre,.

    I see that you are looking for a color laserjet, which offers the features of fax and I can help you more.

    The models you listed actually seem as RJ11 port on the back. (When you face the back of the printer it is along the right side).

    You can see in the User Guide;

    Please note: The M127 - although it has fax, it is not a color printer. However, the M277dw / M177fw are color units.

    Please let me know if any of these steps has resolved your problem, or if there is anything else I can do to help.

    I look forward to hear from you!

    Thank you

  • How to use the credit on my account rather than using my credit card?

    I have an iPad, I'm trying to make purchases on App Store, I would use credit, not my credit card, please can someone help. He is probably watching me, but I can't.

    What exactly happens when you try to buy something? The balance of your account should automatically be used for purchases, there is no definition change how items are charged - if you are an organizer of family in the sharing of the family, or trying to present, you cannot use your balance.

  • How to use my subscription creative cloud on more than one device?

    I have creative cloud on my laptop and I would like to be able to use it on my Galaxy tab 3 also allows me to be more mobile, is it possible?

    N °

    The creative cloud software is for desktop/laptop computers. It requires Windows or Mac OS X operating systems. It will not work on mobile operating systems like iOS (iPad, iPhone) or Android (Samsung Galaxy and others).

    Adobe apps for Android are available on Google's App Store

    https://play.Google.com/store/apps/Developer?ID=Adobe+Systems&hl=en

  • How to increase the time-out value for more than 15 seconds?

    Find a web page expires at 15 seconds. I want to set the timeout for a longer period of time. I don't find a place to do this in the Options. When I go to full pages, I want to continue to try more rather than keep hitting the Try Again button.

    The parameter for which is not in Firefox, it must be changed in Windows.

    http://drewthaler.blogspot.com/2005/09/changing-DNS-query-timeout-in-Windows.html

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\DNSQueryTimeouts
    Multiple string: '0 1 2 2 4 8'-> "4 8 8 16 32 0".

Maybe you are looking for

  • iTunes does not synchronize with the iPhone SE

    My new iPhone IS will not sync with my iTunes library.  Whenever I connect it to my PC, I get the error message shown above.  The iPhone and iTunes are running with the latest version of the software, as shown in the image below. I don't know what co

  • Toshiba 32BV702B - supports 1:1 pixel mapping

    It does support this feature? If so, how. I'm sure he does, I studied the topic at some length before you buy it, but it seems to be a pretty elusive feature.Some say that when running on a pc, there must be some resolution with a certain refresh rat

  • PROTECTED Z930-108 - error of fingerprints after restore complete

    I had to use recovery SSD (full restore) option. When I started the Setup program the labtop, fingerprints can be registered, as there is a message coming:Operation failed. The same footprint already exists.However, in the list of fingerprints, there

  • EliteBook 8560w: 8560w bios settings

    What are the best settings of the bios, do I have to activate UEFI, I have a clean install of win 10 on a 128 GB SSD drive, it starts up very quickly, but thought I would check. Thank you

  • Lenovo Vibe turned Z90a40 Emoji

    Hey, need help please...I found in the language and entry of parameter on physical alt key to display the emoji palette... I turn it on, but nothing changes in the keyboard... When the alt key to display the emoji palette?