targeted frames in flash
Posted January 8th, 2009 byCategories: straightguysca.com
Just been tru flash player 9 and the targeted frames do not work
onRelease = function() {
getURL("home.html",target="mainFrame");
It just pops up another window.
Is there some new code for it?
Thanks!
Mao Lee
import flash.net.navigateToURL;
import flash.net.URLRequest;
var myRequest:URLRequest = new URLRequest("http://www.saydesign.com");
navigateToURL(myRequest, "_top");
onRelease = function () {
getURL("home.html", "mainFrame");
};
scotty(-:
"_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.
Just been tru flash player 9 and the targeted frames do not work
onRelease = function() {
getURL("home.html",target="mainFrame");
It just pops up another window.
Is there some new code for it?
Thanks!
Mao Lee
im having the same exact problem!
Just been tru flash player 9 and the targeted frames do not work
onRelease = function() {
getURL("home.html",target="mainFrame");
It just pops up another window.
Is there some new code for it?
Thanks!
Mao Lee
I don't see a closing curly bracket } in the code you posted.
#If you have any other info about this subject , Please add it free.# |