Some of you may be interested to develop with many subfolders
But, It works only on corona simulator !
Too bad …
I’m a Actionscript 3 developer, and i’m sad because i can’t work with folders and packages like a as3 project !
So how can you do that ?
I found an solution … not so sexy but it works on device !
My idea is simple, write a script to copy all files of your subfolders, and paste these files in a simple folder !
A kind of flattened folder !
we can do that really simply with a applescript on mac osx !
i share my script here :
http://www.prognplay.com/files/corona_lua/luaRelease.scpt.zip
you can found an example here
http://www.prognplay.com/files/corona_lua/coronaMakeRelease.zip
In your lua developement, you have to specify manually where are your scripts.
Each subfolder has to be specify in a file called “path.lua”.
This file have to do in your main directory, near your file “main.lua”.
In this “path.lua”, you can specificy all of your subfolder in a specific variable.
For example, my game’s scripts (“mygame.lua”) are in a folder called “game_logic”
in the “path.lua” I can specify :
gameLogic = “game_logic/”
And now, i can call a lua file in this way :
require(gameLogic…“mygame.lua”)
In this way, it works on simulator corona.
It goes copy everything in the same folder, you must write another file “path.lua”, called this time : “path_Release.lua”.
In this file, you have to specify the SAME subfolders that in the file “path.lua”.
Except this time, all of variables have to be empty ( “” )
So, we have now :
gameLogic = “”
In this way, the device can searching the lua file in the main folder !
End now, executes the script !!
Now, to build on devices, simply, you can execute the script “luaRelease”
Choose your project main folder.
It goes to copy all of your files to a new folder with a suffix “_release”
This is this folder that you can build with corona, to build your application’s device.
The “path.lua” and “path_release.lua” are automatically renamed in “path_developper.lua” and “path.lua”
You can see that the “path.lua” is now the good for the device !
Now you can build on device, and it works !!
You can develop in many subfolders but build with only one main folder !!!
You can modify the script if you want others options !
It is not a perfect way i know, but it’s more pleasant to develop like this !
If you have any ideas or any suggestions …
see you soon 
still sorry for my english 
you can found my script and an example package here :
http://www.prognplay.com/files/corona_lua/coronaMakeRelease.zip
[import]uid: 9415 topic_id: 4642 reply_id: 304642[/import]