View Single Post
Codemonkey's Avatar Codemonkey Codemonkey is offline Super Moderator 5 Blog Entries 2008-04-22 #211 Old  
Hey twitch, IController doesn't have those methods, so the flash compiler doesn't recognize them. Either add the methods to the interface or cast IController as AbstractController.

ActionScript Code:
  1. AbstractController(controller).view = this;
But I wouldn't do this, since you already have an interface, it wouldn't make sense to not add these methods to it...
Reply With Quote