hey
say i create a button in flash…or a menu. and in my site i have frames. so if one frame has the menu and other side has content, how do i get the content loaded up into the content page when people click a button link? i duno maybe its something like geturl but i want it to load in the content page and the menu to stay and load only once!
Name the frame for your content. For the example I will use the name “content” (how convenient).
on (release) {
getURL("URL", "content");
}
It will load your URL into the target content.
Hopefully it works, for me it’s only theory.