Click to See Complete Forum and Search --> : output window
Ultra Pulse
09-17-2005, 04:47 PM
Does Koolmoves have an output window like Flash does? From what I know, no, but I never actually used one before. Also am I right or wrong;
the "trace" comands give text to the output window.
Bob Hartzell
09-17-2005, 06:27 PM
Wilbert did this some time ago --
Place this on the first frame of your movie along with a dynamic textfield called "debug". Make sure the textfield is set to multi-line.
_global.trace = function(stuff){
_root.debug += stuff + "\n";
};
Then if you wanted to see the value of a variable called "myVar", do this:
trace("myVar = " + myVar);
If you export as flash 6 or higher, this will need to be modified because the object name is not the name of the variable.
Ultra Pulse
09-17-2005, 06:29 PM
I see, thanks, I'll try it out.
marinebro0306
09-17-2005, 08:28 PM
So if you do that, when you want to trace something, whats the Actionscript?
blanius
09-17-2005, 10:57 PM
It's not a true trace you are just sending stuff to a text box on the stage that you will later remove.... THis is sort of what I do.
flashkit.com
Copyright WebMediaBrands Inc., All Rights Reserved.