Scripting Languages
--
Questions
--
Followers
Top Experts
Thank you.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
  gotoAndStop("sceneName","l
}
-V
If you didn't give them instance names, you can use this code instead (which would go in the button).
on(release) {
 gotoAndStop("sceneName","l
}
-V






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
on(release) {
 _root.gotoAndStop("sceneNa
}
or
myButton.onRelease = function() {
  _root.gotoAndStop("sceneNa
}
Dunno which one you're using.
-V

Get a FREE t-shirt when you ask your first question.
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
Can you post you *.fla?
-V
eringraphics.com/oceanp2.f






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
All the below will work...
myMovieClip.myButton.onRel
 {
  _root.gotoAndStop("sceneNa
}
or
myMovieClip.myButton.onRel
 {
  _root.gotoAndStop("labelNa
}
or
myMovieClip.myButton.onRel
 {
  _root.gotoAndStop("sceneNa
}
Regards,
John
Scripting Languages
--
Questions
--
Followers
Top Experts
A scripting language is a programming language that supports scripts, programs written for a special run-time environment that automate the execution of tasks that could alternatively be executed one-by-one by a human operator. Scripting languages are often interpreted (rather than compiled). Primitives are usually the elementary tasks or API calls, and the language allows them to be combined into more complex programs. Environments that can be automated through scripting include software applications, web pages within a web browser, the shells of operating systems (OS), embedded systems, as well as numerous games. A scripting language can be viewed as a domain-specific language for a particular environment; in the case of scripting an application, this is also known as an extension language.