im just curious how the ‘trace’ function works and how i use it in script to find something…im trying to navigate the folders im using…like some of the others here…lol…
the presentation im working on now has a loader.exe that all my external .swfs are loaded into…it goes kind of like…
loader.exe
-opening.swf
-home.swf
–folder
—folder
ive finally kind of gotten it to navigate with the heirarchy the way it is using /folder/folder/file.swf to get into each file…
but for the sake of convienience when i add this presentation to another its going to be another level down in the heirarchy, so is there a way to use ‘trace’ to make it easier so itll always find the files maybe?
The trace function is used to output something to the Flash Output window, generally used for debugging, it hasn’t got anything to do with tracing files …
trace() is for debugging purposes only… it returns the value of whatever you are tracing… example…
var i = 8;
trace(i);
when testing the movie in Flash, the output window will display ‘8’.
It comes in handy when you are trying to do things dynamically through ActionScript and you want to make sure it’s going through properly. And if it isn’t working properly, it helps you pinpoint what section of the code isn’t working.
Since you are using relative targeting, I don’t see how it would pose any problem if you add this presentation to another.