How do i get flash to work with frames?
Flash 5 has only _top,_parent,_self and _blank none of which enable me to open a page in the frame next to the flash url
you should be able to just type in the frame name. someone correct me if I am mistaken...but I believe if you were trying to target a frame named main then you would simply specify mainFrame instead of _blank , _top, etc.
Tghe other option, of course, is to simply rename your main frame as _main. You do this in the page where you define your frames; just simply add the name tag to the html:
Sorry for the second post, but I just checked one of my movies that uses frames and all you need to do is either put a variable name in the window bit (e.g.: my_target) or put the actual frame name in quotes (e.g.: "_my_main_frame".
I think the way I did it in my movie was to keep all the frame names in a text file, load this on entry to the movie and then just reference the variables in the 'url' and 'window' bit; this means if the layout of the site changes / frame names etc then you don't have to republish the movie; just change the text file.
As far as I know, all you need to do is, on the getURL thing, put the name of the page (e.g.: my_page) and then un-check the expression box, so that it appears in quotes in the actionscript, then put the target (e.g.: _main) and then un-check the expression box.
The script will look like this:
getURL( "my_page", "_main" );
If you try this and it doesn't work, or already have tried it then could you paste (or e-mail me) the html code that sets up your frames and the ActionScript code that you are using?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.