Advertisement
sanych_dv

Untitled

Dec 26th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package
  2. {
  3.  
  4.    
  5.     public class Order
  6.     {
  7.        
  8.         static public var _orderData:Object = {};
  9.         static private var _count:int = 0;
  10.        
  11.         public function Order()
  12.         {
  13.        
  14.         }
  15.        
  16.         static public function setCount():void
  17.         {
  18.            
  19.             _count = 0;
  20.            
  21.             for (var str:String in _orderData)
  22.             {
  23.                 _count += _orderData[str].count;
  24.                
  25.             }
  26.            
  27.             ScreenPics.setInfo(_count);
  28.             ScreenOrder.setInfo(_count);
  29.         }
  30.        
  31.         static private function countFormat(num:int):int
  32.         {
  33.            
  34.             return Math.max(0, num);
  35.         }
  36.        
  37.         static public function get __count():int
  38.         {
  39.             return _count;
  40.         }
  41.    
  42.     }
  43.  
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement