vote up 0 vote down star

I am trying to make a transitionmanager and I wish to pass a method into a method, because I would like to make a bunch of different seperate transition methods which I fetch as a public static function from a Transitions class.

Example

in TransitionController class:

public function doTransition(mc:MovieClip, transition:Function = Transitions.Basic):void {
		transition(mc);
	}

in Transitions class:

public class Transitions
{

	public static function Basic(mc:MovieClip = null):void {
		// a whole lot of transitional stuff here
		trace("Transitions.Basic:" + mc);
	}

}

Does this make sense? I cant get around to get it to work

flag

77% accept rate
Can you post some errors as well? – dirkgently Mar 10 at 20:20
never mind it went wrong somewhere else :) it works – Kasper Mar 10 at 20:20
forgot to add colons Transition.Basic() – Kasper Mar 10 at 20:22
you should probably write an answer about what the solution was and set that as the accepted answer so that this question wouldn't show up in the unanswered questions list anymore. – hasseg Mar 10 at 21:31

1 Answer

vote up 0 vote down check

never mind it went wrong somewhere else :) it works forgot to add colons Transition.Basic()

link|flag
you may consider closing this ticket then ; ) – Theo.T Mar 11 at 16:13
yeah i was doing so, but had to wait 48hrs. – Kasper Mar 16 at 16:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.