Guest User

Untitled

a guest
Jul 15th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import fl.controls.ColorPicker;
  2. import fl.events.ColorPickerEvent;
  3.  
  4. var ChoixCouleur:ColorPicker = new ColorPicker();
  5. ChoixCouleur.addEventListener(ColorPickerEvent.CHANGE, changementCouleur);
  6. ChoixCouleur.move(30, 500);
  7. menu.addChild(ChoixCouleur);
  8.  
  9. private function changementCouleur(e:ColorPickerEvent):void {
  10. couleur="0x"+e.target.hexValue;
  11. }
Add Comment
Please, Sign In to add comment