Advertisement
sanych_dv

Untitled

Jul 2nd, 2015
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package
  2. {
  3.    
  4.     /**
  5.      * ...
  6.      * @author Denis Maslov
  7.      */
  8.     public class Url
  9.     {
  10.        
  11.         public function Url()
  12.         {
  13.             if (string.indexOf('photo') != -1)
  14.             {
  15.                
  16.                 var str:String = "sdsdsdsdsd";
  17.                
  18.                 var txt:Array;
  19.                 var exp:RegExp = new RegExp('photo([-, 0-9, _]*)');
  20.                 txt = string.match(exp);
  21.                
  22.                 Main.VK.api('photos.getById', {photos: txt[1], extended: 0}, processingUrl(str), vkError);
  23.                
  24.             }
  25.             else
  26.             {
  27.                 trace("Error");
  28.             }
  29.        
  30.         }
  31.        
  32.         public static function processingUrl(string:String):Function
  33.         {
  34.             return function(e:Object):String
  35.             {
  36.                 trace(e[0]['src_big']);
  37.             }
  38.        
  39.         }
  40.        
  41.         private static function vkError(e:String):void
  42.         {
  43.             trace(e);
  44.         }
  45.    
  46.     }
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement