vote up 0 vote down star

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

flag

1  
Tell us more about what certain things you're trying to automate. – Gabriel Florit May 21 at 0:32

1 Answer

vote up 0 vote down check

I figured it out. The locations can be stored in the model, but size (view) specific position variables will just be set by the view, but as part of the model. The webbrowser will be in the view since I guess some implementations could be clientless so model independant.

link|flag

Your Answer

Get an OpenID
or

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