Composer and Folder references

Thanks Rob

Now I understood the whole thing.

The dot separation is because of the composer/Storyboard file require api that has the .lua extension embedded i the codestructure like Classes/Libs/Cars.lua would be:

[lua]

local cars = require (“Classes.Libs.Cars”)

[/lua]

and for like music files in folders I would do like:

Music/Tracks/robTheMiracleMan.mp3 

[lua]

local robTrack = “Music/Tracks/robTheMiracleMan.mp3”

[/lua]

ok, just for the record Rob……In this case, I was one of the “90%” cases you described earlier LOL

Thanks man