Unfortunately I have more questions for you than I have answers for you.
If your application uses DRI (Declaritive Referential Integrity), you have some challenges to resolve before you start the conversion. The default MyISAM storage engine of MySQL does not enforce DRI (syntax is supported, it just isn't enforced). Unless you install Innodb and pay the associate royalty charges that Oracle charges for its use in production, you can't rely on DRI.
If you only used datatypes that can be converted from SQL Server to MySQL, then moving the table schema and data should be trivial.
SQL Server Management Studio includes the
Export Data Wizard which ought to move a simple table with about a dozen mouse clicks.
If the views don't use any functions or expressions, you can probably take them verbatim with a simple edit for the table names. If you used any expressions in your views, you'll need to re-write them using MySQL syntax.
The stored procedures you'll have to rewrite from scratch. The functionality of the two products is different, and the syntax is quite different. These will need to be rewritten from scratch. There are tools that claim to do this automaticaly, but I have had very poor luck using them.
I think that you'd be well advised to get a consultant to help you with this conversion. Especially if they teach you or at least tell you what you need to do (and why you need to do it), you'll be far better off than if you try to do this conversion on your own.
-PatP