#include "loadXML.as"

Hi there, does any body knows why do I have to use the #include command more than once, or every time I need to upload an external file?

I use other external scripts without the need to use “#include” every time I use their functions?

If I use “#include” more than once calling the same file over and over, does it load it everytime or what?

Hope I ask the right questions. Thanks in advance.

#include is only run at compile-time. Basically, contents of the included files are included in when you export your FLA as an SWF. Modifying the contents of the external file following that would not modify the SWF unless it’s re-exported :slight_smile:

Ahmed, thanks for your time, thank you very much…