Hi, I'm working on an alfresco web script. So far, to reference my css and javascript files I placed them in my alfresco tomcat folder C:\Alfresco\alfresco\tomcat\webapps\alfresco. Then, I referenced them with a filepath like: <script src="../../alloy-1.0.1/build/aui/aui.js" type="text/javascript"></script>. I would like to change this so that the javascript and css files are in the same directory as my webscript and the code references them from there, so that I can do something like: <script src="lib/alloy-1.0.1/build/aui/aui.js" type="text/javascript"></script>.
Thanks for any help.