Ask a Question related to Macromedia Director 3D, Design and Development.
-
yogeshhungama #1
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
-
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... -
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... -
Cookie & evaluate
Hi All, Heres my problem... This snippet of code: <cfif isDefined('#evaluate('COOKIE.poll' & FORM.pollID)#')> is causing this error: Variable... -
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#!... -
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... -
necromanthus #2
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



Reply With Quote

