I am very new to flash - so I haven't done it myself before. If you know a way of making a flash menu control html content that is better, feel free to suggest a method. I just want a flash menu to navigate a site, so the simpler the better at this point :)
(the following is pasted in from
Macromedia Flash - ActionScript Dictionary : getURL)
Here is the syntax for getURL from AS 2.0:
getURL(url [, window [, "variables"]])
Parameters
url The URL from which to obtain the document.
window An optional parameter specifying the window or HTML frame that the document should load into. You can enter the name of a specific window or choose from the following reserved target names:
_self specifies the current frame in the current window.
_blank specifies a new window.
_parent specifies the parent of the current frame.
_top specifies the top-level frame in the current window.
variables A GET or POST method for sending variables. If there are no variables, omit this parameter. The GET method appends the variables to the end of the URL, and is used for small numbers of variables. The POST method sends the variables in a separate HTTP header and is used for sending long strings of variables.
The usage I saw was something along these lines:
getURL("http://www.google.com", "mainframe");
You would then put your flash into one frame on the top/side, and then have the main part of the site appear in the frame labeled mainframe. I didn't see that the new methods support passing anything other than _self, _blank, _parretnt, or _top. It doesn't look like you can reference your own frame anymore, which makes it seem to be that there is a cleaner way of doing this - I've just no idea what it would be.
getURL doesn't exist in AS3.0 - it is replaced by URLrequest and navigatetoURL. Here are the two links which seemed to tell me the most about those two functions.
flash.net.URLRequest (Flex? 2 Language Reference)
http://livedocs.adobe.com/flex/2/doc...=00001010.html
Thanks for your help.