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

Requisition to clarify my Query

New Here ,
Feb 16, 2017 Feb 16, 2017

Can i make the action script 3 code to execute line by line in adobe CS5 ?

It's means asynchronous function to synchronous function.

Regards

Satya Mahesh.

TOPICS
ActionScript
282
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

Community Expert , Feb 20, 2017 Feb 20, 2017

you can use the transform.colorTransform property of movieclip:

var ct:ColorTransform = mc.transform.colorTransform;

ct.color= 0xff0000;

mc.transform.colorTransform=ct

Translate
Community Expert ,
Feb 16, 2017 Feb 16, 2017

some as3 is synchronous, but some is not.

and as3 for air has more synchronous functions than as3 for non-air applications.

[moved from Adobe Creative Cloud to ActionScript 3]

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
New Here ,
Feb 19, 2017 Feb 19, 2017

Thanks for your reply.

I have one more doubt in action script.

I created a two different movie clips and i want to blink the movie clips with same colour at same time. Is it possible ?

If yes then how ?

Regards

Satya Mahesh.

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
Community Expert ,
Feb 20, 2017 Feb 20, 2017
LATEST

you can use the transform.colorTransform property of movieclip:

var ct:ColorTransform = mc.transform.colorTransform;

ct.color= 0xff0000;

mc.transform.colorTransform=ct

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