Hi All,
Working in Adobe Edge Animate and have a "hopefully" quick question...
I have a button on my index.html page, that when clicked takes you to the music.html page.
This is what the code looks like for the click action and it works fine...
window.open("music.html", "_self");
then I have a button on my music.html page, that when clicked should take you back to the index.html page and start playing at a particular label.
This is what the code looks like for the click action... this is what is not working...
window.open("index.html", "_self");
sym.play("screen_section3");
It does take me back to the index.html page... but it starts at the beginning of the animation instead of at the label.
Any ideas?