Quote Originally Posted by 'Vicker',index.php?page=Thread&postID=84987#post84 987
Junction.exe doesn't like spaces in folder names. I had to rename my folders to not contain spaces. If anyone knows a way to get around this I'd be interested in knowing, but it works fine as it is so I'm satisfied.
Welcome to the world of programming. 2 things that you can do
1) what they call camel. This is when you take out the spaces and cap the first letter of each word. ThisIsAnExampleOfCamel
- Good, you get rid of the spaces
- Bad, when you camel words that are only 1 letter. IAmAExample
2) Replace " " with "_". This_Is_An_Example_Of_This
- Good, when words that are only 1 letter .I_am_a_example. also you do not have to cap the first letter of the names
- Bad, when you can only have a certain amount out letters