have a refresh method for iframe like this and call the method
whenever you need to refresh iframe:
<mx:Script><![CDATA[

private function refreshIFrame():void
                {

                        my_iframe.source=url6//(or whatever url to be refreshed)
                }
]]>
</mx:Script>

or you can edit your IFrame component to have a refresh method

 public function refresh(): void
        {

                ExternalInterface.call("loadIFrame", __source);//where
__source is a container for source url in your IFrame component


        }

and in your application just call my_iframe.refresh() whenever you
needed it

-sathesh

On Dec 7, 12:15 pm, Ravi <ravindra.cho...@gmail.com> wrote:
> hello Varun ,
> thanks for reply,
> I have used Iframe Component in flex like this:
>
> <views:IFrame id="my_iframe" width="100%" height="100%" visible="true"
> source="{url6}"/>

--

You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to flex_in...@googlegroups.com.
To unsubscribe from this group, send email to 
flex_india+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en.


Reply via email to