;

PDA

Click to See Complete Forum and Search --> : Calling a frame in HTML from Flash movie


bandip
01-18-2001, 12:36 AM
I have emebedded a Flash file in a frame in an HTML file and on click of a button in the Flash file I want to display some text in another frame in the HTML file. How do I do this? Any help will be appreciated.

A speedy response will be hugely appreciated

Thanks
bandip

MathiasV
01-18-2001, 09:45 AM
If the text is part of another HTML file, you just have
to adress the correct window in your GetURL-command:
for example Get URL ("text.html", window="Right")
(if 'Right' is the name of the frame, where the text is
supposed to appear). Else you might want to replace a
text or part of an existing HTML file in the frame 'Right':
you`ll have to call a javascript in order to perform this.
It's done by
GetURL ("javascript:exchangeTxt()", window="Right")
if exchangeTxt() is a Javascript-Function located in the HTML file in frame 'Right'.

If this does not work, it's might due to a wrong target-tag
in your HTML files.