Hi All,
So here is my situation. I’m implementing swfaddress in my project, which starts with a main swf with various menus. When a menu item is clicked, it signals a url change, and the url change loads a corresponding external swf. All works swimmingly here. But… what if I wanted to have another menu from within the loaded external swf, and have that have its own loaded external swfs, url change etc, as well?
For example, on my home page, there is a menu item called “news”. Once “news” is clicked, the url changes and loads a “news.swf” into a holder on the main swf. Now, in the “news.swf” there is yet another menu, this one with two buttons: one button says “Article 1” and the other “Article 2” and each would signal a URL change and load “article1.swf” and “article2.swf” respectively when clicked. Is there a way to get the menus on the external swf to communicate with the swfaddress that is happening from within the main swf so that every swf has it’s own url address and different events triggered by that change?
so the url for article 1 would look something like
http://www.mywebsite.com/#/news/article1/
and not just
http://www.mywebsite.com/#/news/
Thanks :o)