mc

TAB completion and mc problems

DISTRIB_ID=Ubuntu DISTRIB_RELEASE=8.10 DISTRIB_CODENAME=intrepid DISTRIB_DESCRIPTION="Ubuntu 8.10" This is the server version. When I ssh into it, I encounter the following problems: Problem 1 tab completion behaves weird to the point of being unusable: > cd ~/<press TAB> -sh: <( compgen -d -- '/home/dmitriid/' ): No such file or d...

tinting a MC with tweener

Hi I would like to tint a movieclip with the tweener class. This is how I tint the mc without the tween: var c:Color=new Color(); c.setTint(0xff0000, 0.8); clouds.transform.colorTransform=c; it works but I would like to give it a smooth transition that's why I would use tweener. Anyone have an idea? ...