PDA

View Full Version : function question


pernjuke
08-19-2005, 03:31 AM
I am wondering whether there is any way to share functions throughout your movie without making a class. thx.

Cota
08-19-2005, 03:55 AM
You make the function global, by declaring the function like

_global.FunctionName = function ();

pernjuke
08-19-2005, 01:51 PM
yea, that helps a lot. thank you.