Hi, guys.
PHP Code:
var fancyWord:String = new String("anthropomorphization");
function 
traceWIHOUTargument()//does not accept arguments
{
    
trace(fancyWord);
}

function 
traceWITHargument(argument)//accepts arguments
{
    
trace(argument);
}

//CASE 1:
button.onRelease = function()
{
    
traceWIHOUTargument;//the LONGER way to call a function that DOES NOT accept arguments...
}//declare a function that calls another function

//CASE 2:
button.onRelease traceWIHOUTargument;//the SHORTER way to call a function that DOES NOT accept arguments...

//CASE 3:
button.onRelease = function()
{
    
traceWITHargument(fancyWord);//the LONGER way to call a function that ACCEPTS arguments...
}//declare a function that calls another function

///CASE 4:
//How about the SHORTER way to call a function that ACCEPTS arguments?
//how do you pass an argument in that case? 
Thanks