//declare your function and function name:
traceFunction = function(parameterPassed){
//what do you want the function to do?
trace(parameterPassed);
//end your function
};
//Lets make it work
traceFunction("Hello Earth")
learning through interaction
//declare your function and function name:
traceFunction = function(parameterPassed){
//what do you want the function to do?
trace(parameterPassed);
//end your function
};
//Lets make it work
traceFunction("Hello Earth")
Posted in Flash Bits.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.