how to compare 3 variables

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default how to compare 3 variables

    Thanx in advance for any help. I built my wife a slot machine game, she loves
    slots. Off stage I have a mc named evaluation that plays after the 3rd wheel
    stops. I am having trouble figuring out the code to make it compare all 3
    wheels. for instance, if _root.wheel1stopped = wild, and
    _root.wheel2stopped=wild, and _root.wheel3stopped = wild, I want the main movie
    to go to scene 2, which is the bonus game. Any help will be appreciated. Mike

    mbockwich Guest

  2. Similar Questions and Discussions

    1. Compare 2 PDF
      Hi, is there any way to automate the comparison of two PDFs from outside Acrobat? e.g. I mark 2 PDFs, right-click offers me COMPARE and after...
    2. Compare string with XML
      I have an Array retrived from XML via xPath. I then compare one bucket with a string and dont get the result i want. It seems that the XML string...
    3. compare
      How can I stop a function in PHP? When comparing data I want to stop the function on a hit. Function compare($data) { For...
    4. Why can't FMP-IF compare to it's own internal variables?
      Since I have apparently found a bug in CDML access where as if you do a search and should be retrieving 0 records found, FMP server tells you you've...
    5. compare variables that contain text
      Hi, I was wondering how do you compare variables that contain text strings in ASP. When I use the following If.. Then statement: If...
  3. #2

    Default Re: how to compare 3 variables

    try:

    if (_root.wheel1stopped == wild && _root.wheel2stopped==wild &&
    _root.wheel3stopped == wild){
    //do whatever
    }

    hth
    }`¬P

    --
    ---------------------------------------
    [url]http://www.phageinteractive.com[/url]
    PhageInteractive Ltd.
    remove mm_ to mail
    ---------------------------------------
    'I wish we lived in a world where it was possible to be religious and think
    at the same time.' - Jonh Graves



    Peter Blumenthal Guest

  4. #3

    Default Re: how to compare 3 variables

    Thank you so much for your quick reply. While I consider my self an intermediate flash user, sometimes you can stare at the screen for hours and not see even the simple things.Will try it...mike
    mbockwich Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139