Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

sum equation AS2

Guest
Feb 13, 2013 Feb 13, 2013

what is the code which mean " create a sum equation " between "dynamic1 text & dynamic2 text " and the give me results in " dynamic3 text" by clicking on " button" in an Action Script 2.0

TOPICS
ActionScript
656
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Feb 13, 2013 Feb 13, 2013

something like:

btnName.onRelease = function(){

     dynamic3.text = String(Number(dynamic1.text)+Number(dynamic2.text));

}

Translate
LEGEND ,
Feb 13, 2013 Feb 13, 2013

something like:

btnName.onRelease = function(){

     dynamic3.text = String(Number(dynamic1.text)+Number(dynamic2.text));

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Feb 13, 2013 Feb 13, 2013

thank you so much that was helpful for me ...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 13, 2013 Feb 13, 2013
LATEST

You're welcome

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines