views:

125

answers:

1

Hi all,

I have a swf file, which handels some xml data. After that process complets I am giving the data back to my rails server. My problem is, that any redirection in my rails app is handed ower to the swf file and the actual displayed page remains the same!

How can I perform a redirection in my webpage from a swf flash file.

Thanks Markus

+2  A: 

I believe it's done like this:

navigateToURL(new URLRequest("home.html"));
klausbyskov
That was it! thanks a lot! Markus
Markus