Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FSCommand with Netscape Problem !!!

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0

Hello world :)

I've a html page with a frameset in 2 rows
In one frame i've a Flash movie.
This movie uses a FSCommand to send parameters to JavaScript ...

In the FSCommand in JavaScript i use the next sentence:
parent.myBottonFrame.location = "anotherPage.html";

This sentence works well with Explorer but don't work with Netscape, and don't send any error message ... this only don't do anything ...

I can communicate with the frames in other ways ...

i.e. i can load the JavaScript variables with:
parent.myBottonFrame.myJSVariable

... and i can execute the JScript functions in the other frame:
parent.myBottonFrame.myJSFunction(myParam1, myParam2);

but in any case i want to change the location of a page (even i use it calling a external function of another frame) this don't work.

Really thanks ;)
asharak
 
it depends what your doFSCommand() looks like - If you used the way Flash publishes, [with the VBScript document.written] then it should work.

have you tested it to see the messages are getting through, maybe you have dropped the name or id?
 
All of this work propertly with Explorer, that's i can execute any javascript in the FSCommand and obtain the command and args variables that Flash post ...

The problem only happen with Netscape 4.5, and ONLY when i try to do a
parent.myFrame.location = "aPage.html"

This' that in Netscape i can do any JavaScript sentence except anyone like these.

Thanks :)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top