setInterval in Class

I have a custom Class with a method that I want to call over an interval using setInterval. Its a public class I can call from the root timeline with obj.myMethod(); however, when I try to call it using setInterval (obj.myMethod, 200) nothing happens.

Does anyone know how to call methods within a custom class using intervals? Thanks a ton.