I'm trying to use makeDir to create three directories inside another directory that the user chooses, but the name of this new directories came from a list of strings:
_renderPath = getSavePath
_dirNames = ["THUMBNAIL", "NORMALS", "WIREFRAMES"]
for i in _dirNames do(
makeDir (_renderPath + "\\" + i)
)
But the scripting listener always says "Unable to convert: "THUMBNAIL" to type: Float".

The correct way to make a list is: