[flexcoders] Triggering a .htrml page inside a html frame from Flex.

2007-12-05 Thread kalyancce
Hi Friends,

I am trying to work on a situation but not any close yet, and thought 
that I could find some help here.

I am trying to trigger a html page from my flex .swf, but open it 
inside a html frame. ie., from my app.swf, i click a button and must 
open page1.html inside a frame existing in page2.html

The following function can just trigger/open the page1.html:

private function openMainWindow(event:Event):void{
var str1:String="page1.html";
var jscommand:String = "window.open('"+str1+"');";
var url1:URLRequest = new URLRequest("javascript:" + jscommand + "void
(0);");   
navigateToURL(url1, "_self"); 

but how is that I can open this page1.html inside page2.html's frame 
(say 'frame1').

Thank you.

Regards,
K:)



Re: [flexcoders] Triggering a .htrml page inside a html frame from Flex.

2007-12-06 Thread ben

Give your iframe an id, then
create a JS command like so:

javascript:document.getElementById('iframeid').src = 'page1.html';

And trigger it as you did below.

Ben

kalyancce wrote:


Hi Friends,

I am trying to work on a situation but not any close yet, and thought
that I could find some help here.

I am trying to trigger a html page from my flex .swf, but open it
inside a html frame. ie., from my app.swf, i click a button and must
open page1.html inside a frame existing in page2.html

The following function can just trigger/open the page1.html:

private function openMainWindow(event:Event):void{
var str1:String="page1.html";
var jscommand:String = "window.open('"+str1+"');";
var url1:URLRequest = new URLRequest("javascript:" + jscommand + "void
(0);");
navigateToURL(url1, "_self");

but how is that I can open this page1.html inside page2.html's frame
(say 'frame1').

Thank you.

Regards,
K:)