List in case statement

Ask a Question related to Macromedia Director Basics, Design and Development.

  1. #1

    Default List in case statement

    Is there a way to use a list in a case statement? Can I substitute myList
    =[1, 4, 6, 9, 11] in the case statement below?

    case(myVar) of
    1, 4, 6, 9, 11:
    put "hello"
    end case

    Thanks for your help.





    lingo smith Guest

  2. Similar Questions and Discussions

    1. sql select case statement
      Hi, Im trying to put together a sql select case statement for coldfusion - can anyone please check over my code and see if i am going along the...
    2. Case Statement
      HI All, I use Macromedia Director and often use case statements so that I don't have to have a separate script for each button. An Example in...
    3. Problems with CASE statement
      Helpful folks, I seem to be misunderstanding the use of the CASE statement as used within a WHERE clause. I had thought that one could do the...
    4. The Case of the Crashing Value List...
      Hey Folks, I ran across an interesting crash in FMP 6 in one of my client's files (crashes on FMP 6.0 on windows and gives me that pretty...
    5. CASE statement and CONTAINS
      Hello, Is it possible to add a 'contains' clause to the 'case' command? I know I can do this: case variableName OF "foo": doThis() end case
  3. #2

    Default Re: List in case statement

    Please don't ask the same question more than once - unless you wait several
    days without an answer. In your case, the question has been answered. See
    your original thread.

    - Robert


    Robert Tweed Guest

  4. #3

    Default Re: List in case statement

    The best way to get people to ignore your posts is to post your question 3
    times.


    --
    Craig Wollman
    Word of Mouth Productions



    "lingo smith" <owieurosieur@oxiuerl.com> wrote in message
    news:v%%fc.4710$G_.3542@nwrddc02.gnilink.net...
    > Is there a way to use a list in a case statement? Can I substitute myList
    > =[1, 4, 6, 9, 11] in the case statement below?
    >
    > case(myVar) of
    > 1, 4, 6, 9, 11:
    > put "hello"
    > end case
    >
    > Thanks for your help.
    >
    >
    >
    >
    >

    Word of Mouth Productions 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