Advertisement
Guest User

Простейший OSMF-плеер

a guest
Jan 18th, 2011
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package ru.denivip.stats
  2. {
  3.     import flash.display.Sprite;
  4.    
  5.     import org.osmf.media.PluginInfo;
  6.    
  7.     public class StatsPlugin extends Sprite
  8.     {
  9.         protected var _pluginInfo:StatsPluginInfo;
  10.        
  11.         public function StatsPlugin()
  12.         {
  13.             super();
  14.            
  15.             _pluginInfo = new StatsPluginInfo();
  16.         }
  17.        
  18.         public function get pluginInfo():PluginInfo
  19.         {
  20.             return _pluginInfo;
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement