About Libraries / Files of App Properties - Forum

Forum Navigation
You need to log in to create posts and topics.

About Libraries / Files of App Properties

Please tell me about the usage of Libraries / Files of App Properties and how to specify the files added to VisualNEOWeb.

Image files, music files, text files and so on.

 

It works this way:

  1. If you add .css or .js files they will be automatically added to your code with the corresponding <style> or <script> tags, so you can use them directly in your VisualNEO Web code as they are already part of your project. When compiled, they will be copied to the css and js folders.
  2. Media files will be copied to the media folder.
  3. If you add any other kind of file it will be added to your root folder (the folder where the project is compiled).

My advice is to mimic that folder tree on your source code project so running without compiling would be as similar as possible as the final compiled project (although this is not necessary most of the times).

Whenever possible use relative paths to your files instead of absolute paths.

Hope it helps.