PDA

View Full Version : Where do I put functions?


piratefish
10-21-2004, 06:12 AM
I have this on my main timeline under my actions layer. I put it the function

function=ownership(blah:blah){
do this do that
}

you get the point, but I also have a stop() on that same frame. When I go to play the movie, that frame just wizzes by and it should be stopping. It never happened until I threw the function into there, where should I put my function to be used?

Billy T
10-21-2004, 02:38 PM
function ownership(blah:blah){

Gibberish
10-21-2004, 05:43 PM
you can also try:


ownership = function(blah:blah){
do this do that
}

then when yo want to call it just put ownership(blah:blah);

piratefish
10-22-2004, 05:12 PM
oh! thanks guys.