Is there any method to list out all variables used in a CS3 flash movie?
When you test the movie in Flash, select Debug>List Variables
In CS3, is it list all the variables?
`
There are some not showing ?
What are you making / Trying to see ?
Lachhh
Thanks!
I want to see all the variables that we are placed in a sprite/movieclip with some preassigned values.
[quote=TVM_XST;2350134]Thanks!
I want to see all the variables that we are placed in a sprite/movieclip with some preassigned values.[/quote]
Ok, I think the best would create a class with your movieClip, write your member with your preassigned values, and link the movieClip to the class. Then you shoul be able to see it in the debugger.
I think it’s because the new value your are assigning to the movieClip are not member of the movieClip class, so the debugger can’t see them, showing only those by default. So if you make your own class, you should be ok. If not, make a ToString() function in your new class which iterate through your needed variables, and trace them.
Ok Thank You !!