I'm making a program which will contain a webbrowser control and I'm trying to use the MVC approach just for learning purposes even though this isn't a very large application.
The goal of the program is to do automate certain things on the webbrowser, doing this with x,y locations. So for this I'm keeping the size of the webbrowser standard through all implementations. So I'm thinking it's something I shouldn't store in the View since I also have to store all the coordinates. But then again, the Model should only contain data so I don't think I should instantiate the webbrowser in there.
What should I do about this?
Also, all the location coordinates for this, where should I store them? since they go with the browser's size as a group.
To answer to the comment question: I'm making a bot for a flash game
