jpn5
12-26-2008, 02:35 PM
Hi guys I'm trying to create a maxscript code that will allow me to animate the colour of a light...
I have a whole bunch of questions with being new to Maxscripting but before i can even begin testing my script i need to assign rgb color values to the items in my listbox (so that when a color name is selected- it will assign a rgb value to the light).
so I have
listBox presetLst ""
items:#
(
"Warm White",
"Neutral White",
"Cool Blue",
"Pale Blue"
)
... and then elsewhere in my script i have the following:
on btnAply pressed do
(
if(selection.count > 0)then
(
for obj in selection do
animate on
(
for i = 0 to 100 by 50 do
(
at time i $.color = presetLst.selection
)
)
)
)
else
(
messageBox "you must have at least one object selected!"
)
So when i evaluate the script it tells me:
"- Unable to convert: 1 to type: Color"
Just wondered if anyone can tell me where abouts and how i would difine the values of the items in my listbox?
i.e
"Warm White" is 255 255 228
"Neutral White" is 255 255 255
"Cool blue" is 169 205 249
"Pale Blue" is 208 226 249
Thanks very much.
Jpn5
I have a whole bunch of questions with being new to Maxscripting but before i can even begin testing my script i need to assign rgb color values to the items in my listbox (so that when a color name is selected- it will assign a rgb value to the light).
so I have
listBox presetLst ""
items:#
(
"Warm White",
"Neutral White",
"Cool Blue",
"Pale Blue"
)
... and then elsewhere in my script i have the following:
on btnAply pressed do
(
if(selection.count > 0)then
(
for obj in selection do
animate on
(
for i = 0 to 100 by 50 do
(
at time i $.color = presetLst.selection
)
)
)
)
else
(
messageBox "you must have at least one object selected!"
)
So when i evaluate the script it tells me:
"- Unable to convert: 1 to type: Color"
Just wondered if anyone can tell me where abouts and how i would difine the values of the items in my listbox?
i.e
"Warm White" is 255 255 228
"Neutral White" is 255 255 255
"Cool blue" is 169 205 249
"Pale Blue" is 208 226 249
Thanks very much.
Jpn5
