Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Need help on Flash CS3 - calling and returning variables?
I don't care if it's actionscript2 or 3 but here's what I have been trying to do and cannot find the answer ANYWHERE!
I have an htm page. On the htm page there is a link called "Go Somewhere" and the ref is: mypage.htm?id=page1 and another link "Go Somewhere Else" with an href of: mypage.htm?id=page2
The mypage.htm has a flash intro on it. It should play, then redirect the user to a page based on the id variable (page1.htm or page2.htm)
I have tried every tutorial on the web - none work for me.
Can someone help?
OK, that is how to read and redirect user. But it's not reading the id at all from within flash.
Tried the navigateToURL and it failed on export with an implicit coercion error.
1 Answer
- 1 decade agoFavorite Answer
mypage.htm?id=page2
make sure you are appending the ".htm"
navigateToURL(id+'.html', window);