Var to another function

Alright, real quick and basic question. I have a var in one function and want to send that var to another function. Looked in flash help but didn’t get any smarter. This is what I got so far:


        private var currentPos:int;
        
        public function Objects()
        {    
            trace(currentPos);
        }
        
        public function set easeAmount(e:int):void {
            currentPos = 122;
        }
       
        public function get easeAmount():int {
            return currentPos;
        }

Thanks for any help I can get