Link to home
Start Free TrialLog in
Avatar of TonyTone1
TonyTone1

asked on

_root.link

I am making some minor changes in a flash template it links to the other pages with this:

_root.pages["page" + _root.link].play();

how can i find and edit those pages?
ASKER CERTIFIED SOLUTION
Avatar of FLAASHER
FLAASHER
Flag of Saudi Arabia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
usaualy "_root.link" will retun a number

so ... ur link will be like this


_root.pages.page1.play();
_root.pages.page2.play();
_root.pages.page3.play();



FLAASHER