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

  1. #1

    Default evaluate string

    Hi
    I hve a list mylist=[ ]
    I am inserting the values dynamically in the string format in the list and the
    list becomes
    mylist=[["model("JUPITER")", "vector( 24.0000, 1.10000e3, -17.6000 )",
    "vector( 90.0000, 0.0000, 0.0000 )"]]
    or
    mylist=["[model("JUPITER"), vector( 24.0000, 1.10000e3, -17.6000 ), vector(
    90.0000, 0.0000, 0.0000 )]]

    now i want to use the elements of this list, how do i convert the string to an
    expression so that i can use it further

    Yogesh



    yogeshhungama Guest

  2. Similar Questions and Discussions

    1. Can someone evaluate my fdf file?
      I apologize if this is not the correct group for this question. I am trying to create a fdf based on data in a sql db and then display a populated...
    2. Avoiding Evaluate
      I'm starting with a formula, which is a string, in a variable. For example, calcFormula = (a + b) / c. I replace parts of the string with numeric...
    3. Cookie & evaluate
      Hi All, Heres my problem... This snippet of code: <cfif isDefined('#evaluate('COOKIE.poll' &amp; FORM.pollID)#')> is causing this error: Variable...
    4. Evaluate variables in midst of a string!
      I need help evaluating variables in the middle of a string. I am querying a table and one of the rows outputs the following code: Hello #username#!...
    5. Function to evaluate whether a string is all UPPER
      I'm trying to clean up strings in a web form before I plug the fields into a database. Lots of folks like to leave caps lock key on and yell their...
  3. #2

    Default Re: evaluate string

    Don't use strings. The best solution is to use arrays.
    For example :

    messy = [2005, "hello", 0, vector(0,0,1), model("puppy"), vector(90.0,0.0,0.0)]

    You may access each cell using messy[1] , messy[2] , ...


    necromanthus 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