6/29/2011 2:32:40 PM
Title:
code hint in flash cs5
I have a problem in writing action script as iam a new user of action script 3.0 in flash cs5
as when am writing action like box_mc. its supposed to appear a list that helps me in writing
action script but it is not working
i need to help me with this problem
thanks,
6/30/2011 7:37:00 AM
code hint only appears when you have declared the type of the object. The compiler should know what type of object is so that it can show you the related code hints. For e.g in your case you should first declare it
var box_mc:MovieClip;
Now compiler knows that object is of type MovieClip when ever you will type the box_mc after this the code hints will appear automatically. Ctrl + Space is used to show hints manually.