Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com.solutionsbywaters.codebehind
  2. {
  3.     import spark.components.Button;
  4.     import spark.components.VGroup;
  5.    
  6.     public class CustomVGroup extends VGroup
  7.     {
  8.         public function CustomVGroup()
  9.         {
  10.             super();
  11.         }
  12.        
  13.         protected function changeLabel(button:Button){
  14.             button.label = "Clicked";
  15.         }
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement