Skip to main content
satyamaheshb90976265
Participating Frequently
February 16, 2017
Answered

Requisition to clarify my Query

  • February 16, 2017
  • 1 reply
  • 328 views

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.

This topic has been closed for replies.
Correct answer kglad

you can use the transform.colorTransform property of movieclip:

var ct:ColorTransform = mc.transform.colorTransform;

ct.color= 0xff0000;

mc.transform.colorTransform=ct

1 reply

kglad
Community Expert
Community Expert
February 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]

satyamaheshb90976265
Participating Frequently
February 20, 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.

kglad
Community Expert
kgladCommunity ExpertCorrect answer
Community Expert
February 20, 2017

you can use the transform.colorTransform property of movieclip:

var ct:ColorTransform = mc.transform.colorTransform;

ct.color= 0xff0000;

mc.transform.colorTransform=ct