madcat
04-12-2002, 06:00 PM
--When I create this code::
--------->
settings = ["on", "off"];
options = settings.concat(["brightness", ["high", "medium", "low"]]);
trace(options);
--------->
The ouput window shows: on, off, brightness, high, medium, low
--It is suppose to output ["on", "off", "brightness", ["high", "medium", "low"]]
NOT: ["on", "off", "brightness", "high", "medium", "low"]
--Is that what's happening, but the output window is just unable to display it like that? Hopefully you see what I mean.
Thanks
--------->
settings = ["on", "off"];
options = settings.concat(["brightness", ["high", "medium", "low"]]);
trace(options);
--------->
The ouput window shows: on, off, brightness, high, medium, low
--It is suppose to output ["on", "off", "brightness", ["high", "medium", "low"]]
NOT: ["on", "off", "brightness", "high", "medium", "low"]
--Is that what's happening, but the output window is just unable to display it like that? Hopefully you see what I mean.
Thanks