On Thu, Feb 3, 2011 at 07:47, roark <[email protected]> wrote: > Please could someone have a look and let me know if you see any > problems with it? >
You have a moving clickable target in your design, that's a GUI no-no. It's a simple fix, just move the target above the animation. I also changed the target into an input box, so you can see how easy it is to reach rapid-fire input with your design. As you're not calling Fx later you also don't need to return the object, I moved your call inside the function. If your function is not meant to be global it should have a var. I am not sure about the Fx object cleanup but unlinking the reference to it at the end (line with theSlide = null;), should be a hint to the garbage collector. http://jsfiddle.net/mhbuB/11/
