CASE statement and CONTAINS

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

  1. #1

    Default 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

    But I'm trying to do this:

    case variableName CONTAINS
    "foo":
    doThis()
    end case

    which does not work...

    Is there a way to make this work, without having to do an 'IF/THEN' command?
    Steve







    steve 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. List in case statement
      Is there a way to use a list in a case statement? Can I substitute myList = in the case statement below? case(myVar) of 1, 4, 6, 9, 11: put...
    3. 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...
    4. #23026 [Com]: Make Zend case-sensitive (classes, functions, remove case-insensitive)
      ID: 23026 Comment by: nvivo at mandic dot com dot br Reported By: mfischer@php.net Status: Open Bug Type: ...
    5. 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...
  3. #2

    Default Re: CASE statement and CONTAINS

    "steve" <sbecerra@adelphia.net> wrote in message
    news:bg9a9e$peh$1@forums.macromedia.com...
    >
    > Is it possible to add a 'contains' clause to the 'case' command? I know I
    > can do this:
    Not exactly
    > I'm trying to do this:
    >
    > case variableName CONTAINS
    > "foo":
    > doThis()
    > end case
    Lingo lets you reverse the clauses, like so:

    case true of
    variableName contains "foo":
    doThis()
    variableName contains "bar":
    doThat()
    end case

    - Robert


    Robert Tweed Guest

  4. #3

    Default Re: CASE statement and CONTAINS

    "Word of Mouth Productions" <lingoboy@wordofmo.com> wrote in message
    news:bg9flv$4ur$1@forums.macromedia.com...
    >
    > Shame on you Robert for not testing...
    Oops, sorry ;-)

    - Robert


    Robert Tweed 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