Yep,

Est il possible de rendre un movie clip d'un conteneur resizable ? J'ai rien trouvé sur le net qui aille dans ce sens !

J'ai
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
_root.bigPhoto.createEmptyMovieClip("logo",14).loadMovie(biglogo);
				_root.bigPhoto.biglogo._width = 50;
				_root.bigPhoto.biglogo._height = 50;
				_root.bigPhoto.biglogo.onPress = function(){
					this.startDrag();
				}
				_root.bigPhoto.biglogo.onRelease = _root.bigPhoto.biglogo.onReleaseOutside = function() {
			 		this.stopDrag();
				}
Mais je ne vois pas du tout comment rendre transformable ou plutot resizeable.... En gros pouvoir modifier sa taille d'un simple click !!!

MERCI BCP !!!