Linking to a.htm int same folder

I have a Flash Home Page with buttons I would like to link to .HTM pages in the same folder. How would I do that?

use the getURL function. Your actions should look something like this

on (release) {
getURL(“page.htm”, “_self”);
}