home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / com / althea / client / shufflr / controller / MyZoneCommand.as < prev    next >
Encoding:
Text File  |  2010-06-23  |  902 b   |  29 lines

  1. package com.althea.client.shufflr.controller
  2. {
  3.    import com.althea.client.shufflr.*;
  4.    import com.althea.client.shufflr.model.*;
  5.    import org.puremvc.as3.multicore.interfaces.*;
  6.    import org.puremvc.as3.multicore.patterns.command.*;
  7.    import org.puremvc.as3.multicore.patterns.observer.*;
  8.    
  9.    public class MyZoneCommand extends SimpleCommand
  10.    {
  11.       public function MyZoneCommand()
  12.       {
  13.          super();
  14.       }
  15.       
  16.       override public function execute(param1:INotification) : void
  17.       {
  18.          var _loc2_:ShuffleFeedProxy = facade.retrieveProxy(ShuffleFeedProxy.NAME) as ShuffleFeedProxy;
  19.          var _loc3_:Object = new Object();
  20.          _loc3_.title = "Profile";
  21.          _loc3_.link = "users/profile";
  22.          _loc3_.dataType = "profileData";
  23.          _loc3_.name = "profile";
  24.          _loc2_.loadData(_loc3_,_loc3_.dataType);
  25.       }
  26.    }
  27. }
  28.  
  29.